-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.lfm
1387 lines (1387 loc) · 41.8 KB
/
settings.lfm
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
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object FConfig: TFConfig
Left = 517
Height = 687
Top = 13
Width = 346
BorderStyle = bsDialog
Caption = 'Settings'
ClientHeight = 687
ClientWidth = 346
FormStyle = fsStayOnTop
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
SessionProperties = 'BChangeFont.Font;CCloseMe.Checked;ChDontCloseTimer.Checked;ChIncreasingFontSize.Checked;ChMinusTiming.Checked;ChNoBacground.Checked;ChShowLogo.Checked;ChStretchLogo.Checked;ChTransparent.Checked;ChWindowsBorders.Checked;EAlphaBlend.Value;EChangeEditSize.Value;EEndNote.Text;EIncreasingFontSize.Value;ELogoPlHorizontal.Value;ELogoPlVertical.Value;ELogoProportion.Value;EMinLogoHeight.Value;EMinutes.Value;EWarning1.Value;EWarning2.Value;EWarning3.Value;FontDialog1.Font;Left;OpenPictureDialog.FileName;RGrLogoPlacement.ItemIndex;SBHalf.ButtonColor;SBMain.ButtonColor;SBWarning1.ButtonColor;SBWarning2.ButtonColor;SBWarning3.ButtonColor;SLogoPlHorizontal.Value;SLogoPlVertical.Value;STHalf.ButtonColor;STMain.ButtonColor;STWarning1.ButtonColor;STWarning2.ButtonColor;STWarning3.ButtonColor;Top;Visible;ChFlashing2.Checked;ChFlashing3.Checked'
ShowHint = True
ShowInTaskBar = stNever
LCLVersion = '2.2.6.0'
object PTabs: TPageControl
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 687
Top = 0
Width = 346
ActivePage = PTBase
Anchors = [akTop, akLeft, akRight, akBottom]
TabIndex = 0
TabOrder = 0
object PTBase: TTabSheet
Caption = 'Appearance'
ClientHeight = 660
ClientWidth = 336
object BSettingsARR: TButton
AnchorSideLeft.Control = PTBase
AnchorSideTop.Control = BSettingsAR
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = PTBase
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 29
Top = 631
Width = 336
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
Caption = 'Apply, reset and restart'
OnClick = BSettingsARRClick
TabOrder = 10
end
object BSettingsAR: TButton
AnchorSideLeft.Control = PTBase
AnchorSideTop.Control = BSettingsA
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = BSettingsARR
Left = 0
Height = 29
Top = 602
Width = 336
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
Caption = 'Apply and reset'
OnClick = BSettingsARClick
TabOrder = 9
end
object BSettingsA: TButton
AnchorSideLeft.Control = PTBase
AnchorSideTop.Control = CCloseMe
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = BSettingsAR
Left = 0
Height = 29
Hint = 'Apply changes for later time'
Top = 573
Width = 336
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
Caption = 'Apply'
OnClick = BSettingsAClick
TabOrder = 8
end
object CCloseMe: TCheckBox
AnchorSideTop.Control = BChangeFont
AnchorSideTop.Side = asrBottom
AnchorSideBottom.Control = BSettingsA
Left = 7
Height = 23
Top = 547
Width = 106
Alignment = taLeftJustify
Anchors = [akLeft, akBottom]
BorderSpacing.Top = 3
BorderSpacing.Bottom = 3
Caption = 'Close on Apply'
Checked = True
State = cbChecked
TabOrder = 7
end
object LMinutes4: TLabel
AnchorSideLeft.Control = PTBase
Left = 0
Height = 13
Top = 87
Width = 50
Anchors = [akLeft]
Caption = 'Halftime:'
ParentColor = False
end
object LMinutes3: TLabel
AnchorSideLeft.Control = PTBase
Left = 0
Height = 13
Top = 261
Width = 74
Anchors = [akLeft]
Caption = 'Last warning:'
ParentColor = False
end
object LMinutes2: TLabel
AnchorSideLeft.Control = PTBase
Left = 0
Height = 13
Top = 205
Width = 76
Anchors = [akLeft]
Caption = '2-nd warning:'
ParentColor = False
end
object LMinutes1: TLabel
AnchorSideLeft.Control = PTBase
Left = 0
Height = 13
Top = 147
Width = 72
Anchors = [akLeft]
Caption = '1-st warning:'
ParentColor = False
end
object LMinutes: TLabel
AnchorSideLeft.Control = PTBase
AnchorSideTop.Control = ChNoBacground
AnchorSideTop.Side = asrBottom
Left = 0
Height = 13
Top = 30
Width = 47
BorderSpacing.Top = 7
Caption = 'Minutes:'
ParentColor = False
end
object BChangeFont: TButton
AnchorSideLeft.Control = PTBase
AnchorSideTop.Control = LMinutes3
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
Left = 0
Height = 29
Hint = 'Change name not size'
Top = 298
Width = 336
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 24
Caption = 'Change font'
OnClick = BChangeFontClick
TabOrder = 6
end
object EMinutes: TFloatSpinEdit
AnchorSideTop.Control = LMinutes
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = SBMain
Left = 214
Height = 30
Hint = 'Time for Presenter. Use [Enter] to apply changes and reset timer.'
Top = 21
Width = 57
Alignment = taRightJustify
Anchors = [akTop, akRight]
BorderSpacing.Right = 7
DecimalPlaces = 1
MaxValue = 999
MinValue = 0.1
OnEnter = EMinutesEnter
OnExit = EMinutesExit
OnKeyPress = EMinutesKeyPress
TabOrder = 0
Value = 1
end
object EWarning1: TFloatSpinEdit
AnchorSideLeft.Control = EMinutes
AnchorSideTop.Control = LMinutes1
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EMinutes
AnchorSideRight.Side = asrBottom
Left = 213
Height = 30
Hint = 'Minutes left'
Top = 138
Width = 58
Alignment = taRightJustify
Anchors = [akTop, akRight]
DecimalPlaces = 1
OnEnter = EWarning1Enter
OnExit = EWarning1Exit
OnKeyPress = EWarning1KeyPress
TabOrder = 1
end
object EWarning2: TFloatSpinEdit
AnchorSideLeft.Control = EMinutes
AnchorSideTop.Control = LMinutes2
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EMinutes
AnchorSideRight.Side = asrBottom
Left = 213
Height = 30
Hint = 'Minutes left'
Top = 196
Width = 58
Alignment = taRightJustify
Anchors = [akTop, akRight]
DecimalPlaces = 1
OnEnter = EWarning2Enter
OnExit = EWarning2Exit
OnKeyPress = EWarning2KeyPress
TabOrder = 2
end
object EWarning3: TFloatSpinEdit
AnchorSideLeft.Control = EMinutes
AnchorSideTop.Control = LMinutes3
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EMinutes
AnchorSideRight.Side = asrBottom
Left = 214
Height = 30
Hint = 'Minutes left'
Top = 252
Width = 57
Alignment = taRightJustify
Anchors = [akTop, akRight]
DecimalPlaces = 1
Increment = 0.5
OnEnter = EWarning3Enter
OnExit = EWarning3Exit
OnKeyPress = EWarning3KeyPress
TabOrder = 4
end
object SBMain: TColorButton
AnchorSideTop.Control = LMinutes
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = STMain
Left = 278
Height = 23
Top = 25
Width = 23
Anchors = [akTop, akRight]
BorderSpacing.Right = 9
BorderWidth = 0
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clCream
ColorDialog = ColorDialog
Color = clDefault
Layout = blGlyphTop
OnClick = SBMainClick
end
object STMain: TColorButton
AnchorSideTop.Control = LMinutes
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
Left = 310
Height = 23
Top = 25
Width = 23
Anchors = [akTop, akRight]
BorderSpacing.Right = 3
BorderWidth = 0
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clBlack
ColorDialog = ColorDialog
OnClick = STMainClick
end
object SBHalf: TColorButton
AnchorSideLeft.Control = SBMain
AnchorSideTop.Control = LMinutes4
AnchorSideTop.Side = asrCenter
Left = 278
Height = 23
Top = 82
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clCream
ColorDialog = ColorDialog
OnClick = SBHalfClick
end
object STHalf: TColorButton
AnchorSideLeft.Control = STMain
AnchorSideTop.Control = LMinutes4
AnchorSideTop.Side = asrCenter
Left = 310
Height = 23
Top = 82
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clBlack
ColorDialog = ColorDialog
OnClick = STHalfClick
end
object SBWarning1: TColorButton
AnchorSideLeft.Control = SBMain
AnchorSideTop.Control = LMinutes1
AnchorSideTop.Side = asrCenter
Left = 278
Height = 23
Top = 142
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clCream
ColorDialog = ColorDialog
OnClick = SBWarning1Click
end
object STWarning1: TColorButton
AnchorSideLeft.Control = STMain
AnchorSideTop.Control = LMinutes1
AnchorSideTop.Side = asrCenter
Left = 310
Height = 23
Top = 142
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clBlack
ColorDialog = ColorDialog
OnClick = STWarning1Click
end
object SBWarning2: TColorButton
AnchorSideLeft.Control = SBMain
AnchorSideTop.Control = LMinutes2
AnchorSideTop.Side = asrCenter
Left = 278
Height = 23
Top = 200
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clCream
ColorDialog = ColorDialog
OnClick = SBWarning2Click
end
object STWarning2: TColorButton
AnchorSideLeft.Control = STMain
AnchorSideTop.Control = LMinutes2
AnchorSideTop.Side = asrCenter
Left = 310
Height = 23
Top = 200
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clBlack
ColorDialog = ColorDialog
OnClick = STWarning2Click
end
object SBWarning3: TColorButton
AnchorSideLeft.Control = SBMain
AnchorSideTop.Control = LMinutes3
AnchorSideTop.Side = asrCenter
Left = 278
Height = 23
Top = 256
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clCream
ColorDialog = ColorDialog
OnClick = SBWarning3Click
end
object STWarning3: TColorButton
AnchorSideLeft.Control = STMain
AnchorSideTop.Control = LMinutes3
AnchorSideTop.Side = asrCenter
Left = 310
Height = 23
Top = 256
Width = 23
BorderWidth = 2
ButtonColorAutoSize = False
ButtonColorSize = 25
ButtonColor = clBlack
ColorDialog = ColorDialog
OnClick = STWarning3Click
end
object ChNoBacground: TCheckBox
AnchorSideTop.Control = PTBase
AnchorSideRight.Control = PTBase
AnchorSideRight.Side = asrBottom
Left = 227
Height = 23
Hint = 'Use system colours'
Top = 0
Width = 109
Anchors = [akTop, akRight]
Caption = 'System colours'
OnChange = ChNoBacgroundChange
TabOrder = 11
end
object ChFlashing2: TCheckBox
AnchorSideTop.Control = EWarning2
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EWarning2
Left = 133
Height = 23
Hint = 'Each second swaps the foreground colour with the background colour and vice verse.'
Top = 200
Width = 80
Anchors = [akTop, akRight]
Caption = 'Swapping'
TabOrder = 3
end
object ChFlashing3: TCheckBox
AnchorSideTop.Control = EWarning3
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EWarning3
Left = 134
Height = 23
Hint = 'Each second swaps the foreground colour with the background colour and vice verse.'
Top = 256
Width = 80
Anchors = [akTop, akRight]
Caption = 'Swapping'
TabOrder = 5
end
end
object PTImage: TTabSheet
Caption = 'Additional'
ClientHeight = 660
ClientWidth = 336
object PTransparent: TPanel
AnchorSideLeft.Control = PTImage
AnchorSideTop.Control = PLogo
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTImage
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = BHotKeys
Left = 0
Height = 172
Top = 158
Width = 336
Anchors = [akTop, akLeft, akRight]
AutoSize = True
ClientHeight = 172
ClientWidth = 336
ParentColor = False
TabOrder = 1
object ChTransparent: TCheckBox
AnchorSideLeft.Control = PTransparent
AnchorSideTop.Control = PTransparent
Left = 1
Height = 23
Top = 22
Width = 67
BorderSpacing.Top = 21
Caption = 'Opacity'
OnChange = ChTransparentChange
TabOrder = 0
end
object LTransparent: TLabel
AnchorSideLeft.Control = PTransparent
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = ChTransparent
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = PTransparent
AnchorSideBottom.Side = asrBottom
Left = 81
Height = 13
Top = 52
Width = 174
Alignment = taCenter
BorderSpacing.Top = 7
BorderSpacing.Bottom = 7
Caption = 'May not work on some systems!'
ParentColor = False
end
object EAlphaBlend: TSpinEdit
AnchorSideLeft.Control = ChTransparent
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ChTransparent
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PTransparent
AnchorSideRight.Side = asrBottom
Left = 275
Height = 30
Hint = '255 means non-transparent'
Top = 18
Width = 60
Anchors = [akTop, akRight]
BorderSpacing.Left = 9
Increment = 5
MaxValue = 255
MinValue = 75
OnChange = EAlphaBlendChange
OnEnter = EAlphaBlendEnter
OnExit = EAlphaBlendExit
TabOrder = 1
Value = 125
end
object ChWindowsBorders: TCheckBox
AnchorSideLeft.Control = PTransparent
AnchorSideTop.Control = LTransparent
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Top = 72
Width = 120
Caption = 'Windows borders'
Enabled = False
OnChange = ChWindowsBordersChange
TabOrder = 2
end
object ChFullScreen: TCheckBox
AnchorSideLeft.Control = PTransparent
AnchorSideTop.Control = ChProgressBar
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Top = 118
Width = 85
Caption = 'Full screen'
Enabled = False
OnChange = ChFullScreenChange
TabOrder = 4
end
object LTimerWSection: TLabel
AnchorSideLeft.Control = PTransparent
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = PTransparent
Left = 114
Height = 13
Top = 1
Width = 109
Caption = 'The timer window'
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
object ChProgressBar: TCheckBox
AnchorSideLeft.Control = PTransparent
AnchorSideTop.Control = ChWindowsBorders
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Top = 95
Width = 128
Caption = 'Show progress bar'
OnChange = ChProgressBarChange
TabOrder = 3
end
object ChWindowsPosition: TCheckBox
AnchorSideLeft.Control = ChFullScreen
AnchorSideTop.Control = ChFullScreen
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Top = 141
Width = 289
BorderSpacing.Right = 3
BorderSpacing.Bottom = 7
Caption = 'The Timer is always on the top of other windows'
Checked = True
OnChange = ChWindowsPositionChange
State = cbChecked
TabOrder = 5
end
end
object PLogo: TPanel
AnchorSideLeft.Control = PTImage
AnchorSideTop.Control = PTImage
AnchorSideRight.Control = PTImage
AnchorSideRight.Side = asrBottom
Left = 0
Height = 158
Top = 0
Width = 336
Anchors = [akTop, akLeft, akRight]
AutoSize = True
ClientHeight = 158
ClientWidth = 336
TabOrder = 0
object LLogoHeight: TLabel
AnchorSideTop.Control = EMinLogoHeight
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = EMinLogoHeight
Left = 159
Height = 13
Top = 136
Width = 107
Anchors = [akTop, akRight]
BorderSpacing.Top = 12
BorderSpacing.Right = 9
BorderSpacing.Bottom = 3
Caption = 'Minimal logo height'
ParentColor = False
end
object EMinLogoHeight: TSpinEdit
AnchorSideTop.Control = ELogoProportion
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PLogo
AnchorSideRight.Side = asrBottom
Left = 275
Height = 30
Hint = 'The minimal height (in pixels) of the logo. If the resized logo is lower, it is not shown.'
Top = 127
Width = 60
Anchors = [akTop, akRight]
BorderSpacing.Top = 3
MaxValue = 99
MinValue = 6
OnChange = EMinLogoHeightChange
OnEnter = EMinLogoHeightEnter
OnExit = EMinLogoHeightExit
TabOrder = 7
Value = 6
end
object ChShowLogo: TCheckBox
AnchorSideLeft.Control = PLogo
AnchorSideTop.Control = LLogoSection
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Top = 21
Width = 83
BorderSpacing.Top = 7
BorderSpacing.Bottom = 7
Caption = 'Show logo'
Checked = True
OnChange = ChShowLogoChange
State = cbChecked
TabOrder = 0
end
object BChangeLogo: TButton
AnchorSideLeft.Control = ChShowLogo
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ChShowLogo
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PLogo
AnchorSideRight.Side = asrBottom
Left = 95
Height = 29
Hint = 'Browse for a new image'
Top = 18
Width = 85
AutoSize = True
BorderSpacing.Left = 11
Caption = 'Change logo'
OnChangeBounds = BChangeLogoChangeBounds
OnClick = BChangeLogoClick
TabOrder = 1
end
object LLogoProportion: TLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = ELogoProportion
AnchorSideBottom.Control = RGrLogoPlacement
AnchorSideBottom.Side = asrBottom
Left = 175
Height = 13
Top = 111
Width = 91
Anchors = [akRight, akBottom]
BorderSpacing.Right = 9
Caption = 'Proportional size'
ParentColor = False
end
object ELogoProportion: TFloatSpinEdit
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PLogo
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = RGrLogoPlacement
AnchorSideBottom.Side = asrBottom
Left = 275
Height = 30
Hint = 'The proportional size of the logo.'
Top = 94
Width = 60
Anchors = [akRight, akBottom]
DecimalPlaces = 1
Increment = 0.3
MaxValue = 9
MinValue = 0.1
OnChange = ELogoProportionChange
OnEnter = ELogoProportionEnter
OnExit = ELogoProportionExit
TabOrder = 6
Value = 2
end
object ELogoPlHorizontal: TSpinEdit
AnchorSideLeft.Control = RGrLogoPlacement
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = RGrLogoPlacement
Left = 102
Height = 30
Hint = 'Horizontal spacing'
Top = 53
Width = 57
BorderSpacing.Left = 9
OnChange = ELogoPlHorizontalChange
OnEnter = ELogoPlHorizontalEnter
OnExit = ELogoPlHorizontalExit
TabOrder = 4
Value = 9
end
object ELogoPlVertical: TSpinEdit
AnchorSideLeft.Control = ELogoPlHorizontal
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ELogoPlHorizontal
AnchorSideTop.Side = asrCenter
Left = 168
Height = 30
Hint = 'Vertical spacing'
Top = 53
Width = 57
BorderSpacing.Left = 9
OnChange = ELogoPlVerticalChange
OnEnter = ELogoPlVerticalEnter
OnExit = ELogoPlVerticalExit
TabOrder = 5
Value = 9
end
object LLogoVArrow: TLabel
AnchorSideLeft.Control = ELogoPlVertical
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ELogoPlVertical
AnchorSideTop.Side = asrCenter
Left = 225
Height = 13
Hint = 'The border spacing (top or bottom)'
Top = 62
Width = 9
Caption = '↕'
ParentColor = False
end
object LLogoHArrow: TLabel
AnchorSideLeft.Control = ELogoPlHorizontal
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = ELogoPlHorizontal
AnchorSideTop.Side = asrBottom
Left = 126
Height = 13
Hint = 'The border spacing (left or right)'
Top = 83
Width = 9
Caption = '↔'
ParentColor = False
end
object RGrLogoPlacement: TRadioGroup
AnchorSideLeft.Control = PLogo
AnchorSideTop.Control = ChShowLogo
AnchorSideTop.Side = asrBottom
Left = 10
Height = 71
Hint = 'The placement of the logo'
Top = 53
Width = 83
AutoFill = True
AutoSize = True
BorderSpacing.Left = 9
BorderSpacing.Top = 9
BorderSpacing.Bottom = 3
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 3
ClientHeight = 69
ClientWidth = 81
Columns = 3
ItemIndex = 0
Items.Strings = (
''
''
''
''
''
''
''
''
''
)
OnSelectionChanged = RGrLogoPlacementSelectionChanged
TabOrder = 3
end
object LLogoSection: TLabel
AnchorSideLeft.Control = PLogo
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = PLogo
Left = 154
Height = 13
Top = 1
Width = 29
Caption = 'Logo'
Font.Style = [fsBold, fsUnderline]
ParentColor = False
ParentFont = False
end
object BRestoreLogo: TButton
AnchorSideTop.Control = ChShowLogo
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PLogo
AnchorSideRight.Side = asrBottom
Left = 275
Height = 29
Hint = 'Restore built-in logo'
Top = 18
Width = 58
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 2
Caption = 'Restore'
OnClick = BRestoreLogoClick
TabOrder = 2
end
object ChStretchLogo: TCheckBox
AnchorSideLeft.Control = PLogo
AnchorSideTop.Control = EMinLogoHeight
AnchorSideTop.Side = asrCenter
Left = 1
Height = 23
Hint = 'Stretched the logo to the size of the timer''s window.'
Top = 131
Width = 92
Caption = 'Stretch logo'
Checked = True
OnChange = ChStretchLogoChange
State = cbChecked
TabOrder = 8
end
end
object PEndNote: TPanel
AnchorSideLeft.Control = PTImage
AnchorSideTop.Control = PTransparent
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PTImage
AnchorSideRight.Side = asrBottom
Left = 0
Height = 158
Top = 330
Width = 336
Anchors = [akTop, akLeft, akRight]
AutoSize = True
ClientHeight = 158
ClientWidth = 336
TabOrder = 2
object ECMDtoRun: TFileNameEdit
AnchorSideLeft.Control = PEndNote
AnchorSideTop.Control = ChLaunch
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PEndNote
AnchorSideRight.Side = asrBottom
Left = 1
Height = 30
Hint = 'Command to execute at the end of the time.'
Top = 120
Width = 334
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Bottom = 7
MaxLength = 0
TabOrder = 6
OnChange = ECMDtoRunChange
end
object ChExit: TCheckBox
AnchorSideLeft.Control = ChLaunch
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ChLaunch
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PEndNote
AnchorSideRight.Side = asrBottom
Left = 67
Height = 23
Hint = 'When the time is over, closes the count-down timer.'
Top = 97
Width = 46
Caption = 'Exit'
TabOrder = 5
end
object ChLaunch: TCheckBox
AnchorSideLeft.Control = PEndNote
AnchorSideTop.Control = EEndNote
AnchorSideTop.Side = asrBottom
Left = 1
Height = 23
Hint = 'When the time is over, launches another application.'
Top = 97
Width = 66
Caption = 'Launch'
Enabled = False
TabOrder = 4
end
object EEndNote: TEdit
AnchorSideLeft.Control = PEndNote
AnchorSideTop.Control = LEndNote
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = PEndNote
AnchorSideRight.Side = asrBottom
Left = 1
Height = 30
Hint = 'The message to appear when the time limit is exceeded.'
Top = 60
Width = 334
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 3
BorderSpacing.Bottom = 7
OnChange = EEndNoteChange
TabOrder = 3
Text = 'The time is over'
end
object ChMinusTiming: TCheckBox
AnchorSideTop.Control = LEndNote
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PEndNote
AnchorSideRight.Side = asrBottom
Left = 228
Height = 23
Hint = 'When the time is over, timer shows the exceeded time.'
Top = 39
Width = 107
Anchors = [akTop, akRight]
Caption = 'Exceeded time'
TabOrder = 2
end
object LEndNote: TLabel
AnchorSideLeft.Control = PEndNote
AnchorSideTop.Control = ChIncreasingFontSize
AnchorSideTop.Side = asrBottom
Left = 1
Height = 13
Top = 44
Width = 102
BorderSpacing.Top = 3
Caption = 'The End message:'
ParentColor = False
end
object EIncreasingFontSize: TSpinEdit
AnchorSideTop.Control = ChIncreasingFontSize
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = PEndNote
AnchorSideRight.Side = asrBottom
Left = 275
Height = 30
Hint = 'Starting size (%)'
Top = 14
Width = 60
Anchors = [akTop, akRight]
Increment = 5
MinValue = 5
OnEnter = EIncreasingFontSizeEnter
OnExit = EIncreasingFontSizeExit
TabOrder = 1
Value = 10
end
object ChIncreasingFontSize: TCheckBox
AnchorSideLeft.Control = PEndNote
AnchorSideTop.Control = PEndNote
Left = 1
Height = 23
Hint = 'The decrease of time makes the size of numbers bigger.'
Top = 18
Width = 133
BorderSpacing.Top = 17
Caption = 'Increasing font size'
OnChange = ChIncreasingFontSizeChange
TabOrder = 0
end
object LTimerSection: TLabel