Qt, Qt5: fix crash if glyph is available but hidden with ShowMode

git-svn-id: trunk@57921 -
This commit is contained in:
ondrej 2018-05-13 12:28:28 +00:00
parent 04805d25f4
commit 1687a7b56a
4 changed files with 6 additions and 4 deletions

View File

@ -199,7 +199,7 @@ type
procedure LoadGlyphFromResourceName(Instance: THandle; const AName: String);
procedure LoadGlyphFromLazarusResource(const AName: String);
procedure LoadGlyphFromStock(idButton: Integer);
function CanShowGlyph: Boolean;
function CanShowGlyph(const AWithShowMode: Boolean = False): Boolean;
public
property Caption stored IsCaptionStored;
property DefaultCaption: Boolean read FDefaultCaption write FDefaultCaption default False;

View File

@ -90,9 +90,11 @@ begin
Images := nil;
end;
function TCustomBitBtn.CanShowGlyph: Boolean;
function TCustomBitBtn.CanShowGlyph(const AWithShowMode: Boolean): Boolean;
begin
Result := FButtonGlyph.CanShowGlyph;
if AWithShowMode then
Result := Result and FButtonGlyph.CanShow;
end;
function TCustomBitBtn.GetGlyph : TBitmap;

View File

@ -99,7 +99,7 @@ begin
TQtBitBtn(ABitBtn.Handle).GlyphLayout := Ord(ABitBtn.Layout);
AIcon := QIcon_create();
if ABitBtn.CanShowGlyph then
if ABitBtn.CanShowGlyph(True) then
begin
AGlyph := TBitmap.Create;
APixmap := QPixmap_create();

View File

@ -98,7 +98,7 @@ begin
TQtBitBtn(ABitBtn.Handle).GlyphLayout := Ord(ABitBtn.Layout);
AIcon := QIcon_create();
if ABitBtn.CanShowGlyph then
if ABitBtn.CanShowGlyph(True) then
begin
AGlyph := TBitmap.Create;
APixmap := QPixmap_create();