-
Notifications
You must be signed in to change notification settings - Fork 2
/
bcpanel.pas
519 lines (450 loc) · 13 KB
/
bcpanel.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
// SPDX-License-Identifier: LGPL-3.0-only (modified to allow linking)
{ Equivalent of standard lazarus TPanel but using BGRA Controls framework for render
Functionality:
- Customizable background (gradient etc.)
- Customizable border (frame 3D or normal border, rounding etc)
- FontEx (shadow etc.)
originally written in 2011 by Krzysztof Dibowski dibowski at interia.pl
}
{******************************* CONTRIBUTOR(S) ******************************
- Edivando S. Santos Brasil | [email protected]
(Compatibility with delphi VCL 11/2018)
***************************** END CONTRIBUTOR(S) *****************************}
unit BCPanel;
{$I bgracontrols.inc}
interface
uses
Classes, SysUtils, {$IFDEF FPC}LResources,{$ENDIF} Types, Forms, Controls, Graphics, Dialogs,
BGRABitmap, BCBaseCtrls, BGRABitmapTypes, BCTypes, LCLVersion;
type
TOnAfterRenderBCPanel = procedure(Sender: TObject; const ABGRA: TBGRABitmap;
ARect: TRect) of object;
TBCPanelBorderStyle = (bpsBorder, bpsFrame3d);
{ TCustomBCPanel }
TCustomBCPanel = class(TBCStyleCustomControl)
private
{ Private declarations }
{$IFDEF INDEBUG}
FRenderCount: Integer;
{$ENDIF}
FBackground: TBCBackground;
FBevelWidth: Integer;
FBGRA: TBGRABitmapEx;
FBevelInner, FBevelOuter : TBevelCut;
FBorder: TBCBorder;
FBorderBCStyle: TBCPanelBorderStyle;
FFontEx: TBCFont;
FOnAfterRenderBCPanel: TOnAfterRenderBCPanel;
FRounding: TBCRounding;
procedure SetBackground(AValue: TBCBackground);
procedure SetBevelInner(AValue: TBevelCut);
procedure SetBevelOuter(AValue: TBevelCut);
procedure SetBevelWidth(AValue: Integer);
procedure SetBorder(AValue: TBCBorder);
procedure SetBorderBCStyle(AValue: TBCPanelBorderStyle);
procedure SetFontEx(AValue: TBCFont);
procedure SetRounding(AValue: TBCRounding);
procedure Render;
procedure OnChangeProperty({%H-}Sender: TObject; {%H-}AData: BGRAPtrInt);
procedure OnChangeFont({%H-}Sender: TObject; {%H-}AData: BGRAPtrInt);
protected
{ Protected declarations }
procedure AdjustClientRect(var aRect: TRect); override;
class function GetControlClassDefaultSize: TSize; override;
function GetDefaultDockCaption: String; override;
procedure SetEnabled(Value: boolean); override;
procedure TextChanged; override;
protected
function GetStyleExtension: String; override;
{$IFDEF INDEBUG}
function GetDebugText: String; override;
{$ENDIF}
procedure DrawControl; override;
procedure RenderControl; override;
protected
{$IF LCL_FULLVERSION >= 2080000}
procedure SetParentBackground(const AParentBackground: Boolean); override;
{$ENDIF}
property Background: TBCBackground read FBackground write SetBackground;
property BevelInner: TBevelCut read FBevelInner write SetBevelInner;
property BevelOuter: TBevelCut read FBevelOuter write SetBevelOuter;
property BevelWidth: Integer read FBevelWidth write SetBevelWidth;
property Border: TBCBorder read FBorder write SetBorder;
property BorderBCStyle: TBCPanelBorderStyle
read FBorderBCStyle write SetBorderBCStyle default bpsFrame3d;
property FontEx: TBCFont read FFontEx write SetFontEx;
property Rounding: TBCRounding read FRounding write SetRounding;
protected
{ Events }
property OnAfterRenderBCPanel: TOnAfterRenderBCPanel
Read FOnAfterRenderBCPanel Write FOnAfterRenderBCPanel;
public
{ Public declarations }
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure UpdateControl; override; // Called by EndUpdate
public
{ Streaming }
{$IFDEF FPC}
procedure SaveToFile(AFileName: string);
procedure LoadFromFile(AFileName: string);
{$ENDIF}
procedure OnFindClass({%H-}Reader: TReader; const AClassName: string;
var ComponentClass: TComponentClass);
end;
{ TBCPanel }
TBCPanel = class(TCustomBCPanel)
published
property Align;
property Anchors;
property AssignStyle;
property AutoSize;
property BorderSpacing;
property ChildSizing;
{$IFDEF FPC} //#
property OnGetDockCaption;
{$ENDIF}
property Background;
property BevelInner;
property BevelOuter;
property BevelWidth;
property Border;
property BorderBCStyle;
property Caption;
property Constraints;
property DockSite;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property FontEx;
{$IFNDEF FPC}
property ParentBackground;
{$ENDIF}
property PopupMenu;
property Rounding;
property ShowHint;
property TabOrder;
property TabStop;
property UseDockManager default True;
property Visible;
property OnClick;
property OnContextPopup;
property OnDockDrop;
property OnDockOver;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDock;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnGetSiteInfo;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDock;
property OnStartDrag;
property OnUnDock;
property OnAfterRenderBCPanel;
end;
{$IFDEF FPC}procedure Register;{$ENDIF}
implementation
uses BCTools;
{$IFDEF FPC}
procedure Register;
begin
//{$I icons\bcpanel_icon.lrs}
RegisterComponents('BGRA Controls', [TBCPanel]);
end;
{$ENDIF}
{ TCustomBCPanel }
procedure TCustomBCPanel.DrawControl;
begin
inherited DrawControl;
if FBGRA.NeedRender then
Render;
if Assigned (FRounding) then
begin
if (FRounding.RoundX<>0) and (FRounding.RoundY<>0) then
FBGRA.Draw(Self.Canvas, 0, 0, False)
else
FBGRA.Draw(Self.Canvas, 0, 0);
end
else
FBGRA.Draw(Self.Canvas, 0, 0);
{$IFNDEF FPC}//# //@ IN DELPHI RenderControl NEDD. IF NO RenderControl BE BLACK AFTER INVALIDATE.
FBGRA.NeedRender := True;
{$ENDIF}
end;
procedure TCustomBCPanel.RenderControl;
begin
inherited RenderControl;
if FBGRA<>nil then
FBGRA.NeedRender := True;
end;
{$IF LCL_FULLVERSION >= 2080000}
procedure TCustomBCPanel.SetParentBackground(const AParentBackground: Boolean);
begin
if ParentBackground=AParentBackground then
Exit;
if AParentBackground then
ControlStyle := ControlStyle - [csOpaque]
else
ControlStyle := ControlStyle + [csOpaque];
inherited;
end;
{$ENDIF}
function TCustomBCPanel.GetStyleExtension: String;
begin
Result := 'bcpnl';
end;
{$IFDEF INDEBUG}
function TCustomBCPanel.GetDebugText: String;
begin
Result := 'R: '+IntToStr(FRenderCount);
end;
{$ENDIF}
procedure TCustomBCPanel.Render;
var r: TRect;
begin
if (csCreating in ControlState) or IsUpdating then
Exit;
FBGRA.NeedRender := False;
FBGRA.SetSize(Width, Height);
FBGRA.Fill(BGRAPixelTransparent);
r := FBGRA.ClipRect;
case FBorderBCStyle of
bpsBorder:
begin
RenderBackgroundAndBorder(FBGRA.ClipRect, FBackground, TBGRABitmap(FBGRA), FRounding, FBorder);
CalculateBorderRect(FBorder,r);
end;
bpsFrame3d:
begin
// if BevelOuter is set then draw a frame with BevelWidth
if (FBevelOuter <> bvNone) and (FBevelWidth > 0) then
FBGRA.CanvasBGRA.Frame3d(r, FBevelWidth, FBevelOuter,
BGRA(255, 255, 255, 180), BGRA(0, 0, 0, 160)); // Note: Frame3D inflates ARect
// if BevelInner is set then skip the BorderWidth and draw a frame with BevelWidth
if (FBevelInner <> bvNone) and (FBevelWidth > 0) then
begin
InflateRect(r, -FBevelWidth, -FBevelWidth);
FBGRA.CanvasBGRA.Frame3d(r, FBevelWidth, FBevelInner,
BGRA(255, 255, 255, 160), BGRA(0, 0, 0, 160)); // Note: Frame3D inflates ARect
end;
RenderBackground(r, FBackground, TBGRABitmap(FBGRA), nil, True);
end;
else
RenderBackground(FBGRA.ClipRect, FBackground, TBGRABitmap(FBGRA), FRounding, True);
end;
if Caption <> '' then
RenderText(r,FFontEx,Caption,TBGRABitmap(FBGRA));
if Assigned(FOnAfterRenderBCPanel) then
FOnAfterRenderBCPanel(Self, FBGRA, r);
{$IFDEF INDEBUG}
FRenderCount := FRenderCount + 1;
{$ENDIF}
end;
procedure TCustomBCPanel.OnChangeProperty(Sender: TObject; AData: BGRAPtrInt);
begin
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.OnChangeFont(Sender: TObject; AData: BGRAPtrInt);
begin
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetRounding(AValue: TBCRounding);
begin
if FRounding = AValue then Exit;
FRounding.Assign(AValue);
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.AdjustClientRect(var aRect: TRect);
var BevelSize: Integer;
begin
inherited AdjustClientRect(aRect);
BevelSize := BorderWidth;
if (BevelOuter <> bvNone) then
inc(BevelSize, BevelWidth);
if (BevelInner <> bvNone) then
inc(BevelSize, BevelWidth);
InflateRect(aRect, -BevelSize, -BevelSize);
end;
class function TCustomBCPanel.GetControlClassDefaultSize: TSize;
begin
Result.CX := 170;
Result.CY := 50;
end;
function TCustomBCPanel.GetDefaultDockCaption: String;
begin
Result := Caption;
end;
procedure TCustomBCPanel.SetBackground(AValue: TBCBackground);
begin
if FBackground = AValue then Exit;
FBackground.Assign(AValue);
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetBevelInner(AValue: TBevelCut);
begin
if FBevelInner = AValue then Exit;
FBevelInner := AValue;
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetBevelOuter(AValue: TBevelCut);
begin
if FBevelOuter = AValue then Exit;
FBevelOuter := AValue;
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetBevelWidth(AValue: Integer);
begin
if FBevelWidth = AValue then Exit;
FBevelWidth := AValue;
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetBorder(AValue: TBCBorder);
begin
if FBorder = AValue then Exit;
FBorder.Assign(AValue);
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetBorderBCStyle(AValue: TBCPanelBorderStyle);
begin
if FBorderBCStyle = AValue then Exit;
FBorderBCStyle := AValue;
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetFontEx(AValue: TBCFont);
begin
if FFontEx = AValue then Exit;
FFontEx.Assign(AValue);
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.SetEnabled(Value: boolean);
begin
inherited SetEnabled(Value);
RenderControl;
Invalidate;
end;
procedure TCustomBCPanel.TextChanged;
begin
{$IFDEF FPC}
inherited TextChanged;
{$ENDIF}
RenderControl;
Invalidate;
end;
constructor TCustomBCPanel.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
{$IFDEF INDEBUG}
FRenderCount := 0;
{$ENDIF}
{$IFDEF FPC}
DisableAutoSizing;
Include(FControlState, csCreating);
{$ELSE} //#
{$ENDIF}
BeginUpdate;
try
ControlStyle := ControlStyle + [csAcceptsControls, csCaptureMouse,
csClickEvents, csSetCaption, csDoubleClicks, csReplicatable{$IFDEF FPC},
csNoFocus, csAutoSize0x0{$ENDIF}]
+ [csOpaque]; // we need the default background
//Self.DoubleBuffered := True;
with GetControlClassDefaultSize do
SetInitialBounds(0, 0, CX, CY);
FBGRA := TBGRABitmapEx.Create;
FBorderBCStyle := bpsFrame3d;
FBackground := TBCBackground.Create(Self);
FBorder := TBCBorder.Create(Self);
FFontEx := TBCFont.Create(Self);
FBevelOuter := bvRaised;
FBevelInner := bvNone;
FBevelWidth := 1;
ParentColor := True;
UseDockManager := True;
FBackground.OnChange := OnChangeProperty;
FBorder.OnChange := OnChangeProperty;
FFontEx.OnChange := OnChangeFont;
FBackground.Style := bbsColor;
FBackground.Color := {$ifdef UseCLDefault}clDefault{$else}clBtnFace{$endif};
FBorder.Style := bboNone;
FRounding := TBCRounding.Create(Self);
FRounding.OnChange := OnChangeProperty;
finally
{$IFDEF FPC}
EnableAutoSizing;
{$ENDIF}
EndUpdate;
{$IFDEF FPC}
Exclude(FControlState, csCreating);
{$ELSE} //#
{$ENDIF}
end;
end;
destructor TCustomBCPanel.Destroy;
begin
FBackground.Free;
FBorder.Free;
FFontEx.Free;
FBGRA.Free;
FRounding.Free;
inherited Destroy;
end;
procedure TCustomBCPanel.UpdateControl;
begin
Render;
inherited UpdateControl; // invalidate
end;
{$IFDEF FPC}
procedure TCustomBCPanel.SaveToFile(AFileName: string);
var
AStream: TMemoryStream;
begin
AStream := TMemoryStream.Create;
try
WriteComponentAsTextToStream(AStream, Self);
AStream.SaveToFile(AFileName);
finally
AStream.Free;
end;
end;
procedure TCustomBCPanel.LoadFromFile(AFileName: string);
var
AStream: TMemoryStream;
begin
AStream := TMemoryStream.Create;
try
AStream.LoadFromFile(AFileName);
ReadComponentFromTextStream(AStream, TComponent(Self), OnFindClass);
finally
AStream.Free;
end;
end;
{$ENDIF}
procedure TCustomBCPanel.OnFindClass(Reader: TReader; const AClassName: string;
var ComponentClass: TComponentClass);
begin
if CompareText(AClassName, 'TBCPanel') = 0 then
ComponentClass := TBCPanel;
end;
end.