-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTFlatSpinEditUnit.pas
605 lines (549 loc) · 16 KB
/
TFlatSpinEditUnit.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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
unit TFlatSpinEditUnit;
interface
{$I DFS.inc}
uses Windows, Classes, Controls, Messages, SysUtils, FlatUtilitys, TFlatEditUnit, TFlatSpinButtonUnit;
type
TFlatSpinEditInteger = class(TCustomFlatEdit)
private
FMinValue: LongInt;
FMaxValue: LongInt;
FIncrement: LongInt;
FButton: TSpinButton;
FEditorEnabled: Boolean;
function GetMinHeight: Integer;
function GetValue: LongInt;
function CheckValue (NewValue: LongInt): LongInt;
procedure SetValue (NewValue: LongInt);
procedure SetEditRect;
procedure WMSize (var Message: TWMSize); message WM_SIZE;
procedure CMEnter (var Message: TCMGotFocus); message CM_ENTER;
procedure CMExit (var Message: TCMExit); message CM_EXIT;
procedure WMPaste (var Message: TWMPaste); message WM_PASTE;
procedure WMCut (var Message: TWMCut); message WM_CUT;
protected
function IsValidChar (Key: Char): Boolean; virtual;
procedure UpClick (Sender: TObject); virtual;
procedure DownClick (Sender: TObject); virtual;
procedure KeyDown (var Key: Word; Shift: TShiftState); override;
procedure KeyPress (var Key: Char); override;
procedure CreateParams (var Params: TCreateParams); override;
procedure Loaded; override;
procedure CreateWnd; override;
public
constructor Create (AOwner: TComponent); override;
destructor Destroy; override;
property Button: TSpinButton read FButton;
published
property ColorFocused;
property ColorBorder;
property ColorFlat;
property AdvColorFocused;
property AdvColorBorder;
property UseAdvColors;
property AutoSelect;
property AutoSize;
property DragCursor;
property DragMode;
property EditorEnabled: Boolean read FEditorEnabled write FEditorEnabled default True;
property Enabled;
property Font;
property Increment: LongInt read FIncrement write FIncrement default 1;
property MaxValue: LongInt read FMaxValue write FMaxValue;
property MinValue: LongInt read FMinValue write FMinValue;
property ParentColor;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ShowHint;
property TabOrder;
property TabStop;
property Value: LongInt read GetValue write SetValue;
property Visible;
property OnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnStartDrag;
{$IFDEF DFS_COMPILER_4_UP}
property Anchors;
property BiDiMode;
property Constraints;
property DragKind;
property ParentBiDiMode;
property OnEndDock;
property OnStartDock;
{$ENDIF}
end;
TFlatSpinEditFloat = class(TCustomFlatEdit)
private
FPrecision, FDigits: Integer;
FFloatFormat: TFloatFormat;
FMinValue: Extended;
FMaxValue: Extended;
FIncrement: Extended;
FButton: TSpinButton;
FEditorEnabled: Boolean;
function GetMinHeight: Integer;
function GetValue: Extended;
function CheckValue (Value: Extended): Extended;
procedure SetValue (Value: Extended);
procedure SetPrecision (Value: Integer);
procedure SetDigits (Value: Integer);
procedure SetFloatFormat (Value: TFloatFormat);
procedure SetEditRect;
procedure WMSize (var Message: TWMSize); message WM_SIZE;
procedure CMEnter (var Message: TCMGotFocus); message CM_ENTER;
procedure CMExit (var Message: TCMExit); message CM_EXIT;
procedure WMPaste (var Message: TWMPaste); message WM_PASTE;
procedure WMCut (var Message: TWMCut); message WM_CUT;
protected
function IsValidChar (Key: Char): Boolean; virtual;
procedure UpClick (Sender: TObject); virtual;
procedure DownClick (Sender: TObject); virtual;
procedure KeyDown (var Key: Word; Shift: TShiftState); override;
procedure KeyPress (var Key: Char); override;
procedure CreateParams (var Params: TCreateParams); override;
procedure Loaded; override;
procedure CreateWnd; override;
public
constructor Create (AOwner: TComponent); override;
destructor Destroy; override;
property Button: TSpinButton read FButton;
published
property ColorFocused;
property ColorBorder;
property ColorFlat;
property AdvColorFocused;
property AdvColorBorder;
property UseAdvColors;
property AutoSelect;
property AutoSize;
property DragCursor;
property DragMode;
property Digits: Integer read FDigits write SetDigits;
property Precision: Integer read FPrecision write SetPrecision;
property FloatFormat: TFloatFormat read FFloatFormat write SetFloatFormat;
property EditorEnabled: Boolean read FEditorEnabled write FEditorEnabled default True;
property Enabled;
property Font;
property Increment: Extended read FIncrement write FIncrement;
property MaxValue: Extended read FMaxValue write FMaxValue;
property MinValue: Extended read FMinValue write FMinValue;
property ParentColor;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ReadOnly;
property ShowHint;
property TabOrder;
property TabStop;
property Value: Extended read GetValue write SetValue;
property Visible;
property OnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnStartDrag;
{$IFDEF DFS_COMPILER_4_UP}
property Anchors;
property BiDiMode;
property Constraints;
property DragKind;
property ParentBiDiMode;
property OnEndDock;
property OnStartDock;
{$ENDIF}
end;
implementation
{ TFlatSpinEditInteger }
constructor TFlatSpinEditInteger.Create (AOwner: TComponent);
begin
inherited Create(AOwner);
FButton := TSpinButton.Create (Self);
FButton.Parent := Self;
FButton.Width := 22;
FButton.Height := 10;
FButton.Visible := True;
FButton.FocusControl := Self;
FButton.OnUpClick := UpClick;
FButton.OnDownClick := DownClick;
Value := 0;
ControlStyle := ControlStyle - [csSetCaption];
FIncrement := 1;
FEditorEnabled := True;
end;
destructor TFlatSpinEditInteger.Destroy;
begin
FButton := nil;
inherited Destroy;
end;
procedure TFlatSpinEditInteger.KeyDown (var Key: Word; Shift: TShiftState);
begin
case Key of
VK_UP:
UpClick(Self);
VK_DOWN:
DownClick(Self);
end;
inherited KeyDown(Key, Shift);
end;
procedure TFlatSpinEditInteger.KeyPress (var Key: Char);
begin
if not IsValidChar(Key) then
begin
Key := #0;
MessageBeep(0)
end;
if Key <> #0 then
inherited KeyPress(Key);
end;
function TFlatSpinEditInteger.IsValidChar (Key: Char): Boolean;
begin
Result := (Key in [DecimalSeparator, '+', '-', '0'..'9']) or ((Key < #32) and (Key <> Chr(VK_RETURN)));
if not FEditorEnabled and Result and ((Key >= #32) or (Key = Char(VK_BACK)) or (Key = Char(VK_DELETE))) then
Result := False;
end;
procedure TFlatSpinEditInteger.CreateParams (var Params: TCreateParams);
begin
inherited CreateParams(Params);
Params.Style := Params.Style or ES_MULTILINE or WS_CLIPCHILDREN;
end;
procedure TFlatSpinEditInteger.SetEditRect;
var
Loc: TRect;
begin
SendMessage(Handle, EM_GETRECT, 0, LongInt(@Loc));
Loc := Rect(0, 0, ClientWidth - FButton.Width - 3, ClientHeight);
SendMessage(Handle, EM_SETRECTNP, 0, LongInt(@Loc));
SendMessage(Handle, EM_GETRECT, 0, LongInt(@Loc));
end;
procedure TFlatSpinEditInteger.WMSize (var Message: TWMSize);
var
MinHeight: Integer;
begin
inherited;
MinHeight := GetMinHeight;
{ text edit bug: if size to less than minheight, then edit ctrl does
not display the text }
if Height < MinHeight then
Height := MinHeight
else
if FButton <> nil then
begin
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
SetEditRect;
end;
end;
function TFlatSpinEditInteger.GetMinHeight: Integer;
var
DC: HDC;
SaveFont: HFont;
SysMetrics, Metrics: TTextMetric;
begin
DC := GetDC(0);
GetTextMetrics(DC, SysMetrics);
SaveFont := SelectObject(DC, Font.Handle);
GetTextMetrics(DC, Metrics);
SelectObject(DC, SaveFont);
ReleaseDC(0, DC);
Result := Metrics.tmHeight + 7;
end;
procedure TFlatSpinEditInteger.UpClick (Sender: TObject);
begin
if ReadOnly then
MessageBeep(0)
else
Value := GetValue + FIncrement;
end;
procedure TFlatSpinEditInteger.DownClick (Sender: TObject);
begin
if ReadOnly then
MessageBeep(0)
else
Value := GetValue - FIncrement;
end;
procedure TFlatSpinEditInteger.WMPaste (var Message: TWMPaste);
begin
if not FEditorEnabled or ReadOnly then
Exit;
inherited;
end;
procedure TFlatSpinEditInteger.WMCut (var Message: TWMPaste);
begin
if not FEditorEnabled or ReadOnly then
Exit;
inherited;
end;
procedure TFlatSpinEditInteger.CMExit (var Message: TCMExit);
begin
inherited;
if CheckValue(Value) <> Value then
SetValue(Value);
end;
function TFlatSpinEditInteger.GetValue: LongInt;
begin
try
Result := StrToInt(Text);
except
Result := FMinValue;
end;
end;
procedure TFlatSpinEditInteger.SetValue (NewValue: LongInt);
begin
Text := IntToStr(CheckValue(NewValue));
end;
function TFlatSpinEditInteger.CheckValue (NewValue: LongInt): LongInt;
begin
Result := NewValue;
if (FMaxValue <> FMinValue) then
begin
if NewValue < FMinValue then
Result := FMinValue
else
if NewValue > FMaxValue then
Result := FMaxValue;
end;
end;
procedure TFlatSpinEditInteger.CMEnter (var Message: TCMGotFocus);
begin
if AutoSelect and not (csLButtonDown in ControlState) then
SelectAll;
inherited;
end;
procedure TFlatSpinEditInteger.Loaded;
begin
SetEditRect;
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
inherited;
end;
procedure TFlatSpinEditInteger.CreateWnd;
begin
inherited;
SetEditRect;
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
end;
{ TFlatSpinEditFloat }
constructor TFlatSpinEditFloat.Create (AOwner: TComponent);
begin
inherited Create(AOwner);
FButton := TSpinButton.Create (Self);
FButton.Parent := Self;
FButton.Width := 22;
FButton.Height := 10;
FButton.Visible := True;
FButton.FocusControl := Self;
FButton.OnUpClick := UpClick;
FButton.OnDownClick := DownClick;
Text := '0' + DecimalSeparator + '00';
ControlStyle := ControlStyle - [csSetCaption];
FIncrement := 0.5;
FEditorEnabled := True;
FDigits := 2;
FPrecision := 9;
end;
destructor TFlatSpinEditFloat.Destroy;
begin
FButton := nil;
inherited Destroy;
end;
procedure TFlatSpinEditFloat.KeyDown(var Key: Word; Shift: TShiftState);
begin
case Key of
VK_UP:
UpClick(Self);
VK_DOWN:
DownClick(Self);
end;
inherited KeyDown(Key, Shift);
end;
procedure TFlatSpinEditFloat.KeyPress(var Key: Char);
begin
if not IsValidChar(Key) then
begin
Key := #0;
MessageBeep(0)
end;
if Key <> #0 then
inherited KeyPress(Key);
end;
function TFlatSpinEditFloat.IsValidChar(Key: Char): Boolean;
begin
Result := (Key in [DecimalSeparator, '+', '-', '0'..'9']) or ((Key < #32) and (Key <> Chr(VK_RETURN)));
if not FEditorEnabled and Result and ((Key >= #32) or (Key = Char(VK_BACK)) or (Key = Char(VK_DELETE))) then
Result := False;
end;
procedure TFlatSpinEditFloat.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
Params.Style := Params.Style or ES_MULTILINE or WS_CLIPCHILDREN;
end;
procedure TFlatSpinEditFloat.SetEditRect;
var
Loc: TRect;
begin
SendMessage(Handle, EM_GETRECT, 0, LongInt(@Loc));
Loc := Rect(0, 0, ClientWidth - FButton.Width - 3, ClientHeight);
SendMessage(Handle, EM_SETRECTNP, 0, LongInt(@Loc));
SendMessage(Handle, EM_GETRECT, 0, LongInt(@Loc));
end;
procedure TFlatSpinEditFloat.WMSize(var Message: TWMSize);
var
MinHeight: Integer;
begin
inherited;
MinHeight := GetMinHeight;
{ text edit bug: if size to less than minheight, then edit ctrl does
not display the text }
if Height < MinHeight then
Height := MinHeight
else
if FButton <> nil then
begin
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
SetEditRect;
end;
end;
function TFlatSpinEditFloat.GetMinHeight: Integer;
var
DC: HDC;
SaveFont: HFont;
SysMetrics, Metrics: TTextMetric;
begin
DC := GetDC(0);
GetTextMetrics(DC, SysMetrics);
SaveFont := SelectObject(DC, Font.Handle);
GetTextMetrics(DC, Metrics);
SelectObject(DC, SaveFont);
ReleaseDC(0, DC);
Result := Metrics.tmHeight + 7;
end;
procedure TFlatSpinEditFloat.UpClick(Sender: TObject);
begin
if ReadOnly then
MessageBeep(0)
else
Value := Value + FIncrement;
end;
procedure TFlatSpinEditFloat.DownClick(Sender: TObject);
begin
if ReadOnly then
MessageBeep(0)
else
Value := Value - FIncrement;
end;
procedure TFlatSpinEditFloat.WMPaste(var Message: TWMPaste);
begin
if not FEditorEnabled or ReadOnly then
Exit;
inherited;
end;
procedure TFlatSpinEditFloat.WMCut(var Message: TWMPaste);
begin
if not FEditorEnabled or ReadOnly then
Exit;
inherited;
end;
procedure TFlatSpinEditFloat.CMExit(var Message: TCMExit);
begin
inherited;
if CheckValue(Value) <> Value then
SetValue(Value);
end;
function TFlatSpinEditFloat.GetValue: Extended;
var
s: string;
begin
try
s := Text;
while Pos(CurrencyString, S) > 0 do
Delete(S, Pos(CurrencyString, S), Length(CurrencyString));
while Pos(' ', S) > 0 do
Delete(S, Pos(' ', S), 1);
while Pos(ThousandSeparator, S) > 0 do
Delete(S, Pos(ThousandSeparator, S), Length(ThousandSeparator));
//Delete negative numbers in format Currency
if Pos('(', S) > 0 then
begin
Delete(S, Pos('(', S), 1);
if Pos(')', S) > 0 then
Delete(S, Pos(')', S), 1);
Result := StrToFloat(S)*-1;
end
else
Result := StrToFloat(S);
except
Result := FMinValue;
end;
end;
procedure TFlatSpinEditFloat.SetFloatFormat(Value: TFloatFormat);
begin
FFloatFormat := Value;
Text := FloatToStrF(CheckValue(GetValue), FloatFormat, Precision, Digits);
end;
procedure TFlatSpinEditFloat.SetDigits(Value: Integer);
begin
FDigits := Value;
Text := FloatToStrF(CheckValue(GetValue), FloatFormat, Precision, Digits);
end;
procedure TFlatSpinEditFloat.SetPrecision(Value: Integer);
begin
FPrecision := Value;
Text := FloatToStrF(CheckValue(GetValue), FloatFormat, Precision, Digits);
end;
procedure TFlatSpinEditFloat.SetValue(Value: Extended);
begin
Text := FloatToStrF(CheckValue(Value), FloatFormat, Precision, Digits);
end;
function TFlatSpinEditFloat.CheckValue(Value: Extended): Extended;
begin
Result := Value;
if (FMaxValue <> FMinValue) then
begin
if Value < FMinValue then
Result := FMinValue
else
if Value > FMaxValue then
Result := FMaxValue;
end;
end;
procedure TFlatSpinEditFloat.CMEnter(var Message: TCMGotFocus);
begin
if AutoSelect and not (csLButtonDown in ControlState) then
SelectAll;
inherited;
end;
procedure TFlatSpinEditFloat.Loaded;
begin
SetEditRect;
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
inherited;
end;
procedure TFlatSpinEditFloat.CreateWnd;
begin
inherited;
SetEditRect;
FButton.SetBounds(Width - FButton.Width - 5, 0, FButton.Width, Height - 6);
end;
end.