-
Notifications
You must be signed in to change notification settings - Fork 1
/
lzroundedbutton.pas
398 lines (352 loc) · 10.1 KB
/
lzroundedbutton.pas
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
{
LZRoundedButton
by Lainz
Last modified: 2020-09-06 20:45 GMT-3
Changelog:
- 2020-09-06: Initial version with color and style properties.
}
unit LZRoundedButton;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
BGRABitmap, BGRABitmapTypes;
type
TLZRoundedButton = class;
TLZRoundedButtonStyle = class;
TLZRoundedButtonPropertyChange = procedure(Sender: TLZRoundedButtonStyle) of object;
TLZRoundedButtonState = (bsNormal, bsHover, bsActive, bsDisabled);
{ TLZRoundedButtonStyle }
TLZRoundedButtonStyle = class(TPersistent)
private
FBorderStyle: TRoundRectangleOptions;
FBorderWidth: single;
FControl: TLZRoundedButton;
FFillColor: TColor;
FOnChange: TLZRoundedButtonPropertyChange;
FPenColor: TColor;
FRounding: single;
procedure SetBorderWidth(AValue: single);
procedure SetCustomBorderStyle(AValue: TRoundRectangleOptions);
procedure SetFillColor(AValue: TColor);
procedure SetPenColor(AValue: TColor);
procedure SetRounding(AValue: single);
public
constructor Create(AControl: TLZRoundedButton);
// The owner button
property Control: TLZRoundedButton read FControl;
// The change style event
property OnChange: TLZRoundedButtonPropertyChange read FOnChange write FOnChange;
published
// Rounding of the borders
property Rounding: single read FRounding write SetRounding;
// Color of the border
property PenColor: TColor read FPenColor write SetPenColor;
// Color of the panel
property FillColor: TColor read FFillColor write SetFillColor;
// Thickness of the border
property BorderWidth: single read FBorderWidth write SetBorderWidth;
// The style of the rounded rectangle
property BorderStyle: TRoundRectangleOptions
read FBorderStyle write SetCustomBorderStyle;
end;
{ TLZRoundedButton }
TLZRoundedButton = class(TGraphicControl)
private
FBGRA: TBGRABitmap;
FModalResult: TModalResult;
FState: TLZRoundedButtonState;
FStyleActive: TLZRoundedButtonStyle;
FStyleDisabled: TLZRoundedButtonStyle;
FStyleHover: TLZRoundedButtonStyle;
FStyleNormal: TLZRoundedButtonStyle;
procedure OnChangeStyle(Sender: TLZRoundedButtonStyle);
protected
procedure DoClick; virtual;
procedure DoMouseDown; virtual;
procedure DoMouseUp; virtual;
procedure DoMouseEnter; virtual;
procedure DoMouseLeave; virtual;
procedure DoMouseMove({%H-}x, {%H-}y: integer); virtual;
protected
procedure Paint; override;
procedure Click; override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer); override;
procedure MouseEnter; override;
procedure MouseLeave; override;
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
procedure SetEnabled(Value: boolean); override;
procedure TextChanged; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property ModalResult: TModalResult
read FModalResult write FModalResult default mrNone;
property State: TLZRoundedButtonState read FState;
property StyleNormal: TLZRoundedButtonStyle read FStyleNormal write FStyleNormal;
property StyleHover: TLZRoundedButtonStyle read FStyleHover write FStyleHover;
property StyleActive: TLZRoundedButtonStyle read FStyleActive write FStyleActive;
property StyleDisabled: TLZRoundedButtonStyle
read FStyleDisabled write FStyleDisabled;
published
property Action;
property Align;
property Anchors;
property AutoSize;
property BidiMode;
property BorderSpacing;
property Caption;
property Color;
property Constraints;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Font;
property OnChangeBounds;
property OnClick;
property OnContextPopup;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDrag;
property ParentBidiMode;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property Visible;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Lainz Controls', [TLZRoundedButton]);
end;
{ TLZRoundedButtonStyle }
procedure TLZRoundedButtonStyle.SetBorderWidth(AValue: single);
begin
if FBorderWidth = AValue then
Exit;
FBorderWidth := AValue;
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TLZRoundedButtonStyle.SetCustomBorderStyle(AValue: TRoundRectangleOptions);
begin
if FBorderStyle = AValue then
Exit;
FBorderStyle := AValue;
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TLZRoundedButtonStyle.SetFillColor(AValue: TColor);
begin
if FFillColor = AValue then
Exit;
FFillColor := AValue;
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TLZRoundedButtonStyle.SetPenColor(AValue: TColor);
begin
if FPenColor = AValue then
Exit;
FPenColor := AValue;
if Assigned(FOnChange) then
FOnChange(Self);
end;
procedure TLZRoundedButtonStyle.SetRounding(AValue: single);
begin
if FRounding = AValue then
Exit;
FRounding := AValue;
if Assigned(FOnChange) then
FOnChange(Self);
end;
constructor TLZRoundedButtonStyle.Create(AControl: TLZRoundedButton);
begin
inherited Create;
FControl := AControl;
FPenColor := clSilver;
FFillColor := clWhite;
FRounding := 10;
FBorderWidth := 1;
end;
{ TLZRoundedButton }
procedure TLZRoundedButton.OnChangeStyle(Sender: TLZRoundedButtonStyle);
begin
Invalidate;
end;
procedure TLZRoundedButton.DoClick;
var
Form: TCustomForm;
begin
if ModalResult <> mrNone then
begin
Form := GetParentForm(Self);
if Form <> nil then
Form.ModalResult := ModalResult;
end;
end;
procedure TLZRoundedButton.DoMouseDown;
begin
FState := bsActive;
Invalidate;
end;
procedure TLZRoundedButton.DoMouseUp;
var
NewState: TLZRoundedButtonState;
p: TPoint;
begin
p := ScreenToClient(Mouse.CursorPos);
if (p.x >= 0) and (p.x <= Width) and (p.y >= 0) and (p.y <= Height) then
NewState := bsHover
else
NewState := bsNormal;
FState := NewState;
Invalidate;
end;
procedure TLZRoundedButton.DoMouseEnter;
begin
FState := bsHover;
Invalidate;
end;
procedure TLZRoundedButton.DoMouseLeave;
begin
FState := bsNormal;
Invalidate;
end;
procedure TLZRoundedButton.DoMouseMove(x, y: integer);
begin
inherited;
end;
procedure TLZRoundedButton.Paint;
var
textStyle: TTextStyle;
offset: single;
FCurrentStyle: TLZRoundedButtonStyle;
begin
inherited Paint;
if (ClientWidth <> FBGRA.Width) or (ClientHeight <> FBGRA.Height) then
FBGRA.SetSize(ClientWidth, ClientHeight);
FBGRA.FillTransparent;
// Colors, BorderWidth, Fill and Pen color, BorderStyle
case FState of
bsNormal: FCurrentStyle := FStyleNormal;
bsHover: FCurrentStyle := FStyleHover;
bsActive: FCurrentStyle := FStyleActive;
bsDisabled: FCurrentStyle := FStyleDisabled;
end;
if (trunc(FCurrentStyle.BorderWidth) mod 2 = 0) and (frac(FCurrentStyle.BorderWidth)=0) then
offset := 0.5
else
offset := 0;
FBGRA.RoundRectAntialias(trunc(FCurrentStyle.BorderWidth /
2)-offset, trunc(FCurrentStyle.FBorderWidth / 2)-offset,
trunc(Width - (FCurrentStyle.FBorderWidth / 2))-offset, trunc(Height -
(FCurrentStyle.FBorderWidth / 2))-offset,
FCurrentStyle.Rounding, FCurrentStyle.Rounding,
FCurrentStyle.PenColor, FCurrentStyle.BorderWidth, FCurrentStyle.FillColor,
FCurrentStyle.BorderStyle);
FBGRA.Draw(Canvas, 0, 0, False);
// Caption
if Caption <> '' then
begin
textStyle.Alignment := taCenter;
textStyle.Layout := tlCenter;
textStyle.Opaque := False;
textStyle.SystemFont := False;
textStyle.Wordbreak := True;
textStyle.SingleLine := False;
// Add some margins
Canvas.TextRect(Rect(5, 5, Width - 5, Height - 5), 0, 0, Caption, textStyle);
end;
end;
procedure TLZRoundedButton.Click;
begin
DoClick;
inherited Click;
end;
procedure TLZRoundedButton.MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: integer);
begin
inherited MouseDown(Button, Shift, X, Y);
if Button = mbLeft then
DoMouseDown;
end;
procedure TLZRoundedButton.MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: integer);
begin
inherited MouseUp(Button, Shift, X, Y);
DoMouseUp;
end;
procedure TLZRoundedButton.MouseEnter;
begin
inherited MouseEnter;
DoMouseEnter;
end;
procedure TLZRoundedButton.MouseLeave;
begin
inherited MouseLeave;
DoMouseLeave;
end;
procedure TLZRoundedButton.MouseMove(Shift: TShiftState; X, Y: integer);
begin
inherited MouseMove(Shift, X, Y);
DoMouseMove(X, Y);
end;
procedure TLZRoundedButton.SetEnabled(Value: boolean);
begin
if Value then
FState := bsNormal
else
FState := bsDisabled;
inherited SetEnabled(Value);
end;
procedure TLZRoundedButton.TextChanged;
begin
inherited TextChanged;
Invalidate;
end;
constructor TLZRoundedButton.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ParentFont := False;
FBGRA := TBGRABitmap.Create(Width, Height);
FStyleNormal := TLZRoundedButtonStyle.Create(Self);
FStyleNormal.OnChange := @OnChangeStyle;
FStyleHover := TLZRoundedButtonStyle.Create(Self);
FStyleHover.OnChange := @OnChangeStyle;
FStyleActive := TLZRoundedButtonStyle.Create(Self);
FStyleActive.OnChange := @OnChangeStyle;
FStyleDisabled := TLZRoundedButtonStyle.Create(Self);
FStyleDisabled.OnChange := @OnChangeStyle;
FStyleHover.PenColor := $00C08000;
FStyleActive.PenColor := $00C08000;
FStyleActive.FillColor := $00DDDDDD;
FStyleDisabled.PenColor := clGray;
FStyleDisabled.FillColor := clSilver;
end;
destructor TLZRoundedButton.Destroy;
begin
FBGRA.Free;
FStyleNormal.Free;
FStyleHover.Free;
FStyleActive.Free;
FStyleDisabled.Free;
inherited Destroy;
end;
end.