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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
{
fpGUI - Free Pascal GUI Library
Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
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.
Description:
Defines a basic Label control. Also known as a Caption component.
}
unit gui_label;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
gfx_widget;
type
TfpgLabel = class(TfpgWidget)
private
FAutoSize: boolean;
FBackgroundColor: TfpgColor;
FColor: TfpgColor;
function GetFontDesc: string;
procedure SetAutoSize(const AValue: boolean);
procedure SetBackgroundColor(const AValue: TfpgColor);
procedure SetFontDesc(const AValue: string);
procedure SetColor(const AValue: TfpgColor);
procedure SetText(const AValue: string);
procedure ResizeLabel;
protected
FText: string;
FFont: TfpgFont;
procedure HandlePaint; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Font: TfpgFont read FFont;
published
property AutoSize: boolean read FAutoSize write SetAutoSize default False;
property Text: string read FText write SetText;
property FontDesc: string read GetFontDesc write SetFontDesc;
property Color: TfpgColor read FColor write SetColor;
property BackgroundColor: TfpgColor read FBackgroundColor write SetBackgroundColor;
property OnMouseMove;
end;
TLabelClass = class of TfpgLabel;
function CreateLabel(AOwner: TComponent; x, y: TfpgCoord; AText: string): TfpgLabel;
implementation
function CreateLabel(AOwner: TComponent; x, y: TfpgCoord; AText: string): TfpgLabel;
begin
Result := TfpgLabel.Create(AOwner);
Result.Left := x;
Result.Top := y;
Result.Text := AText;
Result.Width := Result.Font.TextWidth(Result.Text);
end;
{ TfpgLabel }
procedure TfpgLabel.SetColor(const AValue: TfpgColor);
begin
if FColor = AValue then
Exit;
FColor := AValue;
RePaint;
end;
function TfpgLabel.GetFontDesc: string;
begin
Result := FFont.FontDesc;
end;
procedure TfpgLabel.SetAutoSize(const AValue: boolean);
begin
if FAutoSize = AValue then
Exit; //==>
FAutoSize := AValue;
if FAutoSize then
begin
ResizeLabel;
RePaint;
end;
end;
procedure TfpgLabel.SetBackgroundColor(const AValue: TfpgColor);
begin
if FBackgroundColor = AValue then
Exit; //==>
FBackgroundColor := AValue;
RePaint;
end;
procedure TfpgLabel.SetFontDesc(const AValue: string);
begin
FFont.Free;
FFont := fpgGetFont(AValue);
if FAutoSize then
ResizeLabel;
RePaint;
end;
procedure TfpgLabel.SetText(const AValue: string);
begin
if FText = AValue then
Exit; //==>
FText := AValue;
if FAutoSize then
ResizeLabel;
RePaint;
end;
procedure TfpgLabel.ResizeLabel;
begin
Width := FFont.TextWidth(FText);
Height := FFont.Height;
SetPosition(Left, Top, Width, Height);
end;
constructor TfpgLabel.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FText := 'Label';
FFont := fpgGetFont('#Label1');
FHeight := FFont.Height;
FWidth := 80;
FColor := clText1;
FBackgroundColor := clWindowBackground;
FAutoSize := False;
end;
destructor TfpgLabel.Destroy;
begin
FText := '';
FFont.Free;
inherited Destroy;
end;
procedure TfpgLabel.HandlePaint;
begin
Canvas.BeginDraw;
inherited;
Canvas.Clear(FBackgroundColor);
Canvas.SetFont(Font);
Canvas.SetTextColor(FColor);
fpgStyle.DrawString(Canvas, 0, 0, FText, Enabled);
Canvas.EndDraw;
end;
end.
|