mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
Qt, Qt5: fix crash if glyph is available but hidden with ShowMode
git-svn-id: trunk@57921 -
This commit is contained in:
parent
04805d25f4
commit
1687a7b56a
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user