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
|
{
Proof of concept one handle per widget GUI.
Graeme Geldenhuys
}
unit gui2Base;
{$mode objfpc}{$H+}
{$Define DEBUG}
interface
uses
Classes
,fpgfx
,GFXBase
;
type
TWidgetStyle = set of (
wsCaptureMouse,
wsClickable,
wsOpaque
);
TWidgetState = set of (
wsEnabled,
wsIsVisible,
wsSizeIsForced,
wsHasFocus,
wsMouseInside,
wsClicked
);
// The following flags are used for styles
TButtonFlags = set of (
btnIsEmbedded,
btnIsDefault,
btnIsPressed,
btnIsSelected,
btnHasFocus
);
{ TWidget }
TWidget = class(TFWindow)
private
FColor: TGfxColor;
FOnClick: TNotifyEvent;
procedure EvOnMouseReleased(Sender: TObject; AButton: TMouseButton; AShift: TShiftState; const AMousePos: TPoint); virtual;
procedure EvOnMousePressed(Sender: TObject; AButton: TMouseButton; AShift: TShiftState; const AMousePos: TPoint); virtual;
procedure EvOnMouseLeave(Sender: TObject); virtual;
procedure SetColor(const AValue: TGfxColor);
protected
FWidgetStyle: TWidgetStyle;
FWidgetState: TWidgetState;
procedure Paint; virtual;
property OnClick: TNotifyEvent read FOnClick write FOnClick;
property Color: TGfxColor read FColor write SetColor;
public
constructor Create(AParent: TFCustomWindow; AWindowOptions: TFWindowOptions); override;
constructor Create(AParent: TFCustomWindow); overload;
destructor Destroy; override;
procedure ProcessEvent(AEvent: TFEvent); override;
procedure SetFocus;
end;
{ TForm }
TForm = class(TWidget)
public
constructor Create(AParent: TFCustomWindow; AWindowOptions: TFWindowOptions); override;
constructor Create; virtual; reintroduce;
property Color;
end;
{ TPopupWindow }
{$Note TPopupWindow is still work in progess. }
TPopupWindow = class(TForm)
public
constructor Create; override;
end;
{ TButton }
TButton = class(TWidget)
private
FCaption: string;
procedure SetCaption(const AValue: string);
protected
procedure Paint; override;
public
constructor Create(AParent: TFCustomWindow; APosition: TPoint); overload; reintroduce;
property Caption: string read FCaption write SetCaption;
published
property OnClick;
end;
{ TLabel }
TLabel = class(TWidget)
private
FCaption: string;
procedure SetCaption(const AValue: string);
protected
procedure Paint; override;
public
constructor Create(AParent: TFCustomWindow; APosition: TPoint); overload; reintroduce;
property Caption: string read FCaption write SetCaption;
end;
{ TCustomEdit }
TCustomEdit = class(TWidget)
private
FText: string;
procedure SetText(const AValue: string);
protected
procedure Paint; override;
public
constructor Create(AParent: TFCustomWindow; APosition: TPoint); overload; reintroduce;
property Text: string read FText write SetText;
end;
{ TEdit }
TEdit = class(TCustomEdit)
public
property Text;
end;
implementation
const
clDkWhite: TGfxColor = (Red: $e000; Green: $e000; Blue: $e000; Alpha: 0);
cl3DShadow: TGfxColor = (Red: $8000; Green: $8000; Blue: $8000; Alpha: 0);
cl3DDkShadow: TGfxColor = (Red: $0000; Green: $0000; Blue: $0000; Alpha: 0);
cl3DHighlight: TGfxColor = (Red: $FF00; Green: $FF00; Blue: $FF00; Alpha: 0);
cl3DFace: TGfxColor = (Red: $c000; Green: $c000; Blue: $c000; Alpha: 0);
clWindow: TGfxColor = (Red: $FF00; Green: $FF00; Blue: $FF00; Alpha: 0);
cl3DLight: TGfxColor = (Red: $e000; Green: $e000; Blue: $e000; Alpha: 0);
// Helper functions, that will actually be in a style class.
procedure Draw3DFrame(Canvas: TFCanvas; const ARect: TRect; Color1, Color2, Color3, Color4: TGfxColor);
begin
with ARect do
begin
Canvas.SetColor(Color1);
Canvas.DrawLine(Point(Left, Bottom - 2), TopLeft);
Canvas.DrawLine(TopLeft, Point(Right - 1, Top));
Canvas.SetColor(Color2);
Canvas.DrawLine(Point(Left + 1, Bottom - 3), Point(Left + 1, Top + 1));
Canvas.DrawLine(Point(Left + 1, Top + 1), Point(Right - 2, Top + 1));
Canvas.SetColor(Color3);
Canvas.DrawLine(Point(Left, Bottom - 1), Point(Right - 1, Bottom - 1));
Canvas.DrawLine(Point(Right - 1, Bottom - 1), Point(Right - 1, Top - 1));
Canvas.SetColor(Color4);
Canvas.DrawLine(Point(Left + 1, Bottom - 2), Point(Right - 2, Bottom - 2));
Canvas.DrawLine(Point(Right - 2, Bottom - 2), Point(Right - 2, Top));
end;
end;
procedure DrawEditBox(Canvas: TFCanvas; const ARect: TRect);
begin
Draw3DFrame(Canvas, ARect, cl3DShadow, cl3DDkShadow, cl3DHighlight, cl3DFace);
Canvas.SetColor(clWindow);
with ARect do
Canvas.FillRect(Rect(Left + 2, Top + 2, Right - 2, Bottom - 2));
end;
{ TWidget }
procedure TWidget.EvOnMouseReleased(Sender: TObject; AButton: TMouseButton;
AShift: TShiftState; const AMousePos: TPoint);
begin
{$IFDEF DEBUG} Writeln(ClassName + '.EvOnMouseReleased'); {$ENDIF}
if (wsClickable in FWidgetStyle) and (wsEnabled in FWidgetState) and
(AButton = mbLeft) then
begin
if wsClicked in FWidgetState then
begin
Exclude(FWidgetState, wsClicked);
Exclude(FWidgetState, wsHasFocus);
Paint;
if Assigned(OnClick) then
OnClick(self);
end;
end;
end;
procedure TWidget.EvOnMousePressed(Sender: TObject; AButton: TMouseButton;
AShift: TShiftState; const AMousePos: TPoint);
begin
{$IFDEF DEBUG} Writeln(ClassName + '.EvOnMousePressed'); {$ENDIF}
if (wsClickable in FWidgetStyle) and (wsEnabled in FWidgetState) and
(AButton = mbLeft) then
begin
Include(FWidgetState, wsClicked);
SetFocus;
Paint;
end;
end;
procedure TWidget.EvOnMouseLeave(Sender: TObject);
begin
// Exclude(FWidgetState, wsHasFocus);
end;
procedure TWidget.SetColor(const AValue: TGfxColor);
begin
if FColor = AValue then exit;
FColor := AValue;
Paint;
end;
procedure TWidget.Paint;
var
r: TRect;
begin
{$IFDEF DEBUG} Writeln(ClassName + '.Paint'); {$ENDIF}
Canvas.SetColor(FColor);
r.Left := 0;
r.Top := 0;
r.Right := Width;
r.Bottom := Height;
Canvas.FillRect(r);
end;
constructor TWidget.Create(AParent: TFCustomWindow;
AWindowOptions: TFWindowOptions);
begin
inherited Create(AParent, AWindowOptions);
FWidgetState := [wsEnabled];
FColor := colLtGray;
Title := ClassName;
// Assign some event handlers
OnMouseReleased := @EvOnMouseReleased;
OnMousePressed := @EvOnMousePressed;
OnMouseLeave := @EvOnMouseLeave;
end;
constructor TWidget.Create(AParent: TFCustomWindow);
begin
Create(AParent, [woChildWindow]);
end;
destructor TWidget.Destroy;
begin
OnMouseReleased := nil;
OnMousePressed := nil;
inherited Destroy;
end;
procedure TWidget.ProcessEvent(AEvent: TFEvent);
begin
inherited ProcessEvent(AEvent);
case AEvent.EventType of
etPaint:
begin
Paint;
end;
end; { case }
end;
procedure TWidget.SetFocus;
begin
Include(FWidgetState, wsHasFocus);
// FindForm.FocusedWidget := Self;
end;
{ TForm }
constructor TForm.Create(AParent: TFCustomWindow;
AWindowOptions: TFWindowOptions);
begin
inherited Create(AParent, AWindowOptions);
end;
constructor TForm.Create;
begin
inherited Create(nil, [woWindow]);
end;
{ TButton }
procedure TButton.SetCaption(const AValue: string);
begin
if FCaption=AValue then exit;
FCaption:=AValue;
Paint;
end;
procedure TButton.Paint;
var
Pt: TPoint;
lFlags: TButtonFlags;
r: TRect;
begin
inherited Paint;
{$IFDEF DEBUG} Writeln(' - Painting ' + Caption); {$ENDIF}
lFlags := [];
r := Rect(0, 0, Width, Height);
if (wsClicked in FWidgetState) then
Include(lFlags, btnIsPressed);
if (wsHasFocus in FWidgetState) {and not Embedded} then
begin
Include(lFlags, btnIsSelected);
end;
if btnIsSelected in lFlags then
begin
Canvas.SetColor(cl3DDkShadow);
Canvas.DrawRect(r);
Inc(r.Left);
Inc(r.Top);
Dec(r.Right);
Dec(r.Bottom);
end;
if btnIsPressed in lFlags then
begin
Canvas.SetColor(cl3DShadow);
Canvas.DrawRect(r);
Inc(r.Left);
Inc(r.Top);
Dec(r.Right);
Dec(r.Bottom);
end
else
Draw3DFrame(TFCanvas(Canvas), r, cl3DHighlight, cl3DLight, cl3DDkShadow, cl3DShadow);
Canvas.SetColor(colBlack);
Pt.x := (Width - Canvas.TextWidth(FCaption)) div 2;
Pt.y := ((Height - Canvas.FontCellHeight) div 2) + 1;
if (wsClicked in FWidgetState) {and (wsMouseInside in FWidgetState)} then
Pt := Pt + Point(1, 1);
Canvas.TextOut(Pt, FCaption);
end;
constructor TButton.Create(AParent: TFCustomWindow; APosition: TPoint);
begin
inherited Create(AParent);
Include(FWidgetStyle, wsClickable);
SetPosition(APosition);
SetClientSize(Size(75, 25));
end;
{ TLabel }
procedure TLabel.SetCaption(const AValue: string);
var
w, h: integer;
begin
if FCaption=AValue then exit;
FCaption := AValue;
w := Canvas.TextWidth(FCaption) + 6;
h := Canvas.FontCellHeight + 4;
SetClientSize(Size(w, h));
Paint;
end;
procedure TLabel.Paint;
begin
// Color := FParent.Canvas.GetColor;
// inherited Paint;
Canvas.SetColor(colWhite);
Canvas.FillRect(Rect(0,0,Width,Height));
Canvas.SetColor(colBlack);
Canvas.TextOut(Point(0, 0), FCaption);
end;
constructor TLabel.Create(AParent: TFCustomWindow; APosition: TPoint);
begin
inherited Create(AParent);
SetPosition(APosition);
SetClientSize(Size(75, 22));
end;
{ TPopupWindow }
constructor TPopupWindow.Create;
begin
// inherited Create(nil, [woPopup]);
inherited Create(nil, [woWindow]);
end;
{ TCustomEdit }
procedure TCustomEdit.SetText(const AValue: string);
var
w: integer;
begin
if FText=AValue then exit;
FText:=AValue;
w := Canvas.TextWidth(FText) + 6;
SetClientSize(Size(w, Height));
Paint;
end;
procedure TCustomEdit.Paint;
begin
inherited Paint;
DrawEditBox(TFCanvas(Canvas), Rect(0, 0, Width, Height));
Canvas.SetColor(colBlack);
if FText <> '' then
Canvas.TextOut(Point(2, 2), FText);
end;
constructor TCustomEdit.Create(AParent: TFCustomWindow; APosition: TPoint);
begin
inherited Create(AParent);
// OnMouseEntered := @EvMouseEntered
SetPosition(APosition);
SetClientSize(Size(100, 25));
end;
end.
|