-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcontrol_room.lfm
More file actions
1338 lines (1338 loc) · 38.7 KB
/
control_room.lfm
File metadata and controls
1338 lines (1338 loc) · 38.7 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 control_room_form: Tcontrol_room_form
Left = 732
Height = 442
Top = 309
Width = 750
HorzScrollBar.Tracking = True
VertScrollBar.Tracking = True
BorderIcons = [biSystemMenu]
Caption = ' welcome to TEMPLOT'
ClientHeight = 442
ClientWidth = 750
Color = clYellow
DesignTimePPI = 120
Enabled = False
Font.Color = clBlack
Font.Height = -364
Font.Name = 'MS Sans Serif'
KeyPreview = True
Menu = control_room_menu_bar
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnResize = FormResize
Position = poScreenCenter
ShowHint = True
LCLVersion = '3.4.0.0'
Scaled = False
object reminder_label: TLabel
Left = 60
Height = 180
Top = 60
Width = 270
AutoSize = False
Caption = 'A reminder message from the previous session can be shown here.'
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object logo_bumf_label: TLabel
Left = 538
Height = 54
Top = 164
Width = 208
Alignment = taCenter
AutoSize = False
Caption = 'precision track design for model railways '
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold, fsItalic]
ParentFont = False
WordWrap = True
end
object version_label: TLabel
Left = 678
Height = 26
Top = 120
Width = 66
Alignment = taCenter
AutoSize = False
Caption = '5.55.a'
Font.Color = clRed
Font.Height = -18
Font.Name = 'Trebuchet MS'
Font.Style = [fsItalic]
Layout = tlCenter
ParentFont = False
end
object tm_label: TLabel
Left = 724
Height = 12
Top = 36
Width = 18
AutoSize = False
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -10
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
OnClick = colour_buttonClick
end
object startup_label: TLabel
Left = 32
Height = 44
Top = 250
Width = 502
AutoSize = False
Caption = '... welcome to OpenTemplot'
Font.Color = clBlue
Font.Height = -30
Font.Name = 'Verdana'
Font.Style = [fsBold, fsItalic]
Layout = tlCenter
ParentFont = False
end
object first_time_here_label: TLabel
Left = 548
Height = 38
Top = 340
Width = 196
Alignment = taCenter
AutoSize = False
Caption = ' FIRST TIME HERE ? CLICK trackpad '
Color = clRed
Font.Color = clYellow
Font.Height = -13
Font.Name = 'Verdana'
Font.Style = [fsBold, fsItalic]
Layout = tlCenter
ParentColor = False
ParentFont = False
Visible = False
WordWrap = True
end
object internet_label: TLabel
Left = 432
Height = 14
Top = 366
Width = 295
Alignment = taRightJustify
AutoSize = False
Caption = 'clicking GO connects to Templot web site'
Font.Color = clGray
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object about_label: TLabel
Cursor = crHandPoint
Left = 690
Height = 18
Hint = ' about Templot '
Top = 232
Width = 50
Alignment = taCenter
AutoSize = False
Caption = 'about'
Enabled = False
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
ParentShowHint = False
ShowHint = True
Visible = False
OnClick = about_templot_version_menu_entryClick
end
object datestamp_label: TLabel
Left = 0
Height = 4
Top = 404
Width = 750
AutoSize = False
end
object Label2: TLabel
Left = 550
Height = 26
Top = 120
Width = 124
AutoSize = False
Caption = '3D plug track'
Font.Color = clRed
Font.Height = -18
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold, fsItalic]
Layout = tlCenter
ParentFont = False
end
object top_bar_shape: TShape
Left = 0
Height = 16
Top = 0
Width = 750
Brush.Color = 16765088
Pen.Color = 16765088
end
object blue_corner_panel: TPanel
Left = 0
Height = 100
Hint = ' click to change menu style '
Top = 16
Width = 20
BevelOuter = bvNone
ClientHeight = 100
ClientWidth = 20
Color = clYellow
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 9
Visible = False
object how_panel: TPanel
Left = 2
Height = 20
Hint = ' what next ? '
Top = 50
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
OnClick = how_panelClick
end
object chat_panel: TPanel
Left = 2
Height = 16
Hint = ' chat '
Top = 72
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 = 1
OnClick = chat_panelClick
end
object size_updown: TUpDown
Tag = 4
Left = 2
Height = 24
Hint = ' reduce / enlarge the program panel window '
Top = 3
Width = 16
Max = 10
Min = 1
OnClick = size_updownClick
ParentShowHint = False
Position = 4
ShowHint = True
TabOrder = 2
end
object colour_panel: TPanel
Left = 2
Height = 16
Hint = ' change colour '
Top = 30
Width = 15
ClientHeight = 16
ClientWidth = 15
ParentBackground = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = colour_buttonClick
object colour_patch: TImage
Left = 1
Height = 14
Hint = ' change the program panel colour '
Top = 1
Width = 13
Align = alClient
AutoSize = True
OnClick = colour_buttonClick
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
end
object open_panel: TPanel
Left = 20
Height = 36
Top = 382
Width = 710
Alignment = taLeftJustify
BevelOuter = bvNone
Caption = ' Ready, Steady, CLICK ...'
ClientHeight = 36
ClientWidth = 710
Color = 16742144
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
ParentShowHint = False
TabOrder = 0
object open_button: TButton
Left = 450
Height = 28
Hint = ' click here to start '
Top = 4
Width = 50
Caption = 'GO'
Enabled = False
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = open_buttonClick
end
object go_prefs_button: TButton
Left = 504
Height = 28
Hint = ' click here to start with your previous program preferences '
Top = 4
Width = 200
Caption = 'GO using my preferences'
Enabled = False
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = go_prefs_buttonClick
end
end
object pad_button: TButton
Left = 643
Height = 33
Hint = ' go to the trackpad '
Top = 384
Width = 97
Caption = '&trackpad'
Default = True
Enabled = False
Font.Color = clBlack
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
Visible = False
OnClick = pad_buttonClick
end
object reload_button: TButton
Left = 12
Height = 29
Hint = ' load or reload your storage box from any box file '
Top = 386
Width = 68
Caption = '&file ...'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 8
Visible = False
OnClick = reload_buttonClick
end
object recent_button: TButton
Left = 86
Height = 29
Hint = ' load or reload your storage box from a recently used file '
Top = 386
Width = 112
Caption = '&recent files'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 7
Visible = False
OnClick = recent_buttonClick
end
object viewer_button: TButton
Left = 204
Height = 29
Hint = ' explore your saved box files '
Top = 386
Width = 104
Caption = 'file &viewer'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 6
Visible = False
end
object storage_box_button: TButton
Left = 314
Height = 29
Hint = ' show your template storage box '
Top = 386
Width = 50
Caption = '&box'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 5
Visible = False
OnClick = storage_box_menu_entryClick
end
object control_sketchboard_button: TButton
Left = 518
Height = 29
Hint = ' go to the sketchboard '
Top = 386
Width = 119
Caption = 's&ketchboard'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
Visible = False
end
object shapes_button: TButton
Left = 370
Height = 29
Hint = ' show your background shapes '
Top = 386
Width = 76
Caption = '&shapes'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 4
Visible = False
OnClick = shapes_buttonClick
end
object statusbar_panel: TPanel
Left = 0
Height = 18
Top = 424
Width = 750
Alignment = taLeftJustify
BevelOuter = bvNone
Caption = ' © 2024 Martin Wynne and OpenTemplot contributors'
ClientHeight = 18
ClientWidth = 750
Color = 16765088
Enabled = False
Font.Color = 6316128
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 11
OnClick = about_templot_version_menu_entryClick
object Label1: TLabel
Left = 648
Height = 15
Top = 2
Width = 88
Alignment = taRightJustify
AutoSize = False
Caption = '85a.uk'
end
end
object maps_button: TButton
Left = 452
Height = 29
Hint = ' get a background map '
Top = 386
Width = 60
Caption = '&maps'
Enabled = False
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
Visible = False
OnClick = maps_buttonClick
end
object logo_panel: TPanel
Left = 340
Height = 68
Top = 46
Width = 400
BevelOuter = bvNone
BorderStyle = bsSingle
Caption = 'OpenTEMPLOT2024'
Color = clWhite
Font.Color = clBlue
Font.Height = -33
Font.Name = 'Verdana'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 10
end
object trackpad_groupbox: TGroupBox
Left = 564
Height = 81
Top = 276
Width = 160
Caption = ' trackpad window : '
ClientHeight = 60
ClientWidth = 156
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 12
Visible = False
object pad_maximized_radio: TRadioButton
Left = 20
Height = 20
Hint = ' borderless full-screen '
Top = 0
Width = 94
Caption = 'maximized'
Checked = True
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = True
OnMouseDown = pad_maximized_radioMouseDown
end
object pad_downsized_radio: TRadioButton
Left = 20
Height = 20
Hint = ' for easier re-positioning and resizing '
Top = 24
Width = 101
Caption = 'down-sized'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnMouseDown = pad_downsized_radioMouseDown
end
end
object control_room_menu_bar: TMainMenu
Left = 376
Top = 136
object session_menu: TMenuItem
Caption = '&session'
Enabled = False
OnClick = session_menuClick
object project_title_menu_entry: TMenuItem
Caption = 'project box &title ...'
OnClick = project_title_menu_entryClick
end
object new_gauge_menu_entry: TMenuItem
Caption = 'g&auge and scale ...'
OnClick = new_gauge_menu_entryClick
end
object N5: TMenuItem
Caption = '-'
GroupIndex = 12
end
object printersetup1: TMenuItem
Caption = 'pri&nter setup ...'
GroupIndex = 12
OnClick = printer_setup_menu_entryClick
end
object printer_calibration_menu_entry: TMenuItem
Caption = 'printer &calibration ...'
GroupIndex = 12
ShortCut = 8308
OnClick = printer_calibration_menu_entryClick
end
object N1: TMenuItem
Caption = '-'
GroupIndex = 12
end
object sketchboard_menu_entry: TMenuItem
Caption = 's&ketchboard'
GroupIndex = 12
ShortCut = 16459
OnClick = control_sketchboard_buttonClick
end
object N29: TMenuItem
Caption = '-'
GroupIndex = 12
end
object reminder_menu_entry: TMenuItem
Caption = '&write a reminder ...'
GroupIndex = 12
ShortCut = 16471
OnClick = reminder_menu_entryClick
end
object quit_menu_entry: TMenuItem
Caption = 'quit &Templot'
GroupIndex = 12
OnClick = quit_menu_entryClick
end
end
object file_menu: TMenuItem
Caption = '&file'
Enabled = False
OnClick = session_menuClick
object recent_menu_entry: TMenuItem
Caption = '&recent box files ...'
OnClick = recent_buttonClick
end
object room_file_viewer_menu_entry: TMenuItem
Caption = 'box file &viewer'
end
object reload_menu_entry: TMenuItem
Caption = 'load / &reload / add box file ...'
ShortCut = 16466
OnClick = reload_buttonClick
end
object save_all_menu_entry: TMenuItem
Caption = '&save all to box file ...'
Enabled = False
ShortCut = 16467
OnClick = save_all_menu_entryClick
end
object getfile_from_code_menu_entry: TMenuItem
Caption = 'get file from CODE &NUMBER'
end
object N18: TMenuItem
Caption = '-'
end
object exports_menu_entry: TMenuItem
Caption = '&export file ...'
ShortCut = 16453
OnClick = exports_menu_entryClick
end
object N11: TMenuItem
Caption = '-'
end
object open_storage_box_menu_entry: TMenuItem
Caption = 'storage &box'
ShortCut = 16450
OnClick = storage_box_menu_entryClick
end
end
object preferences_menu: TMenuItem
Caption = 'pr&eferences'
Enabled = False
GroupIndex = 12
OnClick = preferences_menuClick
object saved_preferences_setup_menu_entry: TMenuItem
Caption = 'begin &saving preferences ...'
GroupIndex = 12
OnClick = saved_preferences_setup_menu_entryClick
end
object N14: TMenuItem
Caption = '-'
GroupIndex = 40
RadioItem = True
end
object update_prefs_on_quit_menu_entry: TMenuItem
Caption = 'update preferences on q&uit'
Enabled = False
GroupIndex = 40
RadioItem = True
OnClick = update_prefs_on_quit_menu_entryClick
end
object N17: TMenuItem
Caption = '-'
GroupIndex = 40
RadioItem = True
end
object prefs_exclude_gen_settings_menu_entry: TMenuItem
Caption = 'e&xclude generator settings'
Checked = True
Enabled = False
GroupIndex = 40
RadioItem = True
OnClick = prefs_exclude_gen_settings_menu_entryClick
end
object prefs_include_gen_settings_menu_entry: TMenuItem
Caption = 'i&nclude generator settings'
Enabled = False
GroupIndex = 40
RadioItem = True
OnClick = prefs_include_gen_settings_menu_entryClick
end
object N6: TMenuItem
Caption = '-'
GroupIndex = 40
end
object abandon_prefs_menu_entry: TMenuItem
Caption = '&abandon saved preferences'
Enabled = False
GroupIndex = 40
OnClick = abandon_prefs_menu_entryClick
end
end
object background_menu: TMenuItem
Caption = '&background'
Enabled = False
GroupIndex = 12
OnClick = session_menuClick
object storage_box_menu_entry: TMenuItem
Caption = 'storage b&ox'
GroupIndex = 90
ShortCut = 16450
OnClick = storage_box_menu_entryClick
end
object clear_templates_menu_entry: TMenuItem
Caption = '&clear all stored templates'
GroupIndex = 90
ShortCut = 16430
OnClick = clear_templates_menu_entryClick
end
object N4: TMenuItem
Caption = '-'
GroupIndex = 90
end
object shapes_menu_entry: TMenuItem
Caption = 'background &shapes'
GroupIndex = 90
ShortCut = 16467
OnClick = shapes_menu_entryClick
end
object clear_shapes_menu_entry: TMenuItem
Caption = 'clear all sh&apes'
GroupIndex = 90
OnClick = clear_shapes_menu_entryClick
end
end
object program_menu: TMenuItem
Caption = 'progra&m'
Enabled = False
GroupIndex = 12
OnClick = program_menuClick
object printer_font_menu_entry: TMenuItem
Caption = 'printer fon&t + margins ...'
GroupIndex = 12
OnClick = printer_font_menu_entryClick
end
object jpg_menu_entry: TMenuItem
Caption = 'JPG quality ...'
GroupIndex = 12
OnClick = jpg_menu_entryClick
end
object number_format_menu_entry: TMenuItem
Caption = '&number format ...'
GroupIndex = 12
OnClick = number_format_menu_entryClick
end
object custom_input_factors_menu_entry: TMenuItem
Caption = '&custom input factors ...'
GroupIndex = 12
OnClick = custom_input_factors_menu_entryClick
end
object max_explode_menu_entry: TMenuItem
Caption = 'ma&x explode ( zoom-in ) ...'
GroupIndex = 12
OnClick = max_explode_menu_entryClick
end
object peg_arm_menu_entry: TMenuItem
Caption = 'peg arm &length ...'
GroupIndex = 12
OnClick = peg_arm_menu_entryClick
end
object data_panel_font_menu_entry: TMenuItem
Caption = 'd&ata panel font ...'
GroupIndex = 12
OnClick = data_panel_font_menu_entryClick
end
object screen_scaling_menu_entry: TMenuItem
Caption = 'sc&reen scaling method ...'
GroupIndex = 12
OnClick = screen_scaling_menu_entryClick
end
object popup_menu_position_menu_entry: TMenuItem
Caption = 'p&op-up menu position ...'
GroupIndex = 12
OnClick = popup_menu_position_menu_entryClick
end
object trackpad_position_menu_entry: TMenuItem
Caption = 'trackpad position ...'
GroupIndex = 90
OnClick = trackpad_position_menu_entryClick
end
object delete_reminder_menu_entry: TMenuItem
Caption = '&delete reminder message'
GroupIndex = 90
OnClick = delete_reminder_menu_entryClick
end
object use_wine_fonts_menu_entry: TMenuItem
Caption = 'use &Wine fonts'
Enabled = False
GroupIndex = 90
OnClick = use_wine_fonts_menu_entryClick
end
object show_time_ticker_menu_entry: TMenuItem
Caption = 'show time ticker'
GroupIndex = 90
OnClick = show_time_ticker_menu_entryClick
end
object blank_spaces_in_menus_menu_entry: TMenuItem
Caption = 'blank spaces in menus'
Checked = True
GroupIndex = 90
OnClick = blank_spaces_in_menus_menu_entryClick
end
object restore_t55_startup_menu_entry: TMenuItem
Caption = 'restore T-55 start-up'
GroupIndex = 90
OnClick = restore_t55_startup_menu_entryClick
end
object mouse_action_menu_entry: TMenuItem
Caption = 'mou&se action'
GroupIndex = 90
OnClick = mouse_action_menu_entryClick
object click_move_click_menu_entry: TMenuItem
Caption = '&click - move - click only'
GroupIndex = 2
RadioItem = True
OnClick = click_move_click_menu_entryClick
end
object button_down_menu_entry: TMenuItem
Caption = 'button-&down ( drag ) only'
GroupIndex = 2
RadioItem = True
OnClick = button_down_menu_entryClick
end
object either_action_menu_entry: TMenuItem
Caption = 'allow &either mode'
Checked = True
GroupIndex = 2
RadioItem = True
OnClick = either_action_menu_entryClick
end
object N13: TMenuItem
Caption = '-'
GroupIndex = 4
end
object auto_mouse_dir_menu_entry: TMenuItem
Caption = '&auto mouse direction'
Checked = True
GroupIndex = 4
OnClick = auto_mouse_dir_menu_entryClick
end
end
object templatenamelabels1: TMenuItem
Caption = 'template name la&bels'
GroupIndex = 90
object very_random_labels_menu_entry: TMenuItem
Caption = '&very random initial positions'
GroupIndex = 10
RadioItem = True
OnClick = very_random_labels_menu_entryClick
end
object random_labels_menu_entry: TMenuItem
Caption = '&random initial positions'
Checked = True
GroupIndex = 10
RadioItem = True
OnClick = random_labels_menu_entryClick
end
object fixed_labels_menu_entry: TMenuItem
Caption = '&fixed initial positions'
GroupIndex = 10
RadioItem = True
OnClick = fixed_labels_menu_entryClick
end
object previous_labels_menu_entry: TMenuItem
Caption = '&unchanged initial positions'
GroupIndex = 10
RadioItem = True
OnClick = previous_labels_menu_entryClick
end
object N22: TMenuItem
Caption = '-'
GroupIndex = 20
end
object labelshelp1: TMenuItem
Caption = '? label positions - &help'
GroupIndex = 20
end
end
object click_mode_options_menu_entry: TMenuItem
Caption = 'clic&k - mode options'
GroupIndex = 90
OnClick = click_mode_options_menu_entryClick
object classic_templot_mode_menu_entry: TMenuItem
Caption = '&normal mode'
Checked = True
GroupIndex = 10
RadioItem = True
OnClick = classic_templot_mode_menu_entryClick
end
object make_on_click_mode_menu_entry: TMenuItem
Caption = '&make-on-click mode'
GroupIndex = 10
RadioItem = True
OnClick = make_on_click_mode_menu_entryClick
end
object N27: TMenuItem
Caption = '-'
GroupIndex = 20
end
object click_mode_help_menu_entry: TMenuItem
Caption = '? click - mode &help'
GroupIndex = 20
end
end
object filevieweroptions1: TMenuItem
Caption = 'file &viewer options'
GroupIndex = 90
object viewer_bitmaps_menu_entry: TMenuItem
Caption = 'images in &memory'
Checked = True
GroupIndex = 10
RadioItem = True
end
object viewer_png_menu_entry: TMenuItem
Caption = 'images as &files'
GroupIndex = 10
RadioItem = True
end
object N28: TMenuItem
Caption = '-'
GroupIndex = 20
end
object file_viewer_help_menu_entry: TMenuItem
Caption = '? &help'
GroupIndex = 20
end
end
object N21: TMenuItem
Caption = '-'
GroupIndex = 90
end