blob: 034dd1c542ab7950b01cb6b6bd977db36d7f3671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2003 by the Free Pascal development team
TFPCustomPen implementation
See the file COPYING.FPC, 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.
**********************************************************************}
{ TFPCustomPen }
procedure TFPCustomPen.SetMode (AValue : TFPPenMode);
begin
FMode := AValue;
end;
procedure TFPCustomPen.SetWidth (AValue : Integer);
begin
if AValue < 1 then
FWidth := 1
else
FWidth := AValue;
end;
procedure TFPCustomPen.SetStyle (AValue : TFPPenStyle);
begin
FStyle := AValue;
end;
procedure TFPCustomPen.SetPattern (AValue : longword);
begin
FPattern := AValue;
end;
procedure TFPCustomPen.SetEndCap(AValue: TFPPenEndCap);
begin
if FEndCap=AValue then Exit;
FEndCap:=AValue;
end;
procedure TFPCustomPen.SetJoinStyle(AValue: TFPPenJoinStyle);
begin
if FJoinStyle=AValue then Exit;
FJoinStyle:=AValue;
end;
procedure TFPCustomPen.DoCopyProps (From:TFPCanvasHelper);
begin
with From as TFPCustomPen do
begin
self.Style := Style;
self.Width := Width;
self.Mode := Mode;
self.pattern := pattern;
end;
inherited;
end;
function TFPCustomPen.CopyPen : TFPCustomPen;
begin
result := TFPCustomPen(self.ClassType.Create);
result.DoCopyProps (self);
end;
|