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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
|
{
fpGUI - Free Pascal GUI Toolkit
Copyright (C) 2006 - 2008 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:
A calendar component. Soon it would be possible to use it in a
popup windows like Calender Combobox, or directly in a Form.
}
unit fpg_popupcalendar;
{$mode objfpc}{$H+}
{.$Define DEBUG} // while developing the component
{
*****************************************************************
********** This is still under heavy development! ***********
*****************************************************************
}
{ todo: Support highlighting special days. }
{ todo: Support custom colors. }
{ todo: Create a TfpgDateTimeEdit component with options for Date, Time or Date & Time. }
{ todo: Changing months and checking min/max limits takes into account the
original date, not the selected day in the grid. It should use the
selected day in grid. }
{ todo: Paint days out of min/max range in grey. }
interface
uses
SysUtils,
Classes,
fpg_base,
fpg_main,
fpg_widget,
fpg_popupwindow,
fpg_edit,
fpg_button,
fpg_combobox,
fpg_basegrid,
fpg_grid,
fpg_dialogs;
type
TfpgOnDateSetEvent = procedure(Sender: TObject; const ADate: TDateTime) of object;
TfpgPopupCalendar = class(TfpgPopupWindow)
private
{@VFD_HEAD_BEGIN: fpgPopupCalendar}
edtYear: TfpgEdit;
btnYearUp: TfpgButton;
btnYearDown: TfpgButton;
edtMonth: TfpgEdit;
btnMonthUp: TfpgButton;
btnMonthDown: TfpgButton;
btnToday: TfpgButton;
grdName1: TfpgStringGrid;
{@VFD_HEAD_END: fpgPopupCalendar}
FMonthOffset: integer;
FDate: TDateTime;
FMaxDate: TDateTime;
FMinDate: TDateTime;
FWeekStartDay: integer;
FCallerWidget: TfpgWidget;
FOnValueSet: TfpgOnDateSetEvent;
FCloseOnSelect: boolean;
FThisMonthDays: array[0..6,0..5] of boolean;
FWeeklyHoliday: integer;
FDayColor: TfpgColor;
FHolidayColor: TfpgColor;
FSelectedColor: TfpgColor;
function GetDateElement(Index: integer): Word;
procedure PopulateDays;
procedure CalculateMonthOffset;
function CalculateCellDay(const ACol, ARow: Integer): Integer;
procedure SetDateElement(Index: integer; const AValue: Word);
procedure SetDateValue(const AValue: TDateTime);
procedure SetMaxDate(const AValue: TDateTime);
procedure SetMinDate(const AValue: TDateTime);
procedure SetWeekStartDay(const AValue: integer);
procedure SetWeeklyHoliday(const AValue: integer);
procedure SetDayColor(const AValue: TfpgColor);
procedure SetHolidayColor(const AValue: TfpgColor);
procedure SetSelectedColor(const AValue: TfpgColor);
procedure SetCloseOnSelect(const AValue: boolean);
procedure UpdateCalendar;
procedure btnYearUpClicked(Sender: TObject);
procedure btnYearDownClicked(Sender: TObject);
procedure btnMonthUpClicked(Sender: TObject);
procedure btnMonthDownClicked(Sender: TObject);
procedure btnTodayClicked(Sender: TObject);
procedure grdName1DoubleClick(Sender: TObject; AButton: TMouseButton; AShift: TShiftState; const AMousePos: TPoint);
procedure grdName1KeyPress(Sender: TObject; var KeyCode: word; var ShiftState: TShiftState; var Consumed: boolean);
procedure grdName1DrawCell(Sender: TObject; const ARow, ACol: Integer; const ARect: TfpgRect; const AFlags: TfpgGridDrawState; var ADefaultDrawing: boolean);
procedure TearDown;
protected
FntNorm, FntBold: TfpgFont;
FOrigFocusWin: TfpgWidget;
procedure HandlePaint; override;
procedure HandleKeyPress(var keycode: word; var shiftstate: TShiftState; var consumed: boolean); override;
procedure HandleShow; override;
procedure HandleHide; override;
property CallerWidget: TfpgWidget read FCallerWidget write FCallerWidget;
public
constructor Create(AOwner: TComponent; AOrigFocusWin: TfpgWidget); reintroduce;
destructor Destroy; override;
procedure AfterCreate;
property CloseOnSelect: boolean read FCloseOnSelect write SetCloseOnSelect default True;
property Day: Word index 1 read GetDateElement write SetDateElement;
property Month: Word index 2 read GetDateElement write SetDateElement;
property Year: Word index 3 read GetDateElement write SetDateElement;
property OnValueSet: TfpgOnDateSetEvent read FOnValueSet write FOnValueSet;
published
property DateValue: TDateTime read FDate write SetDateValue;
property MinDate: TDateTime read FMinDate write SetMinDate;
property MaxDate: TDateTime read FMaxDate write SetMaxDate;
property WeekStartDay: integer read FWeekStartDay write SetWeekStartDay default 0;
property WeeklyHoliday: integer read FWeeklyHoliday write SetWeeklyHoliday default -1;
property DayColor: TfpgColor read FDayColor write SetDayColor;
property HolidayColor: TfpgColor read FHolidayColor write SetHolidayColor;
property SelectedColor: TfpgColor read FSelectedColor write SetSelectedColor;
end;
TfpgCalendarCombo = class(TfpgBaseStaticCombo)
private
FDate: TDateTime;
FDateFormat: string;
FMaxDate: TDateTime;
FMinDate: TDateTime;
FWeekStartDay: integer;
FWeeklyHoliday: integer;
FDayColor: TfpgColor;
FHolidayColor: TfpgColor;
FSelectedColor: TfpgColor;
FCloseOnSelect: boolean;
procedure InternalOnValueSet(Sender: TObject; const ADate: TDateTime);
procedure SetDateFormat(const AValue: string);
procedure SetDateValue(const AValue: TDateTime);
procedure SetMaxDate(const AValue: TDateTime);
procedure SetMinDate(const AValue: TDateTime);
procedure SetWeekStartDay(const AValue: integer);
procedure SetWeeklyHoliday(const AValue: integer);
procedure SetDayColor(const AValue: TfpgColor);
procedure SetHolidayColor(const AValue: TfpgColor);
procedure SetSelectedColor(const AValue: TfpgColor);
procedure SetText(const AValue: string); override;
function GetText: string; override;
procedure SetCloseOnSelect(const AValue: boolean);
protected
function HasText: boolean; override;
procedure DoDropDown; override;
public
constructor Create(AOwner: TComponent); override;
published
property BackgroundColor;
property DateFormat: string read FDateFormat write SetDateFormat;
property DateValue: TDateTime read FDate write SetDateValue;
property FontDesc;
property MinDate: TDateTime read FMinDate write SetMinDate;
property MaxDate: TDateTime read FMaxDate write SetMaxDate;
property WeekStartDay: integer read FWeekStartDay write SetWeekStartDay default 0;
property WeeklyHoliday: integer read FWeeklyHoliday write SetWeeklyHoliday default -1;
property DayColor: TfpgColor read FDayColor write SetDayColor;
property HolidayColor: TfpgColor read FHolidayColor write SetHolidayColor;
property SelectedColor: TfpgColor read FSelectedColor write SetSelectedColor;
property ParentShowHint;
property ShowHint;
{ Clicking on calendar Today button will close the popup calendar by default }
property CloseOnSelect: boolean read FCloseOnSelect write SetCloseOnSelect default True;
property TabOrder;
property OnChange;
property OnCloseUp;
property OnDropDown;
property OnEnter;
property OnExit;
end;
{@VFD_NEWFORM_DECL}
implementation
uses
fpg_scrollbar,
fpg_constants;
{@VFD_NEWFORM_IMPL}
procedure TfpgPopupCalendar.PopulateDays;
var
r, c: integer;
lCellDay: Integer;
begin
grdName1.BeginUpdate;
for r := -1 to 5 do
for c := 0 to 6 do
begin
if r = -1 then
grdName1.ColumnTitle[c] := ShortDayNames[Succ((c+FWeekStartDay) mod 7)] // ShortDayNames is 1-based indexing
else
begin
lCellDay := CalculateCellDay(c, r);
grdName1.Cells[c, r] := IntToStr(lCellDay);
end;
end;
grdName1.EndUpdate;
end;
procedure TfpgPopupCalendar.grdName1DoubleClick(Sender: TObject;
AButton: TMouseButton; AShift: TShiftState; const AMousePos: TPoint);
begin
TearDown;
end;
procedure TfpgPopupCalendar.grdName1KeyPress(Sender: TObject;
var KeyCode: word; var ShiftState: TShiftState; var Consumed: boolean);
begin
// Pass the grid event on to the TfpgPopupCalender instance.
HandleKeyPress(KeyCode, ShiftState, consumed);
Consumed := True;
end;
procedure TfpgPopupCalendar.grdName1DrawCell(Sender: TObject; const ARow, ACol: Integer; const ARect: TfpgRect;
const AFlags: TfpgGridDrawState; var ADefaultDrawing: boolean);
begin
with grdName1 do
begin
if FThisMonthDays[ACol,ARow] then
if (ACol = FocusCol) and (ARow = FocusRow) then
Canvas.SetTextColor(FSelectedColor)
else
Canvas.SetTextColor(FDayColor)
else
if (ACol = FocusCol) and (ARow = FocusRow) then
Canvas.SetTextColor(FSelectedColor)
else
Canvas.SetTextColor(clShadow1);
if FWeeklyHoliday >= FWeekStartDay then
if ACol = FWeeklyHoliday - FWeekStartDay then
begin
Canvas.Font := FntBold;
Canvas.SetTextColor(FHolidayColor);
end
else
Canvas.Font := FntNorm
else
if (FWeeklyHoliday > -1) and (ACol = FWeeklyHoliday - FWeekStartDay + 7) then
begin
Canvas.Font := FntBold;
Canvas.SetTextColor(FHolidayColor);
end
else
Canvas.Font := FntNorm;
end;
end;
procedure TfpgPopupCalendar.TearDown;
var
lD: Word;
s: string;
d: TDateTime;
begin
s := grdName1.Cells[grdName1.FocusCol, grdName1.FocusRow];
if s = '' then
Exit; //==>
lD := StrToInt(s);
d := EncodeDate(Year, Month, lD);
if (d >= FMinDate) and (d <= FMaxDate) then
begin
DateValue := d;
if Assigned(OnValueSet) then
OnValueSet(self, DateValue);
{$IFDEF DEBUG}
writeln('Selected date: ', FormatDateTime('yyyy-mm-dd', DateValue));
{$ENDIF}
if CloseOnSelect then
Close;
end;
end;
function TfpgPopupCalendar.GetDateElement(Index: integer): Word;
var
lD, lM, lY: Word;
begin
DecodeDate(FDate, lY, lM, lD);
case Index of
1: Result := lD;
2: Result := lM;
3: Result := lY;
end;
end;
procedure TfpgPopupCalendar.CalculateMonthOffset;
var
lD, lM, lY: Word;
lTheFirst: TDateTime;
begin
DecodeDate(FDate, lY, lM, lD);
lTheFirst := EncodeDate(lY, lM, 1);
FMonthOffset := 2 - DayOfWeek(lTheFirst);
end;
function TfpgPopupCalendar.CalculateCellDay(const ACol, ARow: Integer): Integer;
begin
if (FMonthOffset + FWeekStartDay) > 1 then
Result := FMonthOffset - 7 + FWeekStartDay + ACol + ARow * 7
else
Result := FMonthOffset + FWeekStartDay + ACol + ARow * 7;
if Result < 1 then
begin
if Month > 1 then
Result := MonthDays[IsLeapYear(Year), Pred(Month)] + Result
else
Result := 31 + Result;
FThisMonthDays[ACol,ARow] := False;
end
else
if Result > MonthDays[IsLeapYear(Year), Month] then
begin
Result := Result - MonthDays[IsLeapYear(Year), Month];
FThisMonthDays[ACol,ARow] := False;
end
else
FThisMonthDays[ACol,ARow] := True;
end;
procedure TfpgPopupCalendar.SetDateElement(Index: integer; const AValue: Word);
var
lD, lM, lY: Word;
lDate: TDateTime;
begin
if AValue > 0 then
begin
DecodeDate(FDate, lY, lM, lD);
case Index of
1: lD := AValue;
2: lM := AValue;
3: lY := AValue;
end;
try
lDate := EncodeDate(lY, lM, lD);
SetDateValue(lDate);
except
// do nothing! Not nice?
end;
end;
end;
procedure TfpgPopupCalendar.SetDateValue(const AValue: TDateTime);
begin
if FDate = AValue then
Exit; //==>
if (trunc(FDate) >= trunc(FMinDate)) then
{$IFDEF DEBUG}
writeln('Passed min test')
{$ENDIF}
else
exit;
if (FDate <= FMaxDate) then
{$IFDEF DEBUG}
writeln('Passed max test')
{$ENDIF}
else
exit;
{$IFDEF DEBUG} writeln('SetDateValue: ', FormatDateTime('yyyy-mm-dd', AValue)); {$ENDIF}
FDate := AValue;
UpdateCalendar;
end;
procedure TfpgPopupCalendar.SetMaxDate(const AValue: TDateTime);
begin
if FMaxDate = AValue then
Exit; //==>
FMaxDate := AValue;
// correct min/max values
if FMinDate > AValue then
FMinDate := IncMonth(AValue, -12); // one year less
if FDate > FMaxDate then
begin
FDate := FMaxDate;
UpdateCalendar;
end;
end;
procedure TfpgPopupCalendar.SetMinDate(const AValue: TDateTime);
begin
if FMinDate = AValue then
Exit; //==>
FMinDate := AValue;
// correct min/max values
if AValue > FMaxDate then
FMaxDate := IncMonth(AValue, 12); // one year more
if FDate < FMinDate then
begin
FDate := FMinDate;
UpdateCalendar;
end;
end;
procedure TfpgPopupCalendar.SetWeekStartDay(const AValue: integer);
begin
if FWeekStartDay <> AValue then
FWeekStartDay := AValue;
end;
procedure TfpgPopupCalendar.SetWeeklyHoliday(const AValue: integer);
begin
if FWeeklyHoliday <> AValue then
FWeeklyHoliday := AValue;
end;
procedure TfpgPopupCalendar.SetDayColor(const AValue: TfpgColor);
begin
if FDayColor <> AValue then
FDayColor := AValue;
end;
procedure TfpgPopupCalendar.SetHolidayColor(const AValue: TfpgColor);
begin
if FHolidayColor <> AValue then
FHolidayColor := AValue;
end;
procedure TfpgPopupCalendar.SetSelectedColor(const AValue: TfpgColor);
begin
if FSelectedColor <> AValue then
FSelectedColor := AValue;
end;
procedure TfpgPopupCalendar.SetCloseOnSelect(const AValue: boolean);
begin
if FCloseOnSelect = AValue then
Exit;
FCloseOnSelect := AValue;
end;
procedure TfpgPopupCalendar.UpdateCalendar;
var
lD, lM, lY: Word;
begin
try
grdName1.BeginUpdate;
if (FDate >= FMinDate) and (FDate <= FMaxDate) then
begin
CalculateMonthOffset;
PopulateDays;
edtYear.Text := IntToStr(Year);
edtMonth.Text := LongMonthNames[Month];
DecodeDate(FDate, lY, lM, lD);
grdName1.FocusCol := (lD - FMonthOffset - FWeekStartDay) mod 7;
grdName1.FocusRow := (lD - FMonthOffset - FWeekStartDay) div 7;
if (FMonthOffset + FWeekStartDay) > 1 then
grdName1.FocusRow := grdName1.FocusRow + 1;
// grdName1.Invalidate;
end;
finally
grdName1.EndUpdate;
end;
end;
procedure TfpgPopupCalendar.btnYearUpClicked(Sender: TObject);
var
d: TDateTime;
begin
d := IncMonth(FDate, 12);
if d <= FMaxDate then
DateValue := d;
end;
procedure TfpgPopupCalendar.btnYearDownClicked(Sender: TObject);
var
d: TDateTime;
begin
d := IncMonth(FDate, -12);
if d >= FMinDate then
DateValue := d;
end;
procedure TfpgPopupCalendar.btnMonthUpClicked(Sender: TObject);
var
d: TDateTime;
begin
d := IncMonth(FDate);
if d <= FMaxDate then
DateValue := d;
end;
procedure TfpgPopupCalendar.btnMonthDownClicked(Sender: TObject);
var
d: TDateTime;
begin
d := IncMonth(FDate, -1);
if d >= FMinDate then
DateValue := d;
end;
procedure TfpgPopupCalendar.btnTodayClicked(Sender: TObject);
begin
if Now >= FMinDate then
begin
DateValue := Now;
TearDown;
end;
end;
procedure TfpgPopupCalendar.HandlePaint;
begin
Canvas.BeginDraw;
inherited HandlePaint;
if PopupFrame then
Canvas.SetClipRect(fpgRect(1, 1, Width-2, Height-2));
Canvas.Clear(clWindowBackground);
Canvas.ClearClipRect;
Canvas.EndDraw;
end;
procedure TfpgPopupCalendar.HandleKeyPress(var keycode: word;
var shiftstate: TShiftState; var consumed: boolean);
begin
case keycode of
keyUp:
begin
if (ssCtrl in shiftstate) then
begin
btnYearUpClicked(nil); // Ctrl+Up Arrow
consumed := True;
end;
end;
keyDown:
begin
if (ssCtrl in shiftstate) then
begin
btnYearDownClicked(nil); // Ctrl+Down Arrow
consumed := True;
end;
end;
keyLeft:
begin
if (ssCtrl in shiftstate) then
begin
btnMonthDownClicked(nil); // Ctrl+Left Arrow
consumed := True;
end;
end;
keyRight:
begin
if (ssCtrl in shiftstate) then
begin
btnMonthUpClicked(nil); // Ctrl+Right Arrow
consumed := True;
end;
end;
keyPageUp:
begin
if (ssCtrl in shiftstate) then
btnYearUpClicked(nil) // Ctrl+PageUp
else
btnMonthUpClicked(nil); // PageUp
consumed := True;
end;
keyPageDown:
begin
if (ssCtrl in shiftstate) then
btnYearDownClicked(nil) // Ctrl+PageDown
else
btnMonthDownClicked(nil); // PageDown
consumed := True;
end;
end;
if not consumed then
begin
if keycode = keyEnter then
begin
consumed := True;
TearDown;
end
else if keycode = keyEscape then
begin
consumed := True;
Close;
end;
end;
if not consumed then
inherited HandleKeyPress(keycode, shiftstate, consumed);
end;
procedure TfpgPopupCalendar.HandleShow;
begin
inherited HandleShow;
grdName1.SetFocus;
{$IFDEF DEBUG}
writeln('Min: ', FormatDateTime('yyyy-mm-dd', MinDate),
' Max: ', FormatDateTime('yyyy-mm-dd', MaxDate));
{$ENDIF}
end;
procedure TfpgPopupCalendar.HandleHide;
begin
FocusRootWidget := FOrigFocusWin;
FOrigFocusWin := nil;
inherited HandleHide;
if Assigned(FocusRootWidget) then
FocusRootWidget.SetFocus;
end;
constructor TfpgPopupCalendar.Create(AOwner: TComponent; AOrigFocusWin: TfpgWidget);
begin
inherited Create(AOwner);
FntNorm:= fpgApplication.GetFont('arial-9');
FntBold:= fpgApplication.GetFont('arial-9:bold');
FOrigFocusWin := AOrigFocusWin;
AfterCreate;
FDate := Date;
FWeekStartDay := 0;
FWeeklyHoliday := -1;
FDayColor := clText1;
FHolidayColor := clText1;
FSelectedColor := clWhite;
FMonthOffset := 0;
FCloseOnSelect := True;
UpdateCalendar;
end;
destructor TfpgPopupCalendar.Destroy;
begin
FntBold.Free;
FntNorm.Free;
inherited Destroy;
end;
procedure TfpgPopupCalendar.AfterCreate;
begin
{@VFD_BODY_BEGIN: fpgPopupCalendar}
Name := 'fpgPopupCalendar';
SetPosition(285, 249, 233, 142);
// WindowTitle := 'fpgPopupCalendar';
// Sizeable := False;
// WindowPosition := wpUser;
edtYear := TfpgEdit.Create(self);
with edtYear do
begin
Name := 'edtYear';
SetPosition(0, 0, 52, 22);
Text := '';
FontDesc := '#Edit1';
Focusable := False;
BorderStyle := ebsSingle;
end;
btnYearUp := TfpgButton.Create(self);
with btnYearUp do
begin
Name := 'btnYearUp';
SetPosition(52, 0, 13, 11);
Text := '';
Embedded := True;
FontDesc := '#Label1';
ImageMargin := 0;
ImageName := 'sys.sb.up';
Focusable := False;
OnClick := @btnYearUpClicked;
end;
btnYearDown := TfpgButton.Create(self);
with btnYearDown do
begin
Name := 'btnYearDown';
SetPosition(52, 11, 13, 11);
Text := '';
Embedded := True;
FontDesc := '#Label1';
ImageMargin := 0;
ImageName := 'sys.sb.down';
Focusable := False;
OnClick := @btnYearDownClicked;
end;
edtMonth := TfpgEdit.Create(self);
with edtMonth do
begin
Name := 'edtMonth';
SetPosition(65, 0, 115, 22);
Text := '';
FontDesc := '#Edit1';
Focusable := False;
BorderStyle := ebsSingle;
end;
btnMonthUp := TfpgButton.Create(self);
with btnMonthUp do
begin
Name := 'btnMonthUp';
SetPosition(180, 0, 13, 11);
Text := '';
Embedded := True;
FontDesc := '#Label1';
ImageMargin := 0;
ImageName := 'sys.sb.up';
Focusable := False;
OnClick := @btnMonthUpClicked;
end;
btnMonthDown := TfpgButton.Create(self);
with btnMonthDown do
begin
Name := 'btnMonthDown';
SetPosition(180, 11, 13, 11);
Text := '';
Embedded := True;
FontDesc := '#Label1';
ImageMargin := 0;
ImageName := 'sys.sb.down';
Focusable := False;
OnClick := @btnMonthDownClicked;
end;
btnToday := TfpgButton.Create(self);
with btnToday do
begin
Name := 'btnToday';
SetPosition(194, 0, 40, 22);
Text := 'Today';
FontDesc := '#Label1';
Focusable := True;
OnClick := @btnTodayClicked;
end;
grdName1 := TfpgStringGrid.Create(self);
with grdName1 do
begin
Name := 'grdName1';
SetPosition(0, 23, 233, 119);
AddColumn('Sun', 33, taCenter);
AddColumn('Mon', 32, taCenter);
AddColumn('Tue', 33, taCenter);
AddColumn('Wed', 32, taCenter);
AddColumn('Thu', 33, taCenter);
AddColumn('Fri', 32, taCenter);
AddColumn('Sat', 33, taCenter);
FontDesc := '#Grid';
HeaderFontDesc := '#GridHeader';
RowCount := 6;
ScrollBarStyle := ssNone;
OnDoubleClick := @grdName1DoubleClick;
OnKeyPress := @grdName1KeyPress;
OnDrawCell := @grdName1DrawCell;
end;
{@VFD_BODY_END: fpgPopupCalendar}
{
// Setup localization
// UI Designer doesn't support resource strings yet!
grdName1.ColumnTitle[0] := rsShortSun;
grdName1.ColumnTitle[1] := rsShortMon;
grdName1.ColumnTitle[2] := rsShortTue;
grdName1.ColumnTitle[3] := rsShortWed;
grdName1.ColumnTitle[4] := rsShortThu;
grdName1.ColumnTitle[5] := rsShortFri;
grdName1.ColumnTitle[6] := rsShortSat;
}
btnToday.Text := rsToday;
end;
{ TfpgCalendarCombo }
procedure TfpgCalendarCombo.SetDateValue(const AValue: TDateTime);
begin
if FDate = AValue then
Exit; //==>
FDate := AValue;
RePaint;
end;
procedure TfpgCalendarCombo.SetMaxDate(const AValue: TDateTime);
begin
if FMaxDate = AValue then
Exit; //==>
FMaxDate := AValue;
// correct min/max values
if FMinDate > AValue then
FMinDate := IncMonth(AValue, -12); // one year less
if FDate > FMaxDate then
begin
FDate := FMaxDate;
Repaint;
end;
end;
procedure TfpgCalendarCombo.SetMinDate(const AValue: TDateTime);
begin
if FMinDate = AValue then
Exit; //==>
FMinDate := AValue;
// correct min/max values
if AValue > FMaxDate then
FMaxDate := IncMonth(AValue, 12); // one year more
if FDate < FMinDate then
begin
FDate := FMinDate;
Repaint;
end;
end;
procedure TfpgCalendarCombo.SetWeekStartDay(const AValue: integer);
begin
if FWeekStartDay <> AValue then
FWeekStartDay := AValue;
end;
procedure TfpgCalendarCombo.SetWeeklyHoliday(const AValue: integer);
begin
if FWeeklyHoliday <> AValue then
FWeeklyHoliday := AValue;
end;
procedure TfpgCalendarCombo.SetSelectedColor(const AValue: TfpgColor);
begin
if FSelectedColor <> AValue then
FSelectedColor := AValue;
end;
procedure TfpgCalendarCombo.SetDayColor(const AValue: TfpgColor);
begin
if FDayColor <> AValue then
FDayColor := AValue;
end;
procedure TfpgCalendarCombo.SetHolidayColor(const AValue: TfpgColor);
begin
if FHolidayColor <> AValue then
FHolidayColor := AValue;
end;
procedure TfpgCalendarCombo.SetText(const AValue: string);
begin
try
FDate := StrToDateTime(AValue);
except
on E: Exception do
begin
ShowMessage(E.Message);
end;
end;
end;
function TfpgCalendarCombo.GetText: string;
begin
Result := FormatDateTime(FDateFormat, FDate);
end;
procedure TfpgCalendarCombo.SetCloseOnSelect(const AValue: boolean);
begin
if FCloseOnSelect = AValue then
Exit; //==>
FCloseOnSelect := AValue;
end;
function TfpgCalendarCombo.HasText: boolean;
begin
Result := FDate >= FMinDate;
end;
constructor TfpgCalendarCombo.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FMinDate := EncodeDate(1900, 01, 01);
FMaxDate := EncodeDate(2100, 01, 31);
FWeeklyHoliday := -1;
FDate := Now;
FCloseOnSelect := True;
DateFormat := ShortDateFormat;
end;
procedure TfpgCalendarCombo.InternalOnValueSet(Sender: TObject;
const ADate: TDateTime);
begin
DateValue := ADate;
if Assigned(OnChange) then
OnChange(self);
{$IFDEF DEBUG}
writeln('New value: ', FormatDateTime(FDateFormat, ADate));
{$ENDIF}
end;
procedure TfpgCalendarCombo.SetDateFormat(const AValue: string);
var
OldFormat: string;
begin
if FDateFormat = AValue then
Exit; //==>
OldFormat := FDateFormat;
FDateFormat := AValue;
try
FormatDateTime(FDateFormat, FDate);
RePaint;
except
on E: Exception do
begin
FDateFormat := OldFormat;
fpgApplication.HandleException(self);
end;
end;
end;
procedure TfpgCalendarCombo.DoDropDown;
var
ddw: TfpgPopupCalendar;
begin
if (not Assigned(FDropDown)) or (not FDropDown.HasHandle) then
begin
FreeAndNil(FDropDown); // safety measure
FDropDown := TfpgPopupCalendar.Create(nil, FocusRootWidget);
ddw := TfpgPopupCalendar(FDropDown);
ddw.DontCloseWidget := self;
{ Set to false CloseOnSelect to leave opened popup calendar menu }
ddw.CloseOnSelect := CloseOnSelect;
ddw.CallerWidget := self;
if Assigned(OnDropDown) then
OnDropDown(self);
ddw.MinDate := FMinDate;
ddw.MaxDate := FMaxDate;
ddw.DateValue := FDate;
ddw.WeekStartDay := FWeekStartDay;
ddw.WeeklyHoliday := FWeeklyHoliday;
ddw.DayColor := FDayColor;
ddw.HolidayColor := FHolidayColor;
ddw.SelectedColor := FSelectedColor;
ddw.ShowAt(Parent, Left, Top+Height);
{ I added this call to UpdateCalendar because sometimes after
btnTodayClicked event, reopeing the dropdown menu gave an empty calendar }
ddw.UpdateCalendar; //slapshot
ddw.PopupFrame := True;
ddw.OnValueSet := @InternalOnValueSet;
ddw.OnClose := @InternalOnClose;
end
else
begin
FBtnPressed := False;
FDropDown.Close;
FreeAndNil(FDropDown);
end;
end;
end.
|