-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
1425 lines (1425 loc) · 52.5 KB
/
unit1.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 Form1: TForm1
Left = 628
Height = 475
Top = 254
Width = 475
BorderIcons = [biSystemMenu]
Caption = 'Colors+'
ClientHeight = 475
ClientWidth = 475
Color = clWhite
Constraints.MaxHeight = 475
Constraints.MaxWidth = 475
Constraints.MinHeight = 475
Constraints.MinWidth = 475
FormStyle = fsSystemStayOnTop
Icon.Data = {
BE0C00000000010001002020000001001800A80C000016000000280000002000
0000400000000100180000000000000C00006400000064000000000000000000
00000000A80000A80000AC0000AC0000AD0000B30000BE0003CA000DDC000F39
001835002437022F37033A3A04433E05484106484206423E083A390C3434112D
2B17262320231CE1B682DDB778DDB971DDBC6DDDC16BDFC56DE3C971E3CB71E5
CD750000A80000AC0000AC0000AC0000AF0000B90000C40008D3000C45001742
01264603374A04474F06585B0864640A6D6B0A6C6C0A63650C575A104A4E143D
421A3135202829292520E3B885DFB97BDDBA73DDBE6EDFC26DE1C66FE3C971E3
CB710000A80000AC0000AC0000AD0000B30000BD0004CE00094D00134C002351
8CC5E392D0E897D8EC9CDDF09FE1F2A0E4F4A0E4F4A0E1F29FDDF09FD7EC9ED0
E79FC7E123303F2A2830322623E3B886DDB779DDBA74DDBE6EDFC26DE1C66FE3
C9710000AC0000AC0000AD0000B10000B90000C4000551000E52001C560589DB
92CEEA6CFCFF6DFCFF6FFCFF6FFCFF70FCFF70FCFF71FCFF75FCFF7AFCFF80FC
FFA4CFE9826EF32A2B432F2433392424E3B787DFB87CDDBA74DDBE6EDFC26DDF
C56D0000AD0000AF0000B30000B90000C200014F000952001659037EDA0896DF
97D5EE6FFCFF6FFCFF6FFCFF6FFCFF70FCFF73FCFF74FCFF77FCFF7DFCFF82FC
FFA7D3EE8271F4835AF23025443420313C2124E3B687DFB87CDDBA74DDBE6EDD
C16B0000B30000B90000BE0000C400025200075300115A0677DB0A8DDF11A5E5
9EDCF375FCFF75FCFF77FCFF77FCFF77FCFF78FCFF7AFCFF7EFCFF84FCFF89FC
FFADD9F3887DF58661F3864FF23522443A1F333D2124E5B88BDFB87BDDBA74DD
BC6D0000BD0000C60004CF00055600095602125F0C75DC128AE0189FE529B5EB
A7E2F77FFCFF7FFCFF81FCFF80FCFF81FCFF81FCFF83FCFF88FCFF8CFCFF93FD
FFB4DFF8928BF68C6DF38B58F28C4DF23B22483C21363F2428E5B88ADFB87CDD
BA740001CA0007D3000851020D5605145D1377DC1986DF209BE52EAFEA40C2EF
B1E8FB8AFCFF8AFCFF8AFCFF89FCFF89FCFF8CFDFF8EFDFF93FDFF96FDFF9CFD
FFBDE5FC9C99F7977DF59166F38F56F28D4DF23A23493923363B2526E3B786DD
B67A030ADA030A4707104F0A18591D7CDC2389E02B9BE539ADEA49BCEF58CCF3
B9EBFD96FDFF97FDFF96FDFF95FDFF97FDFF98FDFF99FDFF9CFDFFA1FDFFA4FD
FFC4E9FEA8A9F9A391F79D79F59867F39359F29154F2392748352533322221DF
B481050A380912450F1D532782DC2F90E1399DE547ADEB59BCEF63C8F370D5F7
C2EEFFA1FDFFA3FDFFA2FDFFA0FDFFA2FDFFA3FDFFA3FDFFA7FDFFAAFDFFAEFD
FFCBEDFFB2B7FAAEA3F8AB90F7A47EF59D70F49764F3915DF23328402B212A26
1C190A1235121D459EBFE2A4C7E9AED0EEB4D6F2B9DCF6C0E3FAC4E8FDC8ECFF
CCF1FFCDF3FFD0F6FFD1F8FFD2F9FFD3FAFFD3FAFFD2F9FFD1F7FFD1F5FFD2F2
FFD2EFFFD1EBFFD0E6FDCEE1FBCADBF8C4D5F4BFCFEFB7C8E8B1C2E12A243220
1B1E1018331B284AA7C7E6F5FFFFF6FFFFF6FFFFF6FFFFF6FFFFF7FFFFF7FFFF
F7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FF
FFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF7FFFFF6FFFFF6FFFFB2C7E529283A1C
1A23161F3223314BAFCDE9F6FFFFF6FFFFF6FFFFF6FFFFF7FFFFF7FFFFF7FFFF
F7FFFFF7FFFFF7FFFFF8FFFFF8FFFFF8FFFFF8FFFFF7FFFFF7FFFFF7FFFFF7FF
FFF8FFFFF8FFFFF8FFFFF8FFFFF7FFFFF7FFFFF6FFFFF6FFFFB5CCE8272C3E19
1C2618223029394EB3D0EBF6FFFF285076305C80F7FFFFF8FFFF4C7A974E7D97
F8FFFFF8FFFF51859AF7FFFFF8FFFF50829A4F7F98F8FFFFF8FFFF547999F8FF
FFF7FFFF3C5A85304B77F8FFFFF8FFFFF8FFFFF8FFFFF8FFFFB4CDE8262D4018
1C261D2733304153B9D5ED26496CF7FFFFF7FFFFF8FFFF547B97F8FFFFF8FFFF
59819AF8FFFF59839BF8FFFF568199F8FFFFF8FFFF577E98F8FFFF5C7F9BF8FF
FFF8FFFFF7FFFFF7FFFF274168F8FFFFF8FFFF4C6789F8FFFFB6D0EB29344519
2029212C36344657BCD7EF2C5070F7FFFFF7FFFFF8FFFF5D809AF8FFFFF8FFFF
5E8199F8FFFF5D8199F8FFFF5B8099F8FFFFF8FFFF5C809AF8FFFF5F809AF8FF
FFF8FFFFF7FFFF385C7DF8FFFFF8FFFF66809A67829A66809AB9D3EC2C39481A
222B222C37364658BDD7EF305071F7FFFFF8FFFFF8FFFF62809AF8FFFFF9FFFF
628199F9FFFF618199F8FFFF5F8098F8FFFFF8FFFF5E8098F8FFFF5F8199F8FF
FFF8FFFF456B89F7FFFFF8FFFFF8FFFFF8FFFF4C6789F8FFFFBAD5ED2D3C4C1B
242E232B38364357BED5EEF7FFFF3F5C7F4C6789F9FFFFF8FFFF66809A67829A
F8FFFFF9FFFF648397F9FFFFF8FFFF628197618298F8FFFFF8FFFF5E81995D81
9AF9FFFFF8FFFF325C7E25486CF8FFFFF8FFFFF8FFFFF8FFFFB7D3EC2B3C4C1A
262F232C3B364259BED5EFF7FFFFF7FFFFF8FFFFF8FFFFF9FFFFF9FFFFF9FFFF
F9FFFFF9FFFF6A8697F9FFFFF9FFFFF9FFFFF9FFFFF9FFFFF8FFFFF8FFFFF8FF
FFF8FFFFF7FFFFF7FFFFF6FFFFF6FFFFF8FFFFF8FFFFF8FFFFB6D5ED2A3E4E1B
2932222C3F353F5BBED3EEF7FFFFF7FFFFF8FFFFF9FFFFF9FFFFF9FFFFF9FFFF
F9FFFFF9FFFFF8FFFFF9FFFFF9FFFFF9FFFFF9FFFFF9FFFFF9FFFFF8FFFFF8FF
FFF7FFFFF7FFFFF6FFFFF6FFFFF6FFFFF8FFFFF8FFFFF8FFFFB3D4EC28415019
2C32212F45333E5EBBD0EDF7FFFFF7FFFFF8FFFFF9FFFFF9FFFFFAFFFFFAFFFF
FAFFFFFAFFFFFAFFFFFAFFFFFAFFFFFAFFFFFAFFFFFAFFFFF9FFFFF9FFFFF9FF
FFF8FFFFF8FFFFF7FFFFF7FFFFF7FFFFF6FFFFF6FFFFF5FFFFB0D4EC24454C18
33321E324E2E3C5FB7CDEBC1D1EFCAD6F3D2DAF6DADEF9E0E3FBE4E7FDE7EBFF
EAEFFFEBF2FFEDF5FFEDF7FFEEF8FFEFF9FFEEF9FFEDF9FFEAF8FFE7F7FFE3F5
FFDEF4FFD9F2FFD3EFFFCCECFFC5E7FCBEE3F9B7DEF5AFD8F0A9D1E91D464414
382C1C3A5F283D68374278E374E1E679E5E97EE6EC88E9EE97ECF0A8EFF1BAF2
EAECFEF7FBFFF7FBFFF6FBFFF6FBFCF6FAFBF6FAFBF6FBFEF7FBFFF7FCFFF8FC
FFDBF3FFAFEEFFA0E9FF90E3FE80DDFD71D8FD67D5FC5FD1FC1E595D164B3B10
42287CF5FF24497D3146813F4386DD6CE1DF6EE2E576E4EB82E6EE95E9F0ACED
E8E8FBF6FBFFF6FBFCF5FAF6F5FAF2F5F9EFF5F9EFF5FAF4F6FAFBF6FBFFF7FC
FFD7F0FFA6EBFF91E4FE7EDEFD6DD8FD60D5FC57D2FC196169155B4D1056324C
F4B476F6FF80F6FF29539435488E40408BDD69E1DD6AE0E374E1EC86E4EE9EE8
E5E4F7F6FAFBF5FAF4F5F9EDF4F9E8F4F8E4F4F8E4F5F9ECF5FAF2F5FAF9F6FB
FFD1EDFC99E6FE84E0FE6FDBFD5FD6FC53D3FC16696F1266560F66404AF4B742
F3A972F7FF78F6FF81F6FF2B559E3346923F3F89DB67DFDD6ADFE175DEEC8DE2
DDDDF0F5FAF2F5F9ECF4F8E2F3F8DEF3F8D8F3F8DCF3F8E0F4F9E8F5F9EFF5FA
F8CAE8F78CE2FE72DBFD60D6FC51D4FC1066650C68540B6F4546F4B53EF3A73B
F39B6DF8FF72F8FF79F7FF81F6FF2B539F33458E3D3D7FD966DCDD6DDCE782DE
D5D8EBF5F9ECF4F8E2F3F8DCF3F8D5F2F7D1F2F7D1F3F8D7F3F8E0F4F9E8F5F9
EFC2E3F17DDCFD67D7FC54D4FC10645A0B684E076F4242F4B53BF3A739F39B36
F2926AF9FF6DF8FF72F8FF79F7FF81F6FF2A539B3344843C3C6CDB6BDAE37BDA
CCD3E6F4F8E4F3F8DEF3F8D5F2F7D0F2F7CAF2F7CEF2F7D1F3F8D8F3F8E0F5F9
EABADDEB72D9FD5DD5FC14624E0C6544076E3C3DF4B238F3A837F39B34F29231
F1886BFAFF6CF9FF6DF8FF73F8FF79F7FF81F6FF2B53923245743C3F5CE178D9
C5D1E3F4F8E4F3F8DCF3F8D3F2F7CEF2F7CAF2F7CAF2F7D0F3F8D6F3F8DEF4F8
E4B4D9E66CD6FC1C5F411161390A6B3640F4B038F3A835F39C34F29231F18831
F1856CFAFF6CFAFF6CF9FF6DF8FF72F8FF79F7FF81F6FF284F7E2F435D384148
B8CBDFBFD0DFC5D5DFC9D9E1CDDDE3CFDFE5CDE0E6CADFE5C5DCE3BED9E2B5D5
DFAAD1DE21562C16582A0F612542F3AD3BF3A437F39B34F29232F18932F18534
F1856BFBFF6CFAFF6CFAFF6CF9FF6DF8FF72F8FF79F6FF81F6FF234660293D45
2E3B323640233F481A444F124A580E4C5E0B4B600D475B0F3F5612364F162B4A
1821481B184A1C11531B44F3A93DF39F37F39934F29231F18832F18534F18534
F1836DFBFF6BFBFF6CFAFF6BFAFF6AF9FF6DF8FF72F7FF79F6FF80F6FF1E3A42
21342D25321D2A33132E370C323C08344006344207303E082B3C0B24380C1E38
0E183B0F12421146F3A33EF39B38F29536F29131F18831F18534F18534F18336
F183000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000
}
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.2.6.0'
Visible = True
object PageControl1: TPageControl
Left = 0
Height = 475
Top = 0
Width = 475
ActivePage = TabSheet1
TabIndex = 0
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'Color'
ClientHeight = 447
ClientWidth = 467
object GroupBox1: TGroupBox
Left = 8
Height = 214
Top = 10
Width = 212
Caption = 'Color'
ClientHeight = 194
ClientWidth = 208
TabOrder = 0
object Panel1: TPanel
Left = 8
Height = 32
Top = 8
Width = 32
BevelColor = clBlack
Color = clRed
ParentColor = False
TabOrder = 0
OnClick = ColorPanelClick
end
object Panel2: TPanel
Left = 48
Height = 32
Top = 8
Width = 32
BevelColor = clBlack
Color = clLime
ParentColor = False
TabOrder = 1
OnClick = ColorPanelClick
end
object Panel3: TPanel
Left = 88
Height = 32
Top = 8
Width = 32
BevelColor = clBlack
Color = clBlue
ParentColor = False
TabOrder = 2
OnClick = ColorPanelClick
end
object Panel4: TPanel
Left = 128
Height = 32
Top = 8
Width = 32
BevelColor = clBlack
Color = clBlack
ParentColor = False
TabOrder = 3
OnClick = ColorPanelClick
end
object Panel5: TPanel
Left = 168
Height = 32
Top = 8
Width = 32
BevelColor = clBlack
Color = clGray
ParentColor = False
TabOrder = 4
OnClick = ColorPanelClick
end
object Panel6: TPanel
Left = 48
Height = 32
Top = 48
Width = 32
BevelColor = clBlack
Color = clYellow
ParentColor = False
TabOrder = 5
OnClick = ColorPanelClick
end
object Panel7: TPanel
Left = 8
Height = 32
Top = 48
Width = 32
BevelColor = clBlack
Color = clFuchsia
ParentColor = False
TabOrder = 6
OnClick = ColorPanelClick
end
object Panel8: TPanel
Left = 128
Height = 32
Top = 48
Width = 32
BevelColor = clBlack
Color = clSilver
ParentColor = False
TabOrder = 7
OnClick = ColorPanelClick
end
object Panel9: TPanel
Left = 88
Height = 32
Top = 48
Width = 32
BevelColor = clBlack
Color = clAqua
ParentColor = False
TabOrder = 8
OnClick = ColorPanelClick
end
object Panel10: TPanel
Left = 168
Height = 32
Top = 48
Width = 32
BevelColor = clBlack
Color = clWhite
ParentColor = False
TabOrder = 9
OnClick = ColorPanelClick
end
object Panel11: TPanel
Left = 48
Height = 32
Top = 88
Width = 32
BevelColor = clBlack
Color = 16711808
ParentColor = False
TabOrder = 10
OnClick = ColorPanelClick
end
object Panel12: TPanel
Left = 88
Height = 32
Top = 88
Width = 32
BevelColor = clBlack
Color = 8388863
ParentColor = False
TabOrder = 11
OnClick = ColorPanelClick
end
object Panel13: TPanel
Left = 8
Height = 32
Top = 88
Width = 32
BevelColor = clBlack
Color = 33023
ParentColor = False
TabOrder = 12
OnClick = ColorPanelClick
end
object Panel14: TPanel
Left = 168
Height = 32
Top = 88
Width = 32
BevelColor = clBlack
Color = clGreen
ParentColor = False
TabOrder = 13
OnClick = ColorPanelClick
end
object Panel15: TPanel
Left = 128
Height = 32
Top = 88
Width = 32
BevelColor = clBlack
Color = 4210816
ParentColor = False
TabOrder = 14
OnClick = ColorPanelClick
end
object Button2: TButton
Left = 8
Height = 25
Top = 128
Width = 192
Caption = 'Set Custom Color'
OnClick = Button2Click
TabOrder = 15
end
object Button3: TButton
Left = 8
Height = 25
Top = 160
Width = 192
Caption = 'Set Random Color'
OnClick = Button3Click
TabOrder = 16
end
end
object GroupBox2: TGroupBox
Left = 237
Height = 105
Top = 10
Width = 220
Caption = 'Transparency'
ClientHeight = 85
ClientWidth = 216
TabOrder = 1
object TrackBar1: TTrackBar
Left = 10
Height = 25
Top = 16
Width = 196
Frequency = 5
Max = 255
OnChange = TrackBar1Change
Position = 55
Reversed = True
TabOrder = 0
end
object Label1: TLabel
Left = 179
Height = 20
Top = -5
Width = 27
Alignment = taRightJustify
Caption = '200'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Button1: TButton
Left = 10
Height = 25
Top = 48
Width = 196
Caption = 'Set Current Color as Colorkey'
OnClick = Button1Click
TabOrder = 1
end
end
object GroupBox4: TGroupBox
Left = 8
Height = 168
Top = 240
Width = 212
Caption = 'Position and Dimensions'
ClientHeight = 148
ClientWidth = 208
TabOrder = 2
object Label3: TLabel
Left = 10
Height = 20
Top = 13
Width = 12
Caption = 'X:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object Label4: TLabel
Left = 11
Height = 20
Top = 45
Width = 11
Caption = 'Y:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object Label5: TLabel
Left = 8
Height = 20
Top = 77
Width = 17
Caption = 'W:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object Label6: TLabel
Left = 8
Height = 20
Top = 109
Width = 14
Caption = 'H:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object TrackBar2: TTrackBar
Left = 32
Height = 25
Top = 8
Width = 174
Frequency = 5
OnChange = TrackBar2Change
Position = 0
TabOrder = 0
end
object TrackBar3: TTrackBar
Left = 32
Height = 25
Top = 40
Width = 174
Frequency = 5
OnChange = TrackBar2Change
Position = 0
TabOrder = 1
end
object TrackBar4: TTrackBar
Left = 32
Height = 25
Top = 72
Width = 174
Frequency = 5
OnChange = TrackBar2Change
Position = 0
TabOrder = 2
end
object TrackBar5: TTrackBar
Left = 32
Height = 25
Top = 104
Width = 174
Frequency = 5
OnChange = TrackBar2Change
Position = 0
TabOrder = 3
end
end
object Button4: TButton
Left = 8
Height = 25
Top = 416
Width = 212
Caption = 'Reset Overlay'
OnClick = Button4Click
TabOrder = 3
end
object ToggleBox1: TToggleBox
Left = 237
Height = 25
Top = 416
Width = 220
Caption = 'Turn Overlay Off'
OnChange = ToggleBox1Change
TabOrder = 4
end
object GroupBox8: TGroupBox
Left = 237
Height = 193
Top = 125
Width = 220
Caption = 'Overlay Options'
ClientHeight = 173
ClientWidth = 216
TabOrder = 5
object Button13: TButton
Left = 10
Height = 25
Top = 40
Width = 196
Caption = 'Edit Overlay by Hand'
OnClick = Button13Click
TabOrder = 0
end
object Button10: TButton
Left = 10
Height = 25
Top = 72
Width = 196
Caption = 'Full Size on current Screen'
OnClick = Button10Click
TabOrder = 1
end
object Button9: TButton
Left = 10
Height = 25
Top = 136
Width = 196
Caption = 'Full Size on all Screens'
OnClick = Button9Click
TabOrder = 2
end
object Button8: TButton
Left = 10
Height = 25
Top = 8
Width = 196
Caption = 'Fix Color on Multi Monitor Setup'
OnClick = Button8Click
TabOrder = 3
end
object Button18: TButton
Left = 10
Height = 25
Top = 104
Width = 150
Caption = 'Full Size on Specific Screen'
OnClick = Button18Click
TabOrder = 4
end
object SpinEdit3: TSpinEdit
Left = 167
Height = 23
Top = 105
Width = 38
OnChange = SpinEdit3Change
TabOrder = 5
end
end
object GroupBox10: TGroupBox
Left = 237
Height = 80
Top = 328
Width = 220
Caption = 'Attach to Window'
ClientHeight = 60
ClientWidth = 216
TabOrder = 6
object Edit1: TEdit
Left = 125
Height = 23
Top = 1
Width = 80
Alignment = taCenter
NumbersOnly = True
TabOrder = 0
Text = '0'
TextHint = 'Target Handle'
end
object ToggleBox3: TToggleBox
Left = 10
Height = 25
Top = 0
Width = 110
Caption = 'Attach to Window'
OnChange = ToggleBox3Change
TabOrder = 1
end
object Label2: TLabel
Left = 10
Height = 15
Top = 36
Width = 59
Caption = 'Correction:'
ParentColor = False
end
object SpinEdit4: TSpinEdit
Left = 80
Height = 23
Top = 32
Width = 125
MaxValue = 32
MinValue = -32
TabOrder = 2
end
end
end
object TabSheet2: TTabSheet
Caption = 'Text and Images'
ClientHeight = 447
ClientWidth = 467
object GroupBox6: TGroupBox
Left = 8
Height = 398
Top = 10
Width = 212
Caption = 'Text'
ClientHeight = 378
ClientWidth = 208
TabOrder = 0
object Memo1: TMemo
Left = 8
Height = 178
Top = 8
Width = 192
OnChange = Memo1Change
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
object Button7: TButton
Left = 8
Height = 25
Top = 192
Width = 89
Caption = 'Edit Font'
OnClick = Button7Click
TabOrder = 1
end
object Label8: TLabel
Left = 8
Height = 20
Top = 239
Width = 12
Caption = 'X:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object Label9: TLabel
Left = 9
Height = 20
Top = 277
Width = 11
Caption = 'Y:'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object TrackBar6: TTrackBar
Left = 32
Height = 25
Top = 234
Width = 174
Frequency = 5
OnChange = TrackBar6Change
Position = 0
TabOrder = 2
end
object TrackBar7: TTrackBar
Left = 32
Height = 25
Top = 272
Width = 174
Frequency = 5
OnChange = TrackBar6Change
Position = 0
TabOrder = 3
end
object Button15: TButton
Left = 8
Height = 25
Top = 312
Width = 193
Caption = 'Import from Textfile'
OnClick = Button15Click
TabOrder = 4
end
object Button16: TButton
Left = 8
Height = 25
Top = 344
Width = 193
Caption = 'Save as Textfile'
OnClick = Button16Click
TabOrder = 5
end
object Button17: TButton
Left = 111
Height = 25
Top = 192
Width = 89
Caption = 'Clear Text'
OnClick = Button17Click
TabOrder = 6
end
end
object GroupBox7: TGroupBox
Left = 237
Height = 398
Top = 10
Width = 220
Caption = 'Images'
ClientHeight = 378
ClientWidth = 216
TabOrder = 1
object Button11: TButton
Left = 11
Height = 25
Top = 8
Width = 193
Caption = 'Load Fullscreen Stretched Image'
OnClick = Button11Click
TabOrder = 0
end
object Button12: TButton
Left = 11
Height = 25
Top = 344
Width = 193
Caption = 'Delete all Images'
OnClick = Button12Click
TabOrder = 1
end
object GroupBox9: TGroupBox
Left = 11
Height = 281
Top = 48
Width = 193
Caption = 'Dynamic Image Creation'
ClientHeight = 261
ClientWidth = 189
TabOrder = 2
object Button14: TButton
Left = 11
Height = 25
Top = 10
Width = 166
Caption = 'Create a new Image'
OnClick = Button14Click
TabOrder = 0
end
object RadioGroup1: TRadioGroup
Left = 11
Height = 49
Top = 48
Width = 166
AutoFill = True
Caption = 'Options'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 2
ClientHeight = 29
ClientWidth = 162
Columns = 2
TabOrder = 1
object RadioButton1: TRadioButton
Left = 6
Height = 29
Top = 0
Width = 60
Caption = 'Full'
Checked = True
OnChange = RadioButton1Change
TabOrder = 1
TabStop = True
end
object RadioButton2: TRadioButton
Left = 66
Height = 29
Top = 0
Width = 90
Caption = 'Stretched'
TabOrder = 0
end
end
object CheckGroup2: TCheckGroup
Left = 11
Height = 56
Top = 104
Width = 166
AutoFill = True
Caption = 'Stretched Height/Width'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 3
ClientHeight = 36
ClientWidth = 162
Columns = 3
Enabled = False
TabOrder = 2
object SpinEdit1: TSpinEdit
Left = 6
Height = 24
Top = 6
Width = 64
MaxValue = 9999
MinValue = 1
TabOrder = 0
Value = 64
end
object Label11: TLabel
Left = 70
Height = 24
Top = 6
Width = 23
Alignment = taCenter
Caption = 'X'
Font.CharSet = ANSI_CHARSET
Font.Height = -16
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object SpinEdit2: TSpinEdit
Left = 93
Height = 24
Top = 6
Width = 63
MaxValue = 9999
MinValue = 1
TabOrder = 1
Value = 64
end
end
object Label12: TLabel
Left = 11
Height = 96
Top = 162
Width = 166
Alignment = taCenter
AutoSize = False
Caption = 'How to move Dynamic Images:'#13#10'Use the Edit Overlay by Hand'#13#10'Button from the first Page and'#13#10'drag the Images to their new'#13#10'Position. Right Click Changes'#13#10'Priority and Double Click exits'#13#10'manual editing mode.'
Font.CharSet = ANSI_CHARSET
Font.Height = -11
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
end
end
object ToggleBox2: TToggleBox
Left = 8
Height = 25
Top = 416
Width = 444
Caption = 'Priority: Images over Text'
OnChange = ToggleBox2Change
TabOrder = 2
end
end
object TabSheet4: TTabSheet
Caption = 'Info'
ClientHeight = 447
ClientWidth = 467
object CheckGroup1: TCheckGroup
Left = 8
Height = 257
Top = 10
Width = 204
AutoFill = True
Caption = 'Settings'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 237
ClientWidth = 200
TabOrder = 0
object CheckBox1: TCheckBox
Left = 6
Height = 57
Top = 6
Width = 188
Caption = 'Disable Topmost Status'
OnChange = CheckBox1Change
TabOrder = 0
end
object CheckBox3: TCheckBox
Left = 6
Height = 57
Top = 63
Width = 188
Caption = 'Disable Overlay Topmost Status'
OnChange = CheckBox3Change
TabOrder = 2
end
object CheckBox2: TCheckBox
Left = 6
Height = 57
Top = 120
Width = 188
Caption = 'Disable Tray Icon'
OnChange = CheckBox2Change
TabOrder = 1
end
object CheckBox4: TCheckBox
Left = 6
Height = 54
Top = 177
Width = 188
Caption = 'Auto Save/Load Settings'
OnChange = CheckBox4Change
TabOrder = 3
end
end
object Label10: TLabel
Left = 0
Height = 1
Top = 0
Width = 1
Font.CharSet = ANSI_CHARSET
Font.Color = clWhite
Font.Height = -21
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
Visible = False
end
object GroupBox5: TGroupBox
Left = 224
Height = 257
Top = 10
Width = 232
Caption = 'About'
ClientHeight = 237
ClientWidth = 228
TabOrder = 1
object Label7: TLabel
Left = 77
Height = 45
Top = 8
Width = 79
Caption = 'Colors+'#13#10'Version 1.0.2'#13#10'©EthernalStar'
Font.CharSet = ANSI_CHARSET
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Button19: TButton
Left = 7
Height = 25
Top = 81
Width = 213
Caption = 'See latest Changelog'
OnClick = Button19Click
TabOrder = 0
end
object Button20: TButton
Left = 7
Height = 25
Top = 112
Width = 213
Caption = 'See License Information'
OnClick = Button20Click
TabOrder = 1
end
object Label13: TLabel
Cursor = crHandPoint
Left = 77
Height = 17
Hint = 'Write me an E-Mail with Questions or Feedback.'
Top = 55
Width = 143
Caption = '[email protected]'