mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
LCL: remove compatibility todos. Issue #33645
git-svn-id: trunk@57710 -
This commit is contained in:
parent
7ae0c035e9
commit
769fe27b8f
@ -109,14 +109,14 @@ type
|
||||
public
|
||||
constructor Create;
|
||||
destructor Destroy; override;
|
||||
// procedure GetImageIndexAndEffect(State: TButtonState; out AIndex: Integer; out AEffect: TGraphicsDrawEffect); To-Do: enable for backwards compatibility
|
||||
procedure GetImageIndexAndEffect(State: TButtonState; out AIndex: Integer; out AEffect: TGraphicsDrawEffect);
|
||||
procedure GetImageIndexAndEffect(State: TButtonState;
|
||||
APPI: Integer; const ACanvasScaleFactor: Double;
|
||||
out AImageResolution: TScaledImageListResolution;
|
||||
out AIndex: Integer; out AEffect: TGraphicsDrawEffect);
|
||||
{function Draw(Canvas: TCanvas; const Client: TRect; const Offset: TPoint;
|
||||
function Draw(Canvas: TCanvas; const Client: TRect; const Offset: TPoint;
|
||||
State: TButtonState; Transparent: Boolean;
|
||||
BiDiFlags: Longint): TRect; To-Do: enable for backwards compatibility }
|
||||
BiDiFlags: Longint): TRect;
|
||||
function Draw(Canvas: TCanvas; const Client: TRect; const Offset: TPoint;
|
||||
State: TButtonState; Transparent: Boolean;
|
||||
BiDiFlags, PPI: Longint; const ScaleFactor: Double): TRect;
|
||||
|
@ -144,6 +144,14 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TButtonGlyph.GetImageIndexAndEffect(State: TButtonState; out
|
||||
AIndex: Integer; out AEffect: TGraphicsDrawEffect);
|
||||
var
|
||||
x: TScaledImageListResolution;
|
||||
begin
|
||||
GetImageIndexAndEffect(State, 96, 1, x, AIndex, AEffect);
|
||||
end;
|
||||
|
||||
function TButtonGlyph.GetNumGlyphs: TNumGlyphs;
|
||||
begin
|
||||
if Assigned(FExternalImages) then
|
||||
@ -285,6 +293,13 @@ begin
|
||||
// ToDo: VCL returns the text rectangle
|
||||
end;
|
||||
|
||||
function TButtonGlyph.Draw(Canvas: TCanvas; const Client: TRect;
|
||||
const Offset: TPoint; State: TButtonState; Transparent: Boolean;
|
||||
BiDiFlags: Longint): TRect;
|
||||
begin
|
||||
Result := Draw(Canvas, Client, Offset, State, Transparent, BiDiFlags, 96, 1);
|
||||
end;
|
||||
|
||||
procedure TButtonGlyph.Refresh;
|
||||
begin
|
||||
GlyphChanged(FOriginal);
|
||||
|
Loading…
Reference in New Issue
Block a user