mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 06:16:05 +02:00
TAChart: Add missing overload directives in TBasicDrawer class (Issue #34774, patch by Jonas Maebe)
git-svn-id: branches/fixes_2_0@59957 -
This commit is contained in:
parent
a9797882f4
commit
ad85cd6fe1
@ -163,10 +163,10 @@ type
|
|||||||
function GetFontSize: Integer; virtual; abstract;
|
function GetFontSize: Integer; virtual; abstract;
|
||||||
function GetFontStyle: TChartFontStyles; virtual; abstract;
|
function GetFontStyle: TChartFontStyles; virtual; abstract;
|
||||||
function GetRightToLeft: Boolean;
|
function GetRightToLeft: Boolean;
|
||||||
procedure LineTo(AX, AY: Integer); virtual; abstract;
|
procedure LineTo(AX, AY: Integer); virtual; abstract; overload;
|
||||||
procedure LineTo(const AP: TPoint);
|
procedure LineTo(const AP: TPoint); overload;
|
||||||
procedure MoveTo(AX, AY: Integer); virtual; abstract;
|
procedure MoveTo(AX, AY: Integer); virtual; abstract; overload;
|
||||||
procedure MoveTo(const AP: TPoint);
|
procedure MoveTo(const AP: TPoint); overload;
|
||||||
procedure Polygon(
|
procedure Polygon(
|
||||||
const APoints: array of TPoint; AStartIndex, ANumPts: Integer); virtual; abstract;
|
const APoints: array of TPoint; AStartIndex, ANumPts: Integer); virtual; abstract;
|
||||||
procedure PutImage(AX, AY: Integer; AImage: TFPCustomImage); virtual;
|
procedure PutImage(AX, AY: Integer; AImage: TFPCustomImage); virtual;
|
||||||
@ -179,8 +179,8 @@ type
|
|||||||
procedure SetRightToLeft(AValue: Boolean);
|
procedure SetRightToLeft(AValue: Boolean);
|
||||||
procedure SetTransparency(ATransparency: TChartTransparency);
|
procedure SetTransparency(ATransparency: TChartTransparency);
|
||||||
procedure SetXor(AXor: Boolean);
|
procedure SetXor(AXor: Boolean);
|
||||||
function TextExtent(const AText: String; ATextFormat: TChartTextFormat = tfNormal): TPoint;
|
function TextExtent(const AText: String; ATextFormat: TChartTextFormat = tfNormal): TPoint; overload;
|
||||||
function TextExtent(AText: TStrings; ATextFormat: TChartTextFormat = tfNormal): TPoint;
|
function TextExtent(AText: TStrings; ATextFormat: TChartTextFormat = tfNormal): TPoint; overload;
|
||||||
function TextOut: TChartTextOut;
|
function TextOut: TChartTextOut;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user