mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 04:59:26 +02:00
* Make Draw, Stretchdraw, CopyRect virtual. Bug ID #35126
git-svn-id: trunk@43480 -
This commit is contained in:
parent
42c97b0760
commit
de07c3b532
@ -371,9 +371,9 @@ type
|
||||
procedure Line (const p1,p2:TPoint);
|
||||
procedure Line (const points:TRect);
|
||||
// other procedures
|
||||
procedure CopyRect (x,y:integer; canvas:TFPCustomCanvas; SourceRect:TRect);
|
||||
procedure Draw (x,y:integer; image:TFPCustomImage);
|
||||
procedure StretchDraw (x,y,w,h:integer; source:TFPCustomImage);
|
||||
procedure CopyRect (x,y:integer; canvas:TFPCustomCanvas; SourceRect:TRect); virtual;
|
||||
procedure Draw (x,y:integer; image:TFPCustomImage); virtual;
|
||||
procedure StretchDraw (x,y,w,h:integer; source:TFPCustomImage); virtual;
|
||||
procedure Erase;virtual;
|
||||
procedure DrawPixel(const x, y: integer; const newcolor: TFPColor);
|
||||
// properties
|
||||
|
Loading…
Reference in New Issue
Block a user