mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 00:38:10 +02:00
320 lines
8.1 KiB
PHP
320 lines
8.1 KiB
PHP
{%MainUnit ../buttons.pp}
|
|
|
|
{
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
|
|
type
|
|
{ TGlyphBitmap }
|
|
|
|
TGlyphBitmap = class(TBitmap)
|
|
private
|
|
FOwner: TButtonGlyph;
|
|
protected
|
|
procedure SetMasked(AValue: Boolean); override;
|
|
procedure SetTransparent(AValue: Boolean); override;
|
|
public
|
|
procedure Assign(ASource: TPersistent); override;
|
|
constructor Create(AOwner: TButtonGlyph); reintroduce;
|
|
end;
|
|
|
|
procedure TGlyphBitmap.Assign(ASource: TPersistent);
|
|
begin
|
|
inherited Assign(ASource);
|
|
if FOwner = nil then Exit;
|
|
if FOwner.FTransparentMode = gtmGlyph then Exit;
|
|
inherited SetTransparent(FOwner.FTransparentMode = gtmTransparent);
|
|
end;
|
|
|
|
constructor TGlyphBitmap.Create(AOwner: TButtonGlyph);
|
|
begin
|
|
FOwner := AOwner;
|
|
inherited Create;
|
|
inherited SetTransparent(True);
|
|
end;
|
|
|
|
procedure TGlyphBitmap.SetMasked(AValue: Boolean);
|
|
begin
|
|
if (FOwner = nil)
|
|
or (FOwner.FTransparentMode = gtmGlyph)
|
|
then inherited SetMasked(AValue)
|
|
else inherited SetMasked(FOwner.FTransparentMode = gtmTransparent);
|
|
end;
|
|
|
|
procedure TGlyphBitmap.SetTransparent(AValue: Boolean);
|
|
begin
|
|
if (FOwner = nil)
|
|
or (FOwner.FTransparentMode = gtmGlyph)
|
|
then inherited SetTransparent(AValue)
|
|
else inherited SetTransparent(FOwner.FTransparentMode = gtmTransparent);
|
|
end;
|
|
|
|
|
|
|
|
{------------------------------------------------------------------------------}
|
|
{ TButtonGlyph Constructor }
|
|
{------------------------------------------------------------------------------}
|
|
constructor TButtonGlyph.Create;
|
|
begin
|
|
FImagesCache := nil;
|
|
FIsDesigning := False;
|
|
FShowMode:= gsmApplication;
|
|
FOriginal := TGlyphBitmap.Create(Self);
|
|
FOriginal.OnChange := @GlyphChanged;
|
|
FNumGlyphs := Low(TNumGlyphs);
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
TButtonGlyph destructor
|
|
------------------------------------------------------------------------------}
|
|
destructor TButtonGlyph.Destroy;
|
|
begin
|
|
if FImagesCache <> nil then
|
|
begin
|
|
FImagesCache.UnregisterListener(Self);
|
|
FImagesCache := nil; // cache can free on unregister
|
|
end;
|
|
FOriginal.Free;
|
|
FOriginal := nil;
|
|
inherited Destroy;
|
|
end;
|
|
|
|
procedure TButtonGlyph.GetImageIndexAndEffect(State: TButtonState;
|
|
out AIndex: Integer; out AEffect: TGraphicsDrawEffect);
|
|
var
|
|
AStoredState: TButtonState;
|
|
begin
|
|
AStoredState := bsUp;
|
|
AEffect := gdeNormal;
|
|
case State of
|
|
bsDisabled:
|
|
begin
|
|
if NumGlyphs > 1 then
|
|
AStoredState := State
|
|
else
|
|
AEffect := gdeDisabled;
|
|
end;
|
|
bsDown:
|
|
begin
|
|
if NumGlyphs > 2 then
|
|
AStoredState := State
|
|
else
|
|
AEffect := gdeShadowed;
|
|
end;
|
|
bsExclusive:
|
|
if NumGlyphs > 3 then
|
|
AStoredState := State
|
|
else
|
|
AEffect := gdeNormal;
|
|
bsHot:
|
|
if NumGlyphs > 4 then
|
|
AStoredState := State
|
|
else
|
|
AEffect := gdeHighlighted;
|
|
end;
|
|
AIndex := FImageIndexes[AStoredState];
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
TButtonGlyph SetGlyph
|
|
------------------------------------------------------------------------------}
|
|
procedure TButtonGlyph.SetGlyph(Value : TBitmap);
|
|
var
|
|
GlyphCount : integer;
|
|
begin
|
|
if FOriginal = Value then
|
|
exit;
|
|
if FOriginal = nil then
|
|
FOriginal := TGlyphBitmap.Create(Self);
|
|
FOriginal.OnChange := nil;
|
|
FOriginal.Assign(Value);
|
|
FOriginal.OnChange := @GlyphChanged;
|
|
FNumGlyphs := 1;
|
|
if FOriginal.Height > 0 then
|
|
begin
|
|
if FOriginal.Width mod FOriginal.Height = 0 then
|
|
begin
|
|
GlyphCount := FOriginal.Width div FOriginal.Height;
|
|
if GlyphCount > High(TNumGlyphs) then
|
|
GlyphCount := Low(TNumGlyphs);
|
|
FNumGlyphs := TNumGlyphs(GlyphCount);
|
|
end;
|
|
end;
|
|
Refresh;
|
|
end;
|
|
|
|
procedure TButtonGlyph.SetShowMode(const AValue: TGlyphShowMode);
|
|
begin
|
|
if FShowMode = AValue then Exit;
|
|
FShowMode := AValue;
|
|
if not IsDesigning then
|
|
Refresh;
|
|
end;
|
|
|
|
function TButtonGlyph.GetHeight: Integer;
|
|
begin
|
|
if FImages <> nil then
|
|
Result := FImages.Height
|
|
else
|
|
Result := 0;
|
|
end;
|
|
|
|
function TButtonGlyph.GetWidth: Integer;
|
|
begin
|
|
if FImages <> nil then
|
|
Result := FImages.Width
|
|
else
|
|
Result := 0;
|
|
end;
|
|
|
|
procedure TButtonGlyph.GlyphChanged(Sender: TObject);
|
|
|
|
function CanShow: Boolean;
|
|
|
|
function SystemShowGlyphs: Boolean; inline;
|
|
begin
|
|
Result := ThemeServices.GetOption(toShowButtonImages) = 1;
|
|
{$ifdef Windows}
|
|
// force False on windows since gtk and qt can return True
|
|
Result := False;
|
|
{$endif}
|
|
end;
|
|
|
|
begin
|
|
if IsDesigning then
|
|
Exit(True);
|
|
case ShowMode of
|
|
gsmAlways:
|
|
Result := True;
|
|
gsmNever:
|
|
Result := False;
|
|
gsmApplication:
|
|
begin
|
|
case Application.ShowButtonGlyphs of
|
|
sbgAlways: Result := True;
|
|
sbgNever: Result := False;
|
|
sbgSystem: Result := SystemShowGlyphs;
|
|
end;
|
|
end;
|
|
gsmSystem:
|
|
Result := SystemShowGlyphs;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
if FImagesCache <> nil then
|
|
begin
|
|
FImagesCache.UnregisterListener(Self);
|
|
FImagesCache := nil; // cache can free on unregister
|
|
ClearImages;
|
|
end;
|
|
|
|
if CanShow and (FOriginal.Width > 0) and (FOriginal.Height > 0) then
|
|
begin
|
|
FImagesCache := GetImageListCache;
|
|
FImagesCache.RegisterListener(Self);
|
|
FImagesCache.RegisterBitmap(Self, FOriginal, NumGlyphs);
|
|
end;
|
|
|
|
if Sender = FOriginal then
|
|
if Assigned(FOnChange) then
|
|
FOnChange(Self);
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
TButtonGlyph Draw
|
|
------------------------------------------------------------------------------}
|
|
function TButtonGlyph.Draw(Canvas: TCanvas; const Client: TRect;
|
|
const Offset: TPoint; State: TButtonState; Transparent: Boolean;
|
|
BiDiFlags: Longint): TRect;
|
|
var
|
|
ImgID: integer;
|
|
AEffect: TGraphicsDrawEffect;
|
|
begin
|
|
Result := Client;
|
|
if (FOriginal = nil) then
|
|
exit;
|
|
|
|
if (Width = 0) or (Height = 0) or
|
|
(Client.Left >= Client.Right) or (Client.Top >= Client.Bottom) then
|
|
Exit;
|
|
|
|
GetImageIndexAndEffect(State, ImgID, AEffect);
|
|
|
|
FImages.Draw(Canvas, Client.Left + Offset.X, Client.Top + Offset.y, ImgID,
|
|
AEffect);
|
|
|
|
// ToDo: VCL returns the text rectangle
|
|
end;
|
|
|
|
procedure TButtonGlyph.Refresh;
|
|
begin
|
|
GlyphChanged(FOriginal);
|
|
end;
|
|
|
|
|
|
{------------------------------------------------------------------------------
|
|
TButtonGlyph SetNumGlyphs
|
|
------------------------------------------------------------------------------}
|
|
procedure TButtonGlyph.SetNumGlyphs(Value : TNumGlyphs);
|
|
begin
|
|
if Value <> FNumGlyphs then
|
|
begin
|
|
FNumGlyphs := Value;
|
|
Refresh;
|
|
end;
|
|
end;
|
|
|
|
procedure TButtonGlyph.SetTransparentMode(AValue: TGlyphTransparencyMode);
|
|
begin
|
|
if AValue = FTransparentMode then Exit;
|
|
FTransparentMode := AValue;
|
|
if FTransparentMode = gtmGlyph then Exit;
|
|
FOriginal.Transparent := FTransparentMode = gtmTransparent;
|
|
end;
|
|
|
|
procedure TButtonGlyph.ClearImages;
|
|
var
|
|
i: TButtonState;
|
|
begin
|
|
FImages := nil;
|
|
for i := Low(TButtonState) to High(TButtonState) do
|
|
FImageIndexes[i] := -1;
|
|
end;
|
|
|
|
function TButtonGlyph.QueryInterface(constref iid: TGuid; out obj): longint; {$IFDEF WINDOWs}stdcall{$ELSE}cdecl{$ENDIF};
|
|
begin
|
|
if GetInterface(iid, obj) then
|
|
Result := 0
|
|
else
|
|
Result := E_NOINTERFACE;
|
|
end;
|
|
|
|
function TButtonGlyph._AddRef: longint; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
|
|
begin
|
|
Result := -1;
|
|
end;
|
|
|
|
function TButtonGlyph._Release: longint; {$IFDEF WINDOWS}stdcall{$ELSE}cdecl{$ENDIF};
|
|
begin
|
|
Result := -1;
|
|
end;
|
|
|
|
procedure TButtonGlyph.CacheSetImageList(AImageList: TCustomImageList);
|
|
begin
|
|
FImages := AImageList;
|
|
end;
|
|
|
|
procedure TButtonGlyph.CacheSetImageIndex(AIndex, AImageIndex: Integer);
|
|
begin
|
|
if (AIndex >= ord(Low(TButtonState))) and (AIndex <= Ord(High(TButtonState))) then
|
|
FImageIndexes[TButtonState(AIndex)] := AImageIndex;
|
|
end;
|
|
|
|
// included by buttons.pp
|