-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathentry_sheet.lfm
More file actions
1215 lines (1215 loc) · 27.1 KB
/
entry_sheet.lfm
File metadata and controls
1215 lines (1215 loc) · 27.1 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 data_entry_form: Tdata_entry_form
Left = 128
Height = 400
Top = 573
Width = 660
BorderIcons = [biSystemMenu]
Caption = ' TEMPLOT data-entry form'
ClientHeight = 400
ClientWidth = 660
Color = 14211264
DesignTimePPI = 120
Font.Color = clWindowText
Font.Height = -76
Font.Name = 'Arial'
Font.Style = [fsBold]
KeyPreview = True
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnKeyDown = FormKeyDown
OnShow = FormShow
LCLVersion = '3.4.0.0'
Scaled = False
object datestamp_label: TLabel
Left = 0
Height = 4
Top = 396
Width = 660
AutoSize = False
Font.Color = clGray
Font.Height = -7
Font.Name = 'Arial'
ParentFont = False
end
object help_shape: TShape
Left = 595
Height = 29
Top = 0
Width = 64
Pen.Color = clWhite
end
object more_info_shape: TShape
Left = 292
Height = 31
Top = 361
Width = 120
Brush.Color = clAqua
Pen.Color = clAqua
end
object cancel_shape: TShape
Left = 424
Height = 31
Top = 361
Width = 100
Brush.Color = clYellow
Pen.Color = clYellow
end
object enter_shape: TShape
Left = 573
Height = 31
Top = 361
Width = 81
Brush.Color = clLime
Pen.Color = clLime
end
object ps_label: TLabel
Left = 350
Height = 19
Top = 316
Width = 300
Alignment = taCenter
AutoSize = False
Caption = 'enter '' / '' to request the pre-set dimension'
Color = 13391189
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
ParentColor = False
ParentFont = False
end
object nops_label: TLabel
Left = 350
Height = 19
Top = 316
Width = 300
Alignment = taCenter
AutoSize = False
Caption = 'sorry - no pre-set is available for this item'
Color = 5592524
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Arial'
ParentColor = False
ParentFont = False
end
object wine_label: TLabel
Cursor = crHandPoint
Left = 292
Height = 17
Hint = ' please click to read an important note about Linux/Wine/Crossover '
Top = 338
Width = 360
Alignment = taCenter
AutoSize = False
Caption = 'important -- running under Linux/Wine/Crossover -- please click here'
Color = clWhite
Font.Color = clRed
Font.Height = -11
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
Visible = False
OnClick = wine_labelClick
end
object entry_gauge_label: TLabel
Left = 512
Height = 21
Hint = ' current gauge/scale '
Top = 8
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
end
object restore_all_button: TButton
Left = 400
Height = 25
Hint = ' restore the previous dimension for all items '
Top = 6
Width = 94
Caption = 'restore all'
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 13
TabStop = False
OnClick = restore_all_buttonClick
end
object restore_button: TButton
Left = 330
Height = 25
Hint = ' restore the previous dimension for the selected item '
Top = 6
Width = 67
Caption = 'restore'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 14
TabStop = False
OnClick = restore_buttonClick
end
object paste_button: TButton
Left = 272
Height = 25
Hint = ' paste the dimension for the selected item '
Top = 6
Width = 53
Caption = 'paste'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 15
TabStop = False
OnClick = paste_buttonClick
end
object metric_button: TButton
Left = 136
Height = 23
Hint = ' show or hide the metric calculator '
Top = 8
Width = 129
Caption = 'metric calculator'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 16
TabStop = False
OnClick = metric_buttonClick
end
object jot_all_button: TButton
Left = 68
Height = 23
Hint = ' add all visible details to the jotter - CTRL+J key to see it '
Top = 8
Width = 57
Caption = 'jot all'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 17
TabStop = False
OnClick = jot_all_buttonClick
end
object jot_button: TButton
Left = 28
Height = 23
Hint = ' add details to the jotter - CTRL+J key to see it '
Top = 8
Width = 37
Caption = 'jot'
ParentShowHint = False
ShowHint = True
TabOrder = 18
TabStop = False
OnClick = jot_buttonClick
end
object enter_button: TButton
Left = 576
Height = 25
Hint = ' click to enter the dimension showing - or press the Enter key '
Top = 364
Width = 75
Caption = 'enter'
Default = True
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = False
OnClick = beans_on_toast
end
object input_panel0: TPanel
Left = 8
Height = 31
Top = 52
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 2
object input_prompt_label0: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label0: TLabel
Left = 498
Height = 18
Top = 6
Width = 78
AutoSize = False
Caption = ' proto-feet'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label0: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object help_button0: TButton
Left = 576
Height = 23
Top = 3
Width = 60
Caption = '? info'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
TabStop = False
OnClick = help_button0Click
end
object input_box0: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlue
Font.Height = -18
Font.Name = 'Arial'
ParentFont = False
ParentShowHint = False
TabOrder = 1
Text = 'use default'
OnChange = input_box0Change
OnExit = input_box0Exit
OnKeyPress = input_box0KeyPress
end
end
object blue_corner_panel: TPanel
Left = 0
Height = 30
Top = 0
Width = 22
BevelOuter = bvNone
ClientHeight = 30
ClientWidth = 22
Color = clBlue
Font.Color = clBlack
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 20
object size_updown: TUpDown
Tag = 4
Left = 3
Height = 24
Top = 3
Width = 16
Max = 7
Min = 1
OnClick = size_updownClick
Position = 4
TabOrder = 0
end
end
object options_panel: TPanel
Left = 6
Height = 80
Top = 312
Width = 275
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 76
ClientWidth = 271
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentFont = False
TabOrder = 10
object conversions_checkbox: TCheckBox
Left = 8
Height = 20
Hint = ' allow input conversion letters '
Top = 30
Width = 136
Caption = 'input conversions'
Checked = True
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 4
TabStop = False
OnClick = conversions_checkboxClick
end
object show_selected_checkbox: TCheckBox
Left = 8
Height = 20
Hint = ' show data selected ( highlighted ) '
Top = 54
Width = 176
Caption = 'show data pre-selected'
ParentShowHint = False
ShowHint = True
TabOrder = 2
TabStop = False
OnClick = show_selected_checkboxClick
end
object jot_always_checkbox: TCheckBox
Left = 8
Height = 20
Hint = ' always add all details to the jotter - CTRL+J key to see it '
Top = 6
Width = 89
Caption = 'jot always'
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = False
OnClick = jot_always_checkboxClick
end
object full_fraction_checkbox: TCheckBox
Left = 120
Height = 20
Hint = ' show full decimal fraction on data - no rounding '
Top = 6
Width = 138
Caption = 'show full fraction'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = full_fraction_checkboxClick
end
object overwrite_checkbox: TCheckBox
Left = 174
Height = 20
Top = 30
Width = 81
Caption = 'overwrite'
TabOrder = 3
end
end
object help_what_next_button: TButton
Left = 598
Height = 23
Hint = ' notes about using this data entry form '
Top = 3
Width = 58
Caption = '? help'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 19
TabStop = False
OnClick = help_what_next_buttonClick
end
object ok_panel: TPanel
Left = 572
Height = 31
Hint = ' click to use these new dimensions '
Top = 360
Width = 81
Alignment = taLeftJustify
Caption = ' OK'
ClientHeight = 31
ClientWidth = 81
Color = clLime
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
Visible = False
OnClick = ok_panelClick
object ok_button: TButton
Left = 60
Height = 15
Hint = ' click to use these new dimensions '
Top = 12
Width = 15
Caption = ' '
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
TabStop = False
OnClick = ok_buttonClick
end
end
object more_info_button: TButton
Left = 296
Height = 25
Hint = ' more information about these items '
Top = 364
Width = 113
Caption = 'more info F1'
Enabled = False
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 11
TabStop = False
OnClick = more_info_buttonClick
end
object cancel_button: TButton
Left = 428
Height = 25
Hint = ' cancel all changes and return '
Top = 364
Width = 93
Caption = 'cancel all'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ModalResult = 2
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 12
TabStop = False
OnClick = cancel_buttonClick
end
object input_panel1: TPanel
Left = 8
Height = 31
Top = 84
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 3
object input_prompt_label1: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label1: TLabel
Left = 498
Height = 21
Top = 6
Width = 78
AutoSize = False
Caption = 'dims'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label1: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object input_box1: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlue
Font.Height = -18
Font.Name = 'Arial'
ParentFont = False
ParentShowHint = False
TabOrder = 0
Text = 'use default'
OnChange = input_box0Change
OnExit = input_box1Exit
OnKeyPress = input_box0KeyPress
end
object help_button1: TButton
Left = 576
Height = 23
Top = 3
Width = 60
Caption = '? info'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
TabStop = False
OnClick = help_button1Click
end
end
object input_panel2: TPanel
Left = 8
Height = 31
Top = 116
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 4
object input_prompt_label2: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label2: TLabel
Left = 498
Height = 21
Top = 6
Width = 78
AutoSize = False
Caption = 'dims'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label2: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object input_box2: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlack
Font.Height = -18
Font.Name = 'Arial'
ParentFont = False
ParentShowHint = False
TabOrder = 0
Text = 'use default'
OnChange = input_box0Change
OnExit = input_box2Exit
OnKeyPress = input_box0KeyPress
end
object help_button2: TButton
Left = 576
Height = 23
Top = 3
Width = 60
Caption = '? info'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
TabStop = False
OnClick = help_button2Click
end
end
object input_panel3: TPanel
Left = 8
Height = 31
Top = 148
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 5
object input_prompt_label3: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label3: TLabel
Left = 498
Height = 21
Top = 6
Width = 78
AutoSize = False
Caption = 'dims'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label3: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object input_box3: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlack
Font.Height = -18
Font.Name = 'Arial'
ParentFont = False
ParentShowHint = False
TabOrder = 0
Text = 'use default'
OnChange = input_box0Change
OnExit = input_box3Exit
OnKeyPress = input_box0KeyPress
end
object help_button3: TButton
Left = 576
Height = 23
Top = 3
Width = 60
Caption = '? info'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
TabStop = False
OnClick = help_button3Click
end
end
object input_panel4: TPanel
Left = 8
Height = 31
Top = 180
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 6
object input_prompt_label4: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label4: TLabel
Left = 498
Height = 21
Top = 6
Width = 78
AutoSize = False
Caption = 'dims'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label4: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object input_box4: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlack
Font.Height = -18
Font.Name = 'Arial'
ParentFont = False
ParentShowHint = False
TabOrder = 0
Text = 'use default'
OnChange = input_box0Change
OnExit = input_box4Exit
OnKeyPress = input_box0KeyPress
end
object help_button4: TButton
Left = 576
Height = 23
Top = 3
Width = 60
Caption = '? info'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
TabStop = False
OnClick = help_button4Click
end
end
object input_panel5: TPanel
Left = 8
Height = 31
Top = 212
Width = 644
BevelOuter = bvNone
ClientHeight = 31
ClientWidth = 644
Font.Color = clWhite
Font.Height = -18
Font.Name = 'Arial'
ParentBackground = False
ParentFont = False
ParentShowHint = False
TabOrder = 7
object input_prompt_label5: TLabel
Left = 4
Height = 21
Top = 6
Width = 384
Alignment = taRightJustify
AutoSize = False
Caption = 'input_prompt'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object input_dims_label5: TLabel
Left = 498
Height = 21
Top = 6
Width = 78
AutoSize = False
Caption = 'dims'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object input_spacer_label5: TLabel
Left = 390
Height = 21
Top = 4
Width = 6
AutoSize = False
Color = clWhite
Font.Color = clBlack
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object input_box5: TEdit
Left = 396
Height = 21
Top = 4
Width = 100
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
Color = clWhite
Font.Color = clBlack