-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathkeep_select.lfm
More file actions
2562 lines (2562 loc) · 74.3 KB
/
keep_select.lfm
File metadata and controls
2562 lines (2562 loc) · 74.3 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 keep_form: Tkeep_form
Left = 888
Height = 494
Top = 398
Width = 662
HorzScrollBar.Tracking = True
VertScrollBar.Tracking = True
BorderIcons = [biSystemMenu]
Caption = ' storage box'
ClientHeight = 494
ClientWidth = 662
Color = 14211272
DesignTimePPI = 120
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
KeyPreview = True
Menu = keeps_menu_bar
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnHide = FormHide
OnKeyDown = FormKeyDown
OnKeyPress = FormKeyPress
OnResize = FormResize
OnShow = FormShow
LCLVersion = '3.4.0.0'
Scaled = False
object slider_shape: TShape
Left = 164
Height = 10
Top = 422
Width = 10
Pen.Color = clWhite
end
object slider_ref_label: TLabel
Left = 208
Height = 18
Top = 418
Width = 156
AutoSize = False
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object slider_number_label: TLabel
Left = 178
Height = 18
Top = 418
Width = 24
Alignment = taCenter
AutoSize = False
Caption = '123'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object keep_form_datestamp_label: TLabel
Left = 0
Height = 4
Top = 490
Width = 656
AutoSize = False
Font.Color = 6316128
Font.Height = -7
Font.Name = 'Arial'
ParentFont = False
end
object box_empty_label: TLabel
Left = 596
Height = 47
Top = 394
Width = 53
AutoSize = False
Caption = ' box empty'
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object flag_shape: TShape
Left = 333
Height = 11
Top = 35
Width = 11
Brush.Color = clBlack
Visible = False
end
object Shape1: TShape
Left = 573
Height = 32
Top = 24
Width = 76
Pen.Color = clWhite
end
object library_label: TLabel
Left = 16
Height = 20
Top = 460
Width = 129
AutoSize = False
Caption = ' library template'
Color = 15794128
Font.Color = clGreen
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
Visible = False
end
object id_label: TLabel
Left = 354
Height = 20
Top = 28
Width = 67
AutoSize = False
Caption = 'DR1234'
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentFont = False
Visible = False
end
object radio_box_shape: TShape
Left = 504
Height = 75
Top = 384
Width = 78
Brush.Style = bsClear
Pen.Color = clLime
Pen.Width = 2
Visible = False
end
object rem_label: TLabel
Left = 0
Height = 20
Top = 267
Width = 73
Alignment = taRightJustify
AutoSize = False
Caption = 'reminder:'
Layout = tlCenter
Visible = False
end
object curving_radius_label: TLabel
Left = 4
Height = 20
Top = 359
Width = 220
AutoSize = False
Caption = ' curving radius : 2999.99 mm'
Color = 10526848
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentColor = False
ParentFont = False
end
object smallest_radius_label: TLabel
Left = 230
Height = 20
Top = 359
Width = 274
AutoSize = False
Caption = ' smallest contained radius : 2999.99 mm'
Color = 10526848
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentColor = False
ParentFont = False
end
object template_date_label: TLabel
Left = 162
Height = 20
Top = 384
Width = 202
AutoSize = False
Caption = ' stored : 29/2/2013 18:47'
Color = 7377056
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentColor = False
ParentFont = False
end
object brick_template_checkbox: TCheckBox
Left = 8
Height = 20
Hint = ' timbering brick template '
Top = 328
Width = 60
Caption = 'brick: '
ParentShowHint = False
ShowHint = True
TabOrder = 33
OnMouseUp = brick_template_checkboxMouseUp
end
object delete_to_control_radiobutton: TRadioButton
Left = 510
Height = 20
Top = 436
Width = 61
Caption = 'delete'
TabOrder = 3
Visible = False
end
object keep_panel: TPanel
Left = 25
Height = 202
Top = 58
Width = 520
Alignment = taLeftJustify
BevelOuter = bvNone
BorderWidth = 1
BorderStyle = bsSingle
ClientHeight = 198
ClientWidth = 516
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
TabOrder = 23
object keep_image: TImage
Left = 0
Height = 300
Top = 0
Width = 700
end
end
object blue_corner_panel: TPanel
Left = 0
Height = 90
Top = 24
Width = 20
BevelOuter = bvNone
ClientHeight = 90
ClientWidth = 20
Color = clBlue
Font.Color = clBlack
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 22
object how_panel: TPanel
Left = 0
Height = 20
Top = 48
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
TabOrder = 0
OnClick = how_panelClick
end
object chat_panel: TPanel
Left = 0
Height = 16
Top = 70
Width = 16
Caption = '='
Color = clBlack
Font.Color = clLime
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 1
OnClick = chat_panelClick
end
object colour_panel: TPanel
Left = 0
Height = 16
Top = 28
Width = 15
ClientHeight = 16
ClientWidth = 15
ParentBackground = False
TabOrder = 2
OnClick = colour_patchClick
object colour_patch: TImage
Left = 1
Height = 14
Top = 1
Width = 13
Align = alClient
AutoSize = True
OnClick = colour_patchClick
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 = 0
Height = 24
Top = 1
Width = 16
Max = 10
Min = 1
OnClick = size_updownClick
Position = 4
TabOrder = 3
end
end
object copy_panel: TPanel
Cursor = crHandPoint
Left = 575
Height = 76
Top = 384
Width = 77
ClientHeight = 76
ClientWidth = 77
Color = clLime
ParentBackground = False
ParentColor = False
TabOrder = 0
Visible = False
OnClick = copy_to_pad_buttonClick
object to_control_label: TLabel
Left = 4
Height = 54
Top = 4
Width = 64
AutoSize = False
Caption = 'to the control template'
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
OnClick = copy_to_pad_buttonClick
end
object copy_to_pad_button: TButton
Left = 55
Height = 15
Top = 55
Width = 15
Caption = ' '
Default = True
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = copy_to_pad_buttonClick
end
end
object escape_panel: TPanel
Cursor = crHandPoint
Left = 504
Height = 24
Top = 464
Width = 147
Caption = 'hide'
ClientHeight = 24
ClientWidth = 147
Color = clYellow
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 4
OnClick = escape_buttonClick
object escape_button: TButton
Left = 126
Height = 15
Top = 2
Width = 15
Cancel = True
Caption = ' '
TabOrder = 0
OnClick = escape_buttonClick
end
end
object gauge_panel: TPanel
Left = 304
Height = 25
Top = 292
Width = 348
BevelOuter = bvNone
BorderStyle = bsSingle
Caption = 'box empty'
Color = 16777120
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 24
OnClick = read_info_buttonClick
end
object store_current_as_unused_button: TButton
Left = 552
Height = 25
Top = 262
Width = 98
Caption = 'store c&ontrol'
TabOrder = 12
OnClick = store_current_as_unused_buttonClick
end
object ref_panel: TPanel
Left = 4
Height = 25
Top = 292
Width = 294
Alignment = taLeftJustify
BevelOuter = bvNone
BorderStyle = bsSingle
Color = clWhite
Font.Color = clNavy
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 25
OnClick = rename_menu_entryClick
end
object scale_radio_panel: TPanel
Left = 26
Height = 25
Top = 28
Width = 298
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 21
ClientWidth = 294
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
TabOrder = 20
object Label1: TLabel
Left = 0
Height = 16
Top = 2
Width = 82
Alignment = taRightJustify
AutoSize = False
Caption = 'draw zoom :'
end
object fit_radio_button: TRadioButton
Left = 88
Height = 20
Top = 1
Width = 53
Caption = 'to &fit'
Checked = True
TabOrder = 0
TabStop = True
OnClick = fit_radio_buttonClick
end
object lock_radio_button: TRadioButton
Left = 162
Height = 20
Top = 1
Width = 47
Caption = 'loc&k'
TabOrder = 1
OnClick = lock_radio_buttonClick
end
object lock_at_button: TButton
Left = 218
Height = 19
Top = 0
Width = 74
Caption = 'lo&ck at ...'
TabOrder = 2
OnClick = lock_at_buttonClick
end
end
object show_list_button: TButton
Left = 426
Height = 25
Top = 28
Width = 110
Caption = 'show bo&x list'
TabOrder = 19
OnClick = show_list_buttonClick
end
object list_panel: TPanel
Left = 24
Height = 238
Top = 24
Width = 522
BevelOuter = bvNone
ClientHeight = 238
ClientWidth = 522
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
TabOrder = 21
Visible = False
object Label2: TLabel
Left = 12
Height = 18
Top = 16
Width = 140
AutoSize = False
Caption = 'this box contains :'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object move_up_button: TSpeedButton
Left = 495
Height = 25
Hint = ' move template backward - hold down to repeat '
Top = 90
Width = 22
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
3333333333333333333333333333333333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333331111111111
1133333333333333333333311111111113333333333333333333333311111111
3333333333333333333333333111111333333333333333333333333333111133
3333333333333333333333333331133333333333333333333333333333333333
3333333333333333333333333333333333333333333333333333
}
Layout = blGlyphTop
Margin = 2
NumGlyphs = 2
Visible = False
OnMouseDown = move_up_buttonMouseDown
OnMouseUp = move_up_buttonMouseUp
ShowHint = True
ParentShowHint = False
end
object move_down_button: TSpeedButton
Left = 495
Height = 25
Hint = ' move template forward - hold down to repeat '
Top = 169
Width = 22
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
3333333333333333333333333333333333333333333333333333333333311333
3333333333333333333333333311113333333333333333333333333331111113
3333333333333333333333331111111133333333333333333333333111111111
1333333333333333333333111111111111333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333333333
3333333333333333333333333333333333333333333333333333
}
Layout = blGlyphBottom
NumGlyphs = 2
Visible = False
OnMouseDown = move_down_buttonMouseDown
OnMouseUp = move_down_buttonMouseUp
ShowHint = True
ParentShowHint = False
end
object move_to_top_button: TSpeedButton
Left = 495
Height = 25
Hint = ' move template to back '
Top = 51
Width = 22
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
3333333333333333333333333333333333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333331111111111
1133333333333333333333311111111113333333333333333333333311111111
3333333333333333333333333111111333333333333333333333333333111133
3333333333333333333333333331133333333333333333333333331111111111
1133333333333333333333111111111111333333333333333333
}
Layout = blGlyphTop
Margin = 4
NumGlyphs = 2
Visible = False
OnClick = move_to_top_buttonClick
ShowHint = True
ParentShowHint = False
end
object move_to_bottom_button: TSpeedButton
Left = 495
Height = 25
Hint = ' move template to front '
Top = 208
Width = 22
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00331111111111
1133333333333333333333111111111111333333333333333333333333311333
3333333333333333333333333311113333333333333333333333333331111113
3333333333333333333333331111111133333333333333333333333111111111
1333333333333333333333111111111111333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333111133
3333333333333333333333333311113333333333333333333333333333333333
3333333333333333333333333333333333333333333333333333
}
Layout = blGlyphBottom
Margin = 4
NumGlyphs = 2
Visible = False
OnClick = move_to_bottom_buttonClick
ShowHint = True
ParentShowHint = False
end
object print_list_button: TButton
Left = 214
Height = 25
Hint = 'print the box list or create a PDF file '
Top = 2
Width = 154
Caption = 'print bo&x list • PDF'
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = print_list_buttonClick
end
object show_dwg_button: TButton
Left = 400
Height = 25
Top = 2
Width = 110
Caption = 'show dra&wing'
TabOrder = 1
OnClick = show_dwg_buttonClick
end
object keepform_listbox: TListBox
Left = 0
Height = 184
Top = 50
Width = 490
Color = clWhite
ExtendedSelect = False
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
IntegralHeight = True
ItemHeight = 18
ParentFont = False
Style = lbOwnerDrawFixed
TabOrder = 2
OnClick = keepform_listboxClick
OnDrawItem = keepform_listboxDrawItem
end
end
object distortion_warning_panel: TPanel
Left = 26
Height = 17
Top = 58
Width = 273
BevelOuter = bvNone
Caption = 'warning : data distortions are in force'
Color = clBlack
Font.Color = clFuchsia
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 26
Visible = False
end
object to_from_bgnd_panel: TPanel
Cursor = crHandPoint
Left = 8
Height = 42
Top = 446
Width = 147
Alignment = taLeftJustify
ClientHeight = 42
ClientWidth = 147
Color = clNavy
Font.Color = clWhite
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 17
Visible = False
OnClick = copy_or_wipe_background_buttonClick
object copy_wipe_label: TLabel
Left = 18
Height = 38
Top = 0
Width = 101
AutoSize = False
Caption = ' copy to &background'
WordWrap = True
OnClick = copy_or_wipe_background_buttonClick
end
object copy_or_wipe_background_button: TButton
Left = 124
Height = 15
Top = 20
Width = 15
Caption = ' '
TabOrder = 0
OnClick = copy_or_wipe_background_buttonClick
end
end
object save_all_button: TButton
Left = 552
Height = 28
Top = 168
Width = 98
Caption = '&save all ...'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 9
OnClick = save_all_menu_entryClick
end
object reload_button: TButton
Left = 552
Height = 28
Top = 64
Width = 98
Caption = '&reload ...'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 6
OnClick = reload_menu_entryClick
end
object rename_button: TButton
Left = 8
Height = 25
Top = 384
Width = 80
Caption = '&name ...'
TabOrder = 13
OnClick = rename_menu_entryClick
end
object group_select_groupbox: TGroupBox
Left = 370
Height = 97
Top = 388
Width = 126
Caption = ' group select '
ClientHeight = 76
ClientWidth = 122
ParentBackground = False
TabOrder = 18
Visible = False
object group_select_shape: TShape
Left = 12
Height = 9
Top = 0
Width = 9
Brush.Color = clBlack
end
object group_linked_warning_label: TLabel
Left = 4
Height = 16
Hint = ' click to unlink '
Top = 2
Width = 114
AutoSize = False
Caption = ' ! linked to notch'
Color = 10526848
Font.Color = clYellow
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Layout = tlCenter
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
Visible = False
OnClick = group_linked_warning_labelClick
end
object deselect_all_button: TButton
Left = 64
Height = 25
Top = 52
Width = 54
Caption = 'n&one'
TabOrder = 2
OnClick = clear_selections_menu_entryClick
end
object select_all_button: TButton
Left = 4
Height = 25
Top = 52
Width = 49
Caption = 'a&ll'
TabOrder = 1
OnClick = select_all_menu_entryClick
end
object select_toggle_button: TButton
Left = 4
Height = 25
Top = 22
Width = 114
Caption = 'select ( &toggle )'
TabOrder = 0
OnClick = select_menu_entryClick
end
end
object add_file_button: TButton
Left = 552
Height = 28
Top = 98
Width = 98
Caption = '&add file ...'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 7
OnClick = add_file_menu_entryClick
end
object save_group_button: TButton
Left = 552
Height = 25
Top = 202
Width = 98
Caption = 'sa&ve group ...'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 10
OnClick = save_group_menu_entryClick
end
object updown_panel: TPanel
Left = 164
Height = 49
Top = 439
Width = 200
BevelOuter = bvNone
ClientHeight = 49
ClientWidth = 200
ParentBackground = False
TabOrder = 27
object down_button: TSpeedButton
Left = 26
Height = 22
Top = 24
Width = 71
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333330
3333333333333333333333333333330033333333333333333333333333333000
333333333333333333333333333300003333333333333FF37733333333300000
33333333333FF377F333333333000000333333333FF3773F3733333330000000
3333333FF377333F733333330000000033333333773333F37333333300000000
33333333FFFFFFF7FF3333333000000033333333777777777733333333000000
33333333F333333733333333333000003333333377F3333F7333333333330000
333333333377F333733333333333300033333333333377F33733333333333300
3333333333333377FF3333333333333033333333333333337733
}
NumGlyphs = 2
OnClick = down_buttonClick
end
object up_button: TSpeedButton
Left = 98
Height = 22
Top = 24
Width = 71
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333330333333
333333F3333333333333333330033333333333FFF33333333333333330003333
333333773FF3333333333333300003333333333F773FF3333333333330000033
33333373F3773FF3333333333000000333333337F333773FF333333330000000
333333373F3333773FF3333330000000033333FF7FFFFFFF77FF333330000000
03333377777777773377333330000000333333337333333F7733333330000003
33333337F3333F77333333333000003333333337333F77333333333330000333
333333733F7733333333333330003333333333FF773333333333333330033333
3333337733333333333333333033333333333333333333333333
}
NumGlyphs = 2
OnClick = up_buttonClick
end
object bottom_button: TSpeedButton
Left = 0
Height = 22
Top = 24
Width = 27
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
0400000000000001000084120000841200001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00330003333333
0333333333333333333333000333333003333333333333333333330003333300
033333333333333333333300033330000333333333333FF37733330003330000
03333333333FF377F333330003300000033333333FF3773F3733330003000000
0333333FF377333F733333000000000003333333773333F37333330000000000
03333333FFFFFFF7FF3333000300000003333333777777777733330003300000