-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinfo_unit.lfm
More file actions
1010 lines (1010 loc) · 24.5 KB
/
info_unit.lfm
File metadata and controls
1010 lines (1010 loc) · 24.5 KB
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 info_form: Tinfo_form
Left = 20
Height = 494
Top = 112
Width = 818
HorzScrollBar.Smooth = True
HorzScrollBar.Tracking = True
VertScrollBar.Smooth = True
VertScrollBar.Tracking = True
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
Caption = ' information'
ClientHeight = 494
ClientWidth = 818
Color = 15852503
DesignTimePPI = 120
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
KeyPreview = True
OnClose = FormClose
OnCreate = FormCreate
OnPaint = FormPaint
OnShow = FormShow
LCLVersion = '3.4.0.0'
Scaled = False
object radius_shape: TShape
Left = 128
Height = 86
Top = 24
Width = 293
Brush.Color = 14221311
Pen.Color = 13172735
end
object info_mm_label: TLabel
Left = 0
Height = 19
Top = 140
Width = 285
AutoSize = False
Caption = ' info ( all dimensions in mm ) :'
Color = 14221311
ParentColor = False
ParentShowHint = False
end
object ref_label: TLabel
Left = 4
Height = 16
Top = 114
Width = 48
AutoSize = False
Caption = 'name :'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
OnClick = rename_buttonClick
end
object ref_name_label: TLabel
Left = 54
Height = 19
Top = 112
Width = 559
AutoSize = False
Caption = 'ref_name'
Font.Color = clBlue
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
OnClick = rename_buttonClick
end
object gauge_bang_label: TLabel
Left = 408
Height = 21
Hint = ' current gauge/scale - click to change '
Top = 0
Width = 37
Caption = ' EM '
Color = clBlack
Font.Color = clYellow
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
Layout = tlCenter
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = gauge_bang_labelClick
end
object min_rad_box: TGroupBox
Left = 132
Height = 40
Top = 24
Width = 186
Caption = ' smallest radius now : '
ClientHeight = 20
ClientWidth = 182
Color = 14221311
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 4
OnClick = limit_rad_labelClick
object min_rad_now_label: TLabel
Left = 30
Height = 16
Top = 18
Width = 151
AutoSize = False
Caption = '1000 mm'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
OnClick = limit_rad_labelClick
end
object min_rad_lamp_panel: TPanel
Left = 6
Height = 17
Top = 17
Width = 17
BevelInner = bvLowered
Color = clLime
ParentBackground = False
ParentColor = False
TabOrder = 0
OnClick = limit_rad_labelClick
end
object rounding_checkbox: TCheckBox
Left = 166
Height = 20
Hint = ' radius shown rounded to whole numbers '
Top = 1
Width = 21
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 1
OnClick = rounding_checkboxClick
end
end
object blue_corner_panel: TPanel
Left = 0
Height = 48
Top = 60
Width = 40
BevelOuter = bvNone
ClientHeight = 48
ClientWidth = 40
Color = clBlue
Font.Color = clBlack
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 23
object what_next_panel: TPanel
Left = 22
Height = 24
Hint = ' what next ? '
Top = 3
Width = 16
Caption = '?'
Color = clBlack
Font.Color = clLime
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = True
OnClick = what_next_panelClick
end
object chat_panel: TPanel
Left = 22
Height = 16
Hint = ' chat '
Top = 30
Width = 16
Caption = '='
Color = clBlack
Font.Color = clLime
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = chat_panelClick
end
object colour_panel: TPanel
Left = 3
Height = 16
Hint = ' change panel colour '
Top = 30
Width = 15
ClientHeight = 16
ClientWidth = 15
ParentBackground = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = colour_panelClick
object colour_patch: TImage
Left = 1
Height = 14
Top = 1
Width = 13
Align = alClient
AutoSize = True
OnClick = colour_panelClick
Picture.Data = {
07544269746D6170B6040000424DB60400000000000036000000280000001800
0000100000000100180000000000800400008412000084120000000000000000
0000008080008080008080008080008080008080008080008080FF00FFFF00FF
FF00FFFF00FFFF00FFFF00FFFF00FFFF00FF00FF0000FF0000FF0000FF0000FF
0000FF0000FF0000FF0000808000808000808000808000808000808000808000
8080FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FF00FF0000FF00
00FF0000FF0000FF0000FF0000FF0000FF000080800080800080800080800080
80008080008080008080FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF
00FF00FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00008080008080
008080008080008080008080008080008080FF00FFFF00FFFF00FFFF00FFFF00
FFFF00FFFF00FFFF00FF00FF0000FF0000FF0000FF0000FF0000FF0000FF0000
FF00008080008080008080008080008080008080008080008080FF00FFFF00FF
FF00FFFF00FFFF00FFFF00FFFF00FFFF00FF00FF0000FF0000FF0000FF0000FF
0000FF0000FF0000FF0000808000808000808000808000808000808000808000
8080FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FF00FF0000FF00
00FF0000FF0000FF0000FF0000FF0000FF000080800080800080800080800080
80008080008080008080FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF
00FF00FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00008080008080
008080008080008080008080008080008080FF00FFFF00FFFF00FFFF00FFFF00
FFFF00FFFF00FFFF00FF00FF0000FF0000FF0000FF0000FF0000FF0000FF0000
FF000000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00FFFF00FFFF
00FFFF00FFFF00FFFF00FFFF00FFFF00FFFFFF0000FF0000FF0000FF0000FF00
00FF0000FF0000FF00000000FF0000FF0000FF0000FF0000FF0000FF0000FF00
00FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFFFF0000FF0000
FF0000FF0000FF0000FF0000FF0000FF00000000FF0000FF0000FF0000FF0000
FF0000FF0000FF0000FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00
FFFFFF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00000000FF0000FF
0000FF0000FF0000FF0000FF0000FF0000FF00FFFF00FFFF00FFFF00FFFF00FF
FF00FFFF00FFFF00FFFFFF0000FF0000FF0000FF0000FF0000FF0000FF0000FF
00000000FF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00FFFF00FFFF
00FFFF00FFFF00FFFF00FFFF00FFFF00FFFFFF0000FF0000FF0000FF0000FF00
00FF0000FF0000FF00000000FF0000FF0000FF0000FF0000FF0000FF0000FF00
00FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFFFF0000FF0000
FF0000FF0000FF0000FF0000FF0000FF00000000FF0000FF0000FF0000FF0000
FF0000FF0000FF0000FF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00FFFF00
FFFFFF0000FF0000FF0000FF0000FF0000FF0000FF0000FF00000000FF0000FF
0000FF0000FF0000FF0000FF0000FF0000FF00FFFF00FFFF00FFFF00FFFF00FF
FF00FFFF00FFFF00FFFFFF0000FF0000FF0000FF0000FF0000FF0000FF0000FF
0000
}
Stretch = True
end
end
object size_updown: TUpDown
Tag = 4
Left = 3
Height = 24
Hint = ' reduce / enlarge panel '
Top = 3
Width = 16
Max = 10
Min = 1
OnClick = size_updownClick
ParentShowHint = False
Position = 4
ShowHint = True
TabOrder = 1
TabStop = True
end
end
object corner_dot_panel: TPanel
Left = 0
Height = 1
Top = 0
Width = 1
BevelOuter = bvNone
ParentBackground = False
TabOrder = 20
Visible = False
end
object shrink_button: TButton
Left = 66
Height = 24
Top = 59
Width = 56
Caption = 'shrin&k'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
OnClick = shrink_buttonClick
end
object expand_button: TButton
Left = 66
Height = 24
Top = 29
Width = 56
Caption = 'e&xpand'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = expand_buttonClick
end
object limit_rad_box: TGroupBox
Left = 132
Height = 40
Top = 66
Width = 186
Caption = ' warn if radius is under : '
ClientHeight = 20
ClientWidth = 182
Color = 14221311
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 5
OnClick = limit_rad_labelClick
object limit_rad_label: TLabel
Left = 16
Height = 16
Top = 18
Width = 74
AutoSize = False
Caption = '1000 mm'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
OnClick = limit_rad_labelClick
end
object change_limit_button: TButton
Left = 102
Height = 21
Top = 15
Width = 78
Caption = 'ch&ange ...'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = limit_rad_labelClick
end
end
object info_gauge_panel: TPanel
Left = 0
Height = 22
Hint = ' click to show or hide the control template '
Top = 0
Width = 405
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 18
ClientWidth = 401
Color = 16777120
ParentBackground = False
ParentColor = False
ParentShowHint = False
ShowHint = True
TabOrder = 21
OnClick = info_gauge_panelClick
object gauge_label: TLabel
Left = 34
Height = 18
Top = 2
Width = 371
AutoSize = False
Caption = 'gauge_label'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
OnClick = info_gauge_panelClick
end
object curving_label: TLabel
Left = 0
Height = 20
Hint = ' st=straight co=constant radius tr=transition curve ~=slew '
Top = 0
Width = 33
Alignment = taCenter
AutoSize = False
Caption = '~st'
Font.CharSet = ANSI_CHARSET
Font.Color = clBlue
Font.Height = -17
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
Layout = tlCenter
ParentFont = False
end
end
object print_button: TButton
Left = 618
Height = 22
Hint = ' print info '
Top = 133
Width = 44
Caption = 'p&rint'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 17
OnClick = print_buttonClick
end
object write_button: TButton
Left = 664
Height = 22
Hint = ' info to file '
Top = 133
Width = 80
Caption = 'save f&ile ..'
ParentShowHint = False
ShowHint = True
TabOrder = 18
OnClick = write_buttonClick
end
object mouse_now_panel: TPanel
Left = 504
Height = 22
Top = 0
Width = 242
BevelOuter = bvNone
BorderStyle = bsSingle
Color = clWhite
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 22
end
object rename_button: TButton
Left = 52
Height = 22
Hint = ' name or rename current template '
Top = 88
Width = 70
Caption = '&name ...'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = rename_buttonClick
end
object view_button: TButton
Left = 574
Height = 22
Hint = ' view info as help '
Top = 133
Width = 42
Caption = '&view'
ParentShowHint = False
ShowHint = True
TabOrder = 16
OnClick = view_buttonClick
end
object slew_warn_panel: TPanel
Left = 132
Height = 82
Top = 25
Width = 188
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 78
ClientWidth = 184
Color = 14221311
ParentBackground = False
ParentColor = False
TabOrder = 6
Visible = False
object slew_caution_mode_label: TLabel
Left = 6
Height = 51
Top = 4
Width = 176
AutoSize = False
Caption = 'The control template contains a mode 2 SLEW . Smallest radius info is not available.'
Color = 14221311
Font.Color = clRed
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
WordWrap = True
end
object cancel_slewing_button: TButton
Left = 64
Height = 22
Top = 53
Width = 116
Caption = 'cancel s&lewing'
TabOrder = 0
OnClick = cancel_slewing_buttonClick
end
end
object pad_data_groupbox: TGroupBox
Left = 504
Height = 82
Top = 24
Width = 296
Caption = ' trackpad data : '
ClientHeight = 61
ClientWidth = 292
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
TabOrder = 9
object pad_data_scrollbox: TScrollBox
Left = 0
Height = 61
Top = 0
Width = 292
HorzScrollBar.Page = 1
HorzScrollBar.Visible = False
VertScrollBar.Increment = 4
VertScrollBar.Page = 61
VertScrollBar.Tracking = True
Align = alClient
BorderStyle = bsNone
ClientHeight = 61
ClientWidth = 271
ParentBackground = False
TabOrder = 0
object zoom_lock_label: TLabel
Left = 52
Height = 18
Top = 2
Width = 88
Alignment = taCenter
AutoSize = False
Caption = 'lock_label'
Color = clBlack
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object pad_width_label: TLabel
Left = 4
Height = 16
Top = 24
Width = 257
AutoSize = False
Caption = 'pad_width_label'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object pad_height_label: TLabel
Left = 4
Height = 16
Top = 44
Width = 257
AutoSize = False
Caption = 'pad_height_label'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object pad_zoom_label: TLabel
Left = 2
Height = 18
Top = 2
Width = 48
AutoSize = False
Caption = 'zoom :'
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object pad_notch_label: TLabel
Left = 2
Height = 18
Top = 66
Width = 124
AutoSize = False
Caption = 'pegging notch :'
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object notchx_label: TLabel
Left = 4
Height = 16
Top = 86
Width = 276
AutoSize = False
Caption = 'notchx_label'
end
object notchy_label: TLabel
Left = 4
Height = 16
Top = 106
Width = 276
AutoSize = False
Caption = 'notchy_label'
end
object notchk_label: TLabel
Left = 4
Height = 16
Top = 126
Width = 300
AutoSize = False
Caption = 'notchk_label'
end
object grid_org_label: TLabel
Left = 2
Height = 18
Top = 148
Width = 85
AutoSize = False
Caption = 'grid offset :'
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object offsetx_label: TLabel
Left = 4
Height = 16
Top = 168
Width = 276
AutoSize = False
Caption = 'offsetx_label'
end
object offsety_label: TLabel
Left = 4
Height = 22
Top = 188
Width = 276
AutoSize = False
Caption = 'offsety_label'
end
object unlock_button: TButton
Left = 142
Height = 20
Top = 0
Width = 52
Caption = '&unlock'
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = unlock_buttonClick
end
object lock_zoom_button: TButton
Left = 198
Height = 20
Top = 0
Width = 68
Caption = 'lock a&t ..'
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
OnClick = lock_zoom_buttonClick
end
end
end
object edit_button: TButton
Left = 534
Height = 22
Hint = ' edit info '
Top = 133
Width = 38
Caption = '&edit'
ParentShowHint = False
ShowHint = True
TabOrder = 15
OnClick = edit_buttonClick
end
object info_font_button: TButton
Left = 746
Height = 22
Hint = ' change font for info below '
Top = 133
Width = 46
Caption = '&font ..'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 24
OnClick = info_font_buttonClick
end
object metric_button: TButton
Left = 670
Height = 22
Hint = ' open metric calculator '
Top = 109
Width = 122
Caption = 'metric &calculator'
ParentShowHint = False
ShowHint = True
TabOrder = 11
OnClick = metric_buttonClick
end
object resize_button: TButton
Left = 292
Height = 22
Hint = ' resize info to fit available space '
Top = 133
Width = 106
Caption = 'fit to &window'
ParentShowHint = False
ShowHint = True
TabOrder = 12
OnClick = resize_buttonClick
end
object info_scrollbox: TScrollBox
Left = 0
Height = 272
Top = 158
Width = 800
HorzScrollBar.Page = 779
HorzScrollBar.Tracking = True
VertScrollBar.Page = 251
VertScrollBar.Tracking = True
BorderStyle = bsNone
ClientHeight = 251
ClientWidth = 779
Color = 14221311
ParentBackground = False
ParentColor = False
TabOrder = 19
TabStop = True
object info_memo: TMemo
Left = 4
Height = 2500
Hint = ' information about the control template '
Top = 2
Width = 1000
BorderStyle = bsNone
Color = 14221311
Font.Color = 4210816
Font.Height = -15
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
Lines.Strings = (
'info_memo'
'line 1'
'line 2'
)
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object timber_lengths_button: TButton
Left = 572
Height = 22
Top = 5
Width = 160
Caption = 'show timber lengths'
TabOrder = 1
OnClick = timber_lengths_buttonClick
end
end
object jot_visible_button: TButton
Left = 456
Height = 22
Hint = ' add visible info lines to jotter '
Top = 133
Width = 76
Caption = 'jot visi&ble'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 14
OnClick = jot_visible_buttonClick
end
object memo_button: TButton
Left = 616
Height = 22
Hint = ' edit memo notes for the current template '
Top = 109
Width = 52
Caption = '&memo'
ParentShowHint = False
ShowHint = True
TabOrder = 10
OnClick = memo_buttonClick
end
object rings_groupbox: TGroupBox
Left = 326
Height = 82
Top = 24
Width = 91
Caption = ' rings : '
ClientHeight = 62
ClientWidth = 87
Color = 14221311
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 7
object ring_infringed_warning_label: TLabel
Left = 6
Height = 17
Top = 33
Width = 70
AutoSize = False
Caption = 'infringed by'
Font.Color = clRed
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object ring_infringed_by_label: TLabel
Left = 6
Height = 13
Top = 47
Width = 70
AutoSize = False
Caption = '1000 mm'
Font.Color = clRed
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object rings_boxline_shape: TShape
Left = 0
Height = 1
Top = 61
Width = 79
Pen.Color = clGray
end
object ring_lamp_panel: TPanel
Left = 58
Height = 17
Top = 12
Width = 17
BevelInner = bvLowered
Color = clLime
ParentBackground = False
ParentColor = False
TabOrder = 2
end
object sp_ring_warn_checkbox: TCheckBox
Left = 6
Height = 20
Hint = ' warn if spacing-ring is infringed '
Top = 17
Width = 43
Caption = 'ring'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 0
OnClick = sp_ring_warn_checkboxClick
end
object ring_copies_warn_checkbox: TCheckBox
Left = 6
Height = 20
Hint = ' warn if any ring copies are infringed '
Top = 64
Width = 59
Caption = 'copies'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = ring_copies_warn_checkboxClick
end
end
object help_button: TButton
Left = 748
Height = 22
Top = 1
Width = 52
Caption = '? &help'
TabOrder = 2
OnClick = what_next_panelClick
end
object jot_all_button: TButton
Left = 400
Height = 22
Top = 133
Width = 54
Caption = 'j&ot all'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 13
OnClick = jot_all_buttonClick
end
object hide_panel: TPanel
Left = 0
Height = 24
Top = 29
Width = 62
Alignment = taLeftJustify
Caption = ' hide F2'
Color = clYellow
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 25
TabStop = True
OnClick = hide_panelClick
end
object companion_button: TButton
Left = 428
Height = 25
Hint = ' visit Templot Companion web site '
Top = 28
Width = 53
Caption = 'HELP'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 8