mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-19 21:23:03 +02:00
38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
{ TPaintBox
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
constructor TPaintBox.Create(AOwner: TComponent);
|
|
begin
|
|
inherited Create(AOwner);
|
|
ControlStyle := ControlStyle + [csReplicatable];
|
|
setbounds(0,0,105,105);
|
|
end;
|
|
|
|
procedure TPaintBox.Paint;
|
|
begin
|
|
Canvas.Font := Font;
|
|
Canvas.Brush.Color := Color;
|
|
if csDesigning in ComponentState then
|
|
with Canvas do
|
|
begin
|
|
Pen.Style := psDash;
|
|
Brush.Style := bsClear;
|
|
Rectangle(0, 0, Width - 1, Height - 1);
|
|
end;
|
|
if Assigned(FOnPaint) then
|
|
FOnPaint(Self);
|
|
end;
|