-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAppear.dfm
1410 lines (1410 loc) · 36.9 KB
/
Appear.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
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 FSettings: TFSettings
Left = 704
Top = 200
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Global Settings'
ClientHeight = 480
ClientWidth = 403
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label3: TLabel
Left = 256
Top = 178
Width = 69
Height = 13
AutoSize = False
Caption = ', using Monitor'
OnClick = Label2Click
end
object Label7: TLabel
Left = 27
Top = 312
Width = 146
Height = 13
Caption = 'Scale projection as if screen is:'
end
object Label8: TLabel
Left = 292
Top = 309
Width = 11
Height = 13
Caption = 'px'
end
object Button1: TButton
Left = 170
Top = 448
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 1
OnClick = Button1Click
end
object TCSettings: TTabControl
Left = 0
Top = 0
Width = 401
Height = 439
TabOrder = 0
Tabs.Strings = (
'Appearance'
'General'
'CCLI')
TabIndex = 0
OnChange = TCSettingsChange
object PGeneral: TPanel
Left = 8
Top = 24
Width = 385
Height = 405
TabOrder = 2
object gbSongList: TGroupBox
Left = 14
Top = 247
Width = 359
Height = 81
Caption = 'Song Lists'
TabOrder = 0
object CBRemoveSort: TCheckBox
Left = 68
Top = 14
Width = 277
Height = 17
Alignment = taLeftJustify
Caption = 'Key shortcuts stay with songs when moved in orders'
TabOrder = 0
end
object CBPreviewAspect: TCheckBox
Left = 70
Top = 34
Width = 275
Height = 17
Alignment = taLeftJustify
Caption = 'Retain aspect ratio when resizing Preview Windows'
Checked = True
State = cbChecked
TabOrder = 1
end
object CBAutoOHP: TCheckBox
Left = 95
Top = 55
Width = 250
Height = 17
Alignment = taLeftJustify
Caption = 'Tick OHP used box when songs are displayed'
Checked = True
State = cbChecked
TabOrder = 2
end
end
object gbProject: TGroupBox
Left = 14
Top = 7
Width = 359
Height = 237
Caption = 'Projecting'
TabOrder = 1
object Label2: TLabel
Left = 235
Top = 146
Width = 69
Height = 13
AutoSize = False
Caption = ', using Monitor'
OnClick = Label2Click
end
object Label4: TLabel
Left = 242
Top = 174
Width = 15
Height = 13
AutoSize = False
Caption = 'if <'
end
object Label5: TLabel
Left = 298
Top = 174
Width = 51
Height = 13
Caption = 'titles found'
end
object LScaleProj1: TLabel
Left = 77
Top = 204
Width = 146
Height = 13
Caption = 'Scale projection as if screen is:'
end
object Label11: TLabel
Left = 334
Top = 203
Width = 11
Height = 13
Caption = 'px'
end
object cbProjectNext: TCheckBox
Left = 152
Top = 58
Width = 193
Height = 17
Alignment = taLeftJustify
Caption = 'On '#39'Project Page'#39' select next page'
TabOrder = 0
end
object cbPowerPoint: TCheckBox
Left = 111
Top = 78
Width = 234
Height = 17
Alignment = taLeftJustify
Caption = 'Make '#39'B'#39' key blank screen, like Powerpoint'
TabOrder = 1
end
object AutoViewSingle1: TCheckBox
Left = 48
Top = 37
Width = 297
Height = 17
Alignment = taLeftJustify
Caption = 'Automatically view first page of songs with only one page'
Checked = True
State = cbChecked
TabOrder = 2
end
object AutoView1: TCheckBox
Left = 112
Top = 17
Width = 233
Height = 17
Alignment = taLeftJustify
Caption = 'Automatically view first page for every song'
TabOrder = 3
end
object IgnoreDoubleClicks: TCheckBox
Left = 168
Top = 98
Width = 177
Height = 17
Alignment = taLeftJustify
Caption = 'Ignore accidental double-clicks'
TabOrder = 4
end
object cbDualMonitor: TCheckBox
Left = 69
Top = 145
Width = 165
Height = 17
Alignment = taLeftJustify
Caption = 'Enable Dual-Screen projection'
TabOrder = 5
OnClick = cbDualMonitorClick
end
object btMonitor: TButton
Left = 308
Top = 143
Width = 38
Height = 22
Caption = '1'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 6
OnClick = btMonitorClick
end
object ebMinLyricSearch: TEdit
Left = 261
Top = 172
Width = 33
Height = 21
Enabled = False
TabOrder = 7
Text = '4'
OnChange = ebMinLyricSearchChange
end
object cbSearchLyrics: TCheckBox
Left = 51
Top = 173
Width = 185
Height = 17
Alignment = taLeftJustify
Caption = 'Include Song lyrics in title searches'
Checked = True
State = cbChecked
TabOrder = 8
OnClick = cbSearchLyricsClick
end
object cbF2F3WinSearch: TCheckBox
Left = 53
Top = 118
Width = 292
Height = 17
Alignment = taLeftJustify
Caption = 'F2/F3 uses normal search windows in dual-screen mode'
Checked = True
State = cbChecked
TabOrder = 9
end
object CBScaleProjRes: TComboBox
Left = 228
Top = 201
Width = 103
Height = 21
ItemHeight = 13
TabOrder = 10
Text = '<none>'
OnChange = CBScaleProjResChange
end
end
object gbFiles: TGroupBox
Left = 15
Top = 331
Width = 358
Height = 63
Caption = 'Files'
TabOrder = 2
object LTempFile: TLabel
Left = 42
Top = 37
Width = 107
Height = 13
Caption = 'Put Temporary Files in:'
end
object ETempFiles: TEdit
Left = 152
Top = 34
Width = 170
Height = 21
TabOrder = 0
Text = 'C:\Temp'
end
object BitBtn1: TBitBtn
Left = 323
Top = 34
Width = 22
Height = 21
TabOrder = 1
OnClick = BitBtn1Click
Glyph.Data = {
D6020000424DD6020000000000003600000028000000100000000E0000000100
180000000000A0020000120B0000120B00000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F7F7F6A6A6A6A6A6A6A6A6A6A6A6A6A
6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A6A7F7F7FFFFFFFFFFFFF1D82B5
1B81B3187EB0167CAE1379AB1076A80D73A50B71A3086EA0066C9E046A9C0268
9A0167994A4A4A7F7F7F2287BA67CCFF2085B899FFFF6FD4FF6FD4FF6FD4FF6F
D4FF6FD4FF6FD4FF6FD4FF6FD4FF3BA0D399FFFF0167996B6B6B258ABD67CCFF
278CBF99FFFF7BE0FF7BE0FF7BE0FF7BE0FF7BE0FF7BE0FF7BE0FF7BE0FF44A9
DC99FFFF02689A6A6A6A288DC067CCFF2D92C599FFFF85EBFF85EBFF85EBFF85
EBFF85EBFF85EBFF85EBFF85EBFF4EB3E699FFFF046A9C6A6A6A2A8FC267CCFF
3398CB99FFFF91F7FF91F7FF91F7FF91F7FF91F7FF91F7FF91F7FF91F7FF57BC
EF99FFFF066C9E6A6A6A2D92C56FD4FF3499CC99FFFF99FFFF99FFFF99FFFF99
FFFF99FFFF99FFFF99FFFF99FFFF60C5F899FFFF086EA06B6B6B2F94C77BE0FF
2D92C5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81E6
FFFFFFFF0B71A38888883196C985EBFF81E6FF2D92C52D92C52D92C52D92C52D
92C52D92C5288DC02489BC2085B81C81B41B81B31B81B3FFFFFF3398CB91F7FF
8EF4FF8EF4FF8EF4FF8EF4FF8EF4FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF167C
AE888888FFFFFFFFFFFF3499CCFFFFFF99FFFF99FFFF99FFFF99FFFFFFFFFF25
8ABD2287BA1F84B71D82B51B81B3187EB0FFFFFFFFFFFFFFFFFFFFFFFF3499CC
FFFFFFFFFFFFFFFFFFFFFFFF2A8FC2FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3499CC3398CB3196C92F94C7FFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF}
end
object AutoLoad1: TCheckBox
Left = 61
Top = 13
Width = 283
Height = 17
Alignment = taLeftJustify
Caption = 'Automatically Load Most Recent Database on Startup'
TabOrder = 2
end
end
end
object PNetwork: TPanel
Left = 8
Top = 24
Width = 385
Height = 405
TabOrder = 1
Visible = False
object CBEnableSS: TCheckBox
Left = 40
Top = 16
Width = 265
Height = 17
Caption = 'Send messages to Songbase Servants running on'
TabOrder = 0
end
object MComps: TMemo
Left = 40
Top = 48
Width = 297
Height = 337
TabOrder = 1
end
end
object PCCLI: TPanel
Left = 8
Top = 24
Width = 385
Height = 405
TabOrder = 3
Visible = False
object LCRef: TLabel
Left = 8
Top = 20
Width = 67
Height = 13
Caption = 'Customer Ref.'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentColor = False
ParentFont = False
end
object LCCLicence: TLabel
Left = 11
Top = 45
Width = 64
Height = 13
Caption = 'CCLI Licence'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentFont = False
end
object LOrg: TLabel
Left = 16
Top = 95
Width = 59
Height = 13
Caption = 'Organisation'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentFont = False
end
object LMRLicense: TLabel
Left = 17
Top = 70
Width = 58
Height = 13
Caption = 'MR Licence'
end
object LOrgAd: TLabel
Left = 37
Top = 120
Width = 38
Height = 13
Caption = 'Address'
end
object LOrgTown: TLabel
Left = 48
Top = 145
Width = 27
Height = 13
Caption = 'Town'
end
object LOrgPC: TLabel
Left = 30
Top = 170
Width = 45
Height = 13
Caption = 'Postcode'
end
object LOrgCountry: TLabel
Left = 39
Top = 195
Width = 36
Height = 13
Caption = 'Country'
end
object LOrgDayTel: TLabel
Left = 19
Top = 220
Width = 56
Height = 13
Caption = 'Daytime Tel'
end
object LOrgEveTel: TLabel
Left = 18
Top = 245
Width = 57
Height = 13
Caption = 'Evening Tel'
end
object LOrgFax: TLabel
Left = 58
Top = 270
Width = 17
Height = 13
Caption = 'Fax'
end
object LOrgEmail: TLabel
Left = 47
Top = 295
Width = 28
Height = 13
Caption = 'E-mail'
end
object LOrgWeb: TLabel
Left = 36
Top = 320
Width = 39
Height = 13
Caption = 'Website'
end
object LExpiry: TLabel
Left = 220
Top = 285
Width = 54
Height = 13
Caption = 'Expiry Date'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentFont = False
end
object LRequired: TLabel
Left = 186
Top = 304
Width = 188
Height = 33
Alignment = taRightJustify
AutoSize = False
Caption = 'Underlined items are all required for CCLI report generation'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
Layout = tlBottom
WordWrap = True
end
object ELicense: TEdit
Left = 80
Top = 41
Width = 97
Height = 21
TabOrder = 1
end
object ECustRef: TEdit
Left = 80
Top = 16
Width = 97
Height = 21
TabOrder = 0
end
object EOrg: TEdit
Left = 80
Top = 91
Width = 97
Height = 21
TabOrder = 3
end
object EMRLicence: TEdit
Left = 80
Top = 66
Width = 97
Height = 21
TabOrder = 2
end
object EOrgAdd: TEdit
Left = 80
Top = 116
Width = 97
Height = 21
TabOrder = 4
end
object EOrgTown: TEdit
Left = 80
Top = 141
Width = 97
Height = 21
TabOrder = 5
end
object EOrgPostcode: TEdit
Left = 80
Top = 166
Width = 97
Height = 21
TabOrder = 6
end
object EOrgCountry: TEdit
Left = 80
Top = 191
Width = 97
Height = 21
TabOrder = 7
end
object EOrgDayTel: TEdit
Left = 80
Top = 216
Width = 97
Height = 21
TabOrder = 8
end
object EOrgEveTel: TEdit
Left = 80
Top = 241
Width = 97
Height = 21
TabOrder = 9
end
object EOrgFax: TEdit
Left = 80
Top = 266
Width = 97
Height = 21
TabOrder = 10
end
object EOrgEmail: TEdit
Tag = 12
Left = 80
Top = 291
Width = 97
Height = 21
TabOrder = 11
end
object EOrgWebsite: TEdit
Tag = 13
Left = 80
Top = 316
Width = 97
Height = 21
TabOrder = 12
end
object DTExpiry: TDateTimePicker
Tag = 23
Left = 278
Top = 281
Width = 97
Height = 21
Date = 38668.457391956020000000
Time = 38668.457391956020000000
TabOrder = 13
end
object gbCCLI: TGroupBox
Left = 188
Top = 12
Width = 187
Height = 255
Caption = 'Representative'#39's Details'
TabOrder = 14
object LRepTown: TLabel
Left = 39
Top = 126
Width = 27
Height = 13
Caption = 'Town'
end
object LRepTitle: TLabel
Left = 46
Top = 26
Width = 20
Height = 13
Caption = 'Title'
end
object LRepSurname: TLabel
Left = 24
Top = 76
Width = 42
Height = 13
Caption = 'Surname'
end
object LRepPostCode: TLabel
Left = 21
Top = 151
Width = 45
Height = 13
Caption = 'Postcode'
end
object LRepForename: TLabel
Left = 19
Top = 51
Width = 47
Height = 13
Caption = 'Forename'
end
object LRepEveTel: TLabel
Left = 9
Top = 226
Width = 57
Height = 13
Caption = 'Evening Tel'
end
object LRepDayTel: TLabel
Left = 10
Top = 201
Width = 56
Height = 13
Caption = 'Daytime Tel'
end
object LRepCountry: TLabel
Left = 30
Top = 176
Width = 36
Height = 13
Caption = 'Country'
end
object LRepAdd: TLabel
Left = 28
Top = 101
Width = 38
Height = 13
Caption = 'Address'
end
object ERepAddress: TEdit
Tag = 17
Left = 71
Top = 98
Width = 104
Height = 21
TabOrder = 3
end
object ERepTown: TEdit
Tag = 18
Left = 71
Top = 123
Width = 104
Height = 21
TabOrder = 4
end
object ERepTitle: TEdit
Tag = 14
Left = 71
Top = 23
Width = 104
Height = 21
TabOrder = 0
end
object ERepSurname: TEdit
Tag = 16
Left = 71
Top = 73
Width = 104
Height = 21
TabOrder = 2
end
object ERepPostcode: TEdit
Tag = 19
Left = 71
Top = 148
Width = 104
Height = 21
TabOrder = 5
end
object ERepForename: TEdit
Tag = 15
Left = 71
Top = 48
Width = 104
Height = 21
TabOrder = 1
end
object ERepEveTel: TEdit
Tag = 22
Left = 71
Top = 223
Width = 104
Height = 21
TabOrder = 8
end
object ERepDayTel: TEdit
Tag = 21
Left = 71
Top = 198
Width = 104
Height = 21
TabOrder = 7
end
object ERepCountry: TEdit
Tag = 20
Left = 71
Top = 173
Width = 104
Height = 21
TabOrder = 6
end
end
end
object PAppear: TPanel
Left = 8
Top = 24
Width = 385
Height = 405
TabOrder = 0
DesignSize = (
385
405)
object LPrimaryFont: TLabel
Left = 23
Top = 14
Width = 61
Height = 13
Caption = 'Primary Font:'
OnClick = PrimaryClick
end
object LCopyFont: TLabel
Left = 13
Top = 39
Width = 71
Height = 13
Caption = 'Copyright Font:'
OnClick = CopyClick
end
object LCCLIFont: TLabel
Left = 34
Top = 65
Width = 50
Height = 13
Caption = 'CCLI Font:'
OnClick = CCLIClick
end
object LOffsets: TLabel
Left = 13
Top = 132
Width = 73
Height = 13
Caption = 'Screen Offsets:'
end
object Bevel5: TBevel
Left = -2
Top = 115
Width = 387
Height = 6
Shape = bsBottomLine
end
object LShadowOffset: TLabel
Left = 338
Top = 91
Width = 24
Height = 13
Alignment = taRightJustify
Caption = '9999'
end
object PCopyFont: TPanel
Left = 88
Top = 36
Width = 274
Height = 23
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
274
23)
object LCYFontsize: TLabel
Left = 178
Top = 4
Width = 21
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = '88pt'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
OnClick = CopyClick
end
object PCYCol: TPanel
Left = 253
Top = 1
Width = 21
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
ParentBackground = True
TabOrder = 0
OnClick = CopyClick
end
object PCYItalic: TPanel
Left = 230
Top = 1
Width = 21
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 1
OnClick = CopyClick
object LCYItalic: TLabel
Left = 8
Top = 1
Width = 5
Height = 20
Caption = 'i'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnShadow
Font.Height = -17
Font.Name = 'Times New Roman'
Font.Style = [fsBold, fsItalic]
ParentFont = False
Transparent = True
OnClick = CopyClick
end
end
object PCYBold: TPanel
Left = 207
Top = 1
Width = 21
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 2
OnClick = CopyClick
object LCYBold: TLabel
Left = 4
Top = -1
Width = 12
Height = 21
Caption = 'B'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnShadow
Font.Height = -17
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
OnClick = CopyClick
end
end
object PCopy: TPanel
Left = 0
Top = 0
Width = 169
Height = 22
Alignment = taLeftJustify
BevelInner = bvLowered
BevelOuter = bvLowered
TabOrder = 3
OnClick = CopyClick
end
end
object PPrimaryFont: TPanel
Left = 88
Top = 10
Width = 274
Height = 22
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
274
22)
object LPFontSize: TLabel
Left = 178
Top = 4
Width = 21
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = '88pt'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
OnClick = PrimaryClick
end
object PPCol: TPanel
Left = 253
Top = 1
Width = 20
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 0
OnClick = PrimaryClick
end
object PPItalic: TPanel
Left = 230
Top = 1
Width = 21
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 1
OnClick = PrimaryClick
object LPItalic: TLabel
Left = 8
Top = 1
Width = 5
Height = 20
Caption = 'i'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnShadow
Font.Height = -17
Font.Name = 'Times New Roman'
Font.Style = [fsBold, fsItalic]
ParentFont = False
Transparent = True
OnClick = PrimaryClick
end
end
object PPBold: TPanel
Left = 207
Top = 1
Width = 21
Height = 21
Anchors = [akTop, akRight]
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 2
OnClick = PrimaryClick
object LPBold: TLabel
Left = 4
Top = -1
Width = 12
Height = 21
Caption = 'B'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnShadow
Font.Height = -17
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
OnClick = PrimaryClick
end