forked from vhanla/TaskbarDock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dfm
922 lines (922 loc) · 25.6 KB
/
main.dfm
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
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 403
ClientWidth = 751
Color = clWhite
Ctl3D = False
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
GlassFrame.SheetOfGlass = True
OldCreateOrder = False
StyleElements = []
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object UScrollBox1: TUScrollBox
Left = 45
Top = 32
Width = 706
Height = 371
Align = alClient
BorderStyle = bsNone
DoubleBuffered = True
Color = clWhite
ParentColor = False
ParentDoubleBuffered = False
TabOrder = 2
MaxScrollCount = 6
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 706
Height = 371
ActivePage = tbsSettings
Align = alClient
Style = tsFlatButtons
TabOrder = 0
object tbsSettings: TTabSheet
Caption = 'tbsSettings'
TabVisible = False
OnShow = tbsSettingsShow
DesignSize = (
698
361)
object UText1: TUText
AlignWithMargins = True
Left = 0
Top = 20
Width = 698
Height = 28
Margins.Left = 0
Margins.Top = 20
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'Settings'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -20
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TextKind = tkHeading
ExplicitWidth = 71
end
object ListBox1: TListBox
Left = 400
Top = 56
Width = 281
Height = 194
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 0
end
object Button1: TButton
Left = 328
Top = 256
Width = 353
Height = 25
Caption = 'List Taskbar Elements'
TabOrder = 1
OnClick = Button1Click
end
object chkStart: TEsSwitch
Left = 18
Top = 66
Width = 135
Height = 20
TextOn = 'Show Start Button'
TextOff = 'Show Start Button'
ShowCaption = True
TabOrder = 2
OnClick = chkStartClick
end
object chkTray: TEsSwitch
Left = 18
Top = 92
Width = 124
Height = 20
TextOn = 'Show Tray Area'
TextOff = 'Show Tray Area'
ShowCaption = True
TabOrder = 3
OnClick = chkTrayClick
end
object chkTransparent: TEsSwitch
Left = 18
Top = 118
Width = 147
Height = 20
TextOn = 'Taskbar Transparent'
TextOff = 'Taskbar Transparent'
ShowCaption = True
TabOrder = 4
OnClick = chkTransparentClick
end
object chkCenter: TEsSwitch
Left = 18
Top = 144
Width = 121
Height = 20
TextOn = 'Center Taskbar'
TextOff = 'Center Taskbar'
ShowCaption = True
TabOrder = 5
OnClick = chkCenterClick
end
object chkCenterRelative: TEsSwitch
Left = 18
Top = 170
Width = 212
Height = 20
TextOn = 'Center Taskbar relative to its area'
TextOff = 'Center Taskbar relative to its area'
ShowCaption = True
TabOrder = 6
OnClick = chkCenterRelativeClick
end
object chkAutoStart: TEsSwitch
Left = 18
Top = 274
Width = 140
Height = 20
TextOn = 'Start with Windows'
TextOff = 'Start with Windows'
ShowCaption = True
TabOrder = 7
OnClick = chkAutoStartClick
end
object chkSkinEnabled: TEsSwitch
Left = 18
Top = 196
Width = 131
Height = 20
TextOn = 'Experimental Skin'
TextOff = 'Experimental Skin'
ShowCaption = True
TabOrder = 8
end
object chkSmall: TEsSwitch
Left = 18
Top = 222
Width = 100
Height = 20
TextOn = 'Small Icons'
TextOff = 'Small Icons'
ShowCaption = True
TabOrder = 9
OnClick = chkSmallClick
end
object chkAnimation: TEsSwitch
Left = 18
Top = 248
Width = 186
Height = 20
TextOn = 'Taskbar Thumbnail Animation'
TextOff = 'Taskbar Thumbnail Animation'
ShowCaption = True
TabOrder = 10
OnClick = chkAnimationClick
end
end
object tbsAbout: TTabSheet
Caption = 'tbsAbout'
ImageIndex = 1
TabVisible = False
object headingAbout: TUText
AlignWithMargins = True
Left = 0
Top = 20
Width = 698
Height = 28
Margins.Left = 0
Margins.Top = 20
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'About'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -20
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TextKind = tkHeading
ExplicitWidth = 55
end
object desAppVersion: TUText
AlignWithMargins = True
Left = 0
Top = 117
Width = 698
Height = 15
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'App version: 0.1b'
Font.Charset = DEFAULT_CHARSET
Font.Color = 6710886
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
WordWrap = True
TextKind = tkDescription
ExplicitWidth = 91
end
object desFlashVersion: TUText
AlignWithMargins = True
Left = 0
Top = 184
Width = 698
Height = 15
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'Author: Victor Alberto Gil <vhanla>'
Font.Charset = DEFAULT_CHARSET
Font.Color = 6710886
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
WordWrap = True
TextKind = tkDescription
ExplicitWidth = 187
end
object desChromiumVersion: TUText
AlignWithMargins = True
Left = 0
Top = 164
Width = 698
Height = 15
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'Source: https://github.com/vhanla/taskbardock'
Font.Charset = DEFAULT_CHARSET
Font.Color = 6710886
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
WordWrap = True
TextKind = tkDescription
ExplicitWidth = 253
end
object linkEmbarcadero: TUHyperLink
AlignWithMargins = True
Left = 0
Top = 137
Width = 698
Height = 17
Cursor = crHandPoint
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 10
Align = alTop
Caption = 'https://codigobit.net/TaskbarDock'
Font.Charset = DEFAULT_CHARSET
Font.Color = 14051691
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
CustomTextColors.None = 14120960
CustomTextColors.Hover = clGray
CustomTextColors.Press = clMedGray
CustomTextColors.Disabled = clMedGray
CustomTextColors.Focused = 14120960
URL = 'https://embarcadero.com/'
ExplicitWidth = 198
end
object btnCheckUpdate: TUButton
AlignWithMargins = True
Left = 0
Top = 58
Width = 698
Height = 30
Margins.Left = 0
Margins.Top = 5
Margins.Right = 0
Margins.Bottom = 10
CustomBorderColors.None = 15921906
CustomBorderColors.Hover = 15132390
CustomBorderColors.Press = 13421772
CustomBorderColors.Disabled = 15921906
CustomBorderColors.Focused = 15921906
CustomBackColors.None = 15921906
CustomBackColors.Hover = 15132390
CustomBackColors.Press = 13421772
CustomBackColors.Disabled = 15921906
CustomBackColors.Focused = 15921906
CustomTextColors.Disabled = clGray
Text = 'Check for update'
Align = alTop
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TabOrder = 0
TabStop = True
OnClick = btnCheckUpdateClick
end
object pbDownload: TUProgressBar
Left = 0
Top = 98
Width = 698
Height = 19
Value = 0
Orientation = oHorizontal
CustomFillColor = 2469894
CustomBackColor = 15132390
Align = alTop
end
end
object tbsDocks: TTabSheet
Caption = 'tbsDocks'
ImageIndex = 2
TabVisible = False
object UText2: TUText
AlignWithMargins = True
Left = 0
Top = 20
Width = 698
Height = 28
Margins.Left = 0
Margins.Top = 20
Margins.Right = 0
Margins.Bottom = 5
Align = alTop
Caption = 'Docks'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -20
Font.Name = 'Segoe UI'
Font.Style = []
ParentFont = False
TextKind = tkHeading
ExplicitWidth = 53
end
end
object tbsPinnedIcons: TTabSheet
Caption = 'tbsPinnedIcons'
ImageIndex = 3
TabVisible = False
inline frameIcons1: TframeIcons
Left = 0
Top = 0
Width = 698
Height = 361
Align = alClient
TabOrder = 0
ExplicitWidth = 698
ExplicitHeight = 361
inherited UText3: TUText
Width = 698
end
inherited pnlIconOriginal: TPanel
inherited imgOriginal: TEsImageControl
ExplicitLeft = 1
ExplicitTop = 1
ExplicitWidth = 94
ExplicitHeight = 94
end
end
inherited pnlIconNew: TPanel
inherited imgNew: TEsImageControl
ExplicitLeft = 1
ExplicitTop = 1
ExplicitWidth = 94
ExplicitHeight = 94
end
end
inherited pnlIconLight: TPanel
inherited imgLight: TEsImageControl
ExplicitLeft = 1
ExplicitTop = 1
ExplicitWidth = 94
ExplicitHeight = 94
end
end
inherited Panel1: TPanel
inherited UButton1: TUButton
ThemeManager = nil
Anchors = [akLeft, akTop, akRight]
end
inherited UButton2: TUButton
ThemeManager = nil
Anchors = [akLeft, akTop, akRight]
end
inherited UButton3: TUButton
ThemeManager = nil
end
inherited UButton5: TUButton
ThemeManager = nil
end
end
end
end
object tbsMore: TTabSheet
Caption = 'tbsMore'
ImageIndex = 4
TabVisible = False
end
object tbsSkins: TTabSheet
Caption = 'tbsSkins'
ImageIndex = 5
TabVisible = False
inline frmSkin1: TfrmSkin
Left = 0
Top = 0
Width = 698
Height = 355
Align = alTop
TabOrder = 0
ExplicitWidth = 698
inherited UText3: TUText
Width = 698
end
end
end
end
end
object UCaptionBar1: TUCaptionBar
Left = 0
Top = 0
Width = 751
Height = 32
ThemeManager = UThemeManager1
Align = alTop
BevelOuter = bvNone
Caption = 'TaskbarDock'
Color = 15921906
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentBackground = False
ParentDoubleBuffered = False
ParentFont = False
TabOrder = 1
object UButton1: TUButton
Left = 704
Top = 0
Width = 47
Height = 32
CustomBorderColors.None = 15921906
CustomBorderColors.Hover = 15132390
CustomBorderColors.Press = 13421772
CustomBorderColors.Disabled = 15921906
CustomBorderColors.Focused = 15921906
CustomBackColors.None = 15921906
CustomBackColors.Hover = 15132390
CustomBackColors.Press = 13421772
CustomBackColors.Disabled = 15921906
CustomBackColors.Focused = 15921906
CustomTextColors.Disabled = clGray
Text = #57610
Align = alRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe MDL2 Assets'
Font.Style = []
ParentFont = False
TabOrder = 0
TabStop = True
OnClick = UButton1Click
end
object UButton2: TUButton
Left = 672
Top = 0
Width = 32
Height = 32
CustomBorderColors.None = 15921906
CustomBorderColors.Hover = 15132390
CustomBorderColors.Press = 13421772
CustomBorderColors.Disabled = 15921906
CustomBorderColors.Focused = 15921906
CustomBackColors.None = 15921906
CustomBackColors.Hover = 15132390
CustomBackColors.Press = 13421772
CustomBackColors.Disabled = 15921906
CustomBackColors.Focused = 15921906
CustomTextColors.Disabled = clGray
Text = #59193
Align = alRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe MDL2 Assets'
Font.Style = []
ParentFont = False
TabOrder = 1
TabStop = True
OnClick = UButton2Click
end
object UButton3: TUButton
Left = 624
Top = 0
Width = 48
Height = 32
CustomBorderColors.None = 15921906
CustomBorderColors.Hover = 15132390
CustomBorderColors.Press = 13421772
CustomBorderColors.Disabled = 15921906
CustomBorderColors.Focused = 15921906
CustomBackColors.None = 15921906
CustomBackColors.Hover = 15132390
CustomBackColors.Press = 13421772
CustomBackColors.Disabled = 15921906
CustomBackColors.Focused = 15921906
CustomTextColors.Disabled = clGray
Text = #59192
Align = alRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe MDL2 Assets'
Font.Style = []
ParentFont = False
TabOrder = 2
TabStop = True
OnClick = UButton3Click
end
object UButton4: TUButton
Left = 0
Top = 0
Width = 45
Height = 32
CustomBorderColors.None = 15921906
CustomBorderColors.Hover = 15132390
CustomBorderColors.Press = 13421772
CustomBorderColors.Disabled = 15921906
CustomBorderColors.Focused = 15921906
CustomBackColors.None = 15921906
CustomBackColors.Hover = 15132390
CustomBackColors.Press = 13421772
CustomBackColors.Disabled = 15921906
CustomBackColors.Focused = 15921906
CustomTextColors.Disabled = clGray
Text = #57510
Align = alLeft
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Segoe MDL2 Assets'
Font.Style = []
ParentFont = False
TabOrder = 3
TabStop = True
end
end
object UPanel1: TUPanel
Left = 0
Top = 32
Width = 45
Height = 371
ThemeManager = UThemeManager1
CustomTextColor = clBlack
CustomBackColor = 15132390
Align = alLeft
BevelOuter = bvNone
DoubleBuffered = True
FullRepaint = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
ParentBackground = False
ParentDoubleBuffered = False
ParentFont = False
TabOrder = 0
object USymbolButton1: TUSymbolButton
Left = 0
Top = 0
Width = 45
Height = 40
ThemeManager = UThemeManager1
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = [fsBold]
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #59136
Text = ' Menu'
Detail = 'Detail'
ShowDetail = False
Align = alTop
TabOrder = 0
TabStop = True
OnClick = USymbolButton1Click
end
object USymbolButton2: TUSymbolButton
Left = 0
Top = 291
Width = 45
Height = 40
ThemeManager = UThemeManager1
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #57621
Text = ' Settings'
Detail = 'Detail'
ShowDetail = False
Align = alBottom
TabOrder = 1
TabStop = True
OnClick = USymbolButton2Click
end
object USymbolButton3: TUSymbolButton
Left = 0
Top = 331
Width = 45
Height = 40
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #59718
Text = ' About'
Detail = 'Detail'
ShowDetail = False
Align = alBottom
TabOrder = 2
TabStop = True
OnClick = USymbolButton3Click
end
object USymbolButton4: TUSymbolButton
Left = 0
Top = 40
Width = 45
Height = 40
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #59249
Text = ' Customize Icons'
Detail = 'Detail'
ShowDetail = False
Align = alTop
TabOrder = 3
TabStop = True
OnClick = USymbolButton4Click
end
object USymbolButton5: TUSymbolButton
Left = 0
Top = 80
Width = 45
Height = 40
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #62022
Text = ' Docks'
Detail = 'Detail'
ShowDetail = False
Align = alTop
TabOrder = 4
TabStop = True
OnClick = USymbolButton5Click
end
object USymbolButton6: TUSymbolButton
Left = 0
Top = 160
Width = 45
Height = 40
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #59154
Text = ' Misc'
Detail = 'Detail'
ShowDetail = False
Align = alTop
TabOrder = 5
TabStop = True
end
object USymbolButton7: TUSymbolButton
Left = 0
Top = 120
Width = 45
Height = 40
SymbolFont.Charset = DEFAULT_CHARSET
SymbolFont.Color = clWindowText
SymbolFont.Height = -16
SymbolFont.Name = 'Segoe MDL2 Assets'
SymbolFont.Style = []
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Segoe UI'
TextFont.Style = []
DetailFont.Charset = DEFAULT_CHARSET
DetailFont.Color = clWindowText
DetailFont.Height = -13
DetailFont.Name = 'Segoe UI'
DetailFont.Style = []
SymbolChar = #60524
Text = ' Theme'
Detail = 'Detail'
ShowDetail = False
Align = alTop
TabOrder = 6
TabStop = True
OnClick = USymbolButton7Click
end
end
object TrayIcon1: TTrayIcon
PopupMenu = PopupMenu1
Visible = True
OnDblClick = TrayIcon1DblClick
Left = 304
Top = 352
end
object PopupMenu1: TPopupMenu
OnPopup = PopupMenu1Popup
Left = 304
Top = 272
object mnuStart: TMenuItem
Caption = 'Show &Start button'
Checked = True
OnClick = mnuStartClick
end
object mnuTray: TMenuItem
Caption = 'Show &Tray area'
Checked = True
OnClick = mnuTrayClick
end
object mnuFull: TMenuItem
Caption = '&Full'
Visible = False
OnClick = mnuFullClick
end
object mnuTransparent: TMenuItem
Caption = 'Tra&nsparent'
OnClick = mnuTransparentClick
end
object mnuCenterRelative: TMenuItem
Caption = 'Center &Relative'
OnClick = mnuCenterRelativeClick
end
object mnuCenter: TMenuItem
Caption = '&Center'
OnClick = mnuCenterClick
end
object mnuSmall: TMenuItem
Caption = 'Small Icons'
OnClick = mnuSmallClick
end
object N2: TMenuItem
Caption = '-'
Visible = False
end
object mnuPinnedIcons: TMenuItem
Caption = 'Pinned Icons'
Visible = False
end
object N1: TMenuItem
Caption = '-'
end
object mnuStartwithWindows: TMenuItem
Caption = 'Start with &Windows'
OnClick = mnuStartwithWindowsClick
end
object mnuAbout: TMenuItem
Caption = '&About'
OnClick = mnuAboutClick
end
object N3: TMenuItem
Caption = '-'
end
object Exit1: TMenuItem
Caption = 'E&xit'
OnClick = Exit1Click
end
end
object tmrUpdateTBinfo: TTimer
Enabled = False
OnTimer = tmrUpdateTBinfoTimer
Left = 384
Top = 352
end
object tmrOptions: TTimer
Interval = 250
OnTimer = tmrOptionsTimer
Left = 152
Top = 352
end
object tmrThreadWaiter: TTimer
Enabled = False
OnTimer = tmrThreadWaiterTimer
Left = 232
Top = 352
end
object tmrCenter: TTimer
Enabled = False
Interval = 100
OnTimer = tmrCenterTimer
Left = 80
Top = 352
end
object MadExceptionHandler1: TMadExceptionHandler
Left = 496
Top = 352
end
object UThemeManager1: TUThemeManager
Left = 680
Top = 352
end
end