-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormMain.dfm
1740 lines (1740 loc) · 53.1 KB
/
FormMain.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'frmMain'
ClientHeight = 718
ClientWidth = 957
Color = clBtnFace
Constraints.MinHeight = 600
Constraints.MinWidth = 970
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ShowHint = True
OnShow = FormShow
TextHeight = 13
object Splitter1: TSplitter
Left = 0
Top = 332
Width = 957
Height = 3
Cursor = crVSplit
Align = alTop
ResizeStyle = rsUpdate
ExplicitLeft = -8
ExplicitTop = 223
ExplicitWidth = 664
end
object pnlLog: TPanel
Left = 0
Top = 476
Width = 957
Height = 223
Margins.Left = 8
Margins.Top = 0
Margins.Right = 8
Margins.Bottom = 8
Align = alClient
BevelOuter = bvNone
Caption = 'pnlLog'
Constraints.MinHeight = 100
ShowCaption = False
TabOrder = 0
inline frmeLog1: TfrmeLog
Left = 0
Top = 0
Width = 957
Height = 223
Align = alClient
TabOrder = 0
ExplicitWidth = 957
ExplicitHeight = 223
inherited RichEdit1: TRichEdit
Width = 957
Height = 206
ScrollBars = ssBoth
ExplicitWidth = 957
ExplicitHeight = 206
end
inherited Panel2: TPanel
Width = 957
ExplicitWidth = 957
inherited SpeedButton1: TSpeedButton
Font.Color = clBtnText
end
end
end
end
object StatusBar1: TStatusBar
Left = 0
Top = 699
Width = 957
Height = 19
AutoHint = True
Panels = <>
SimplePanel = True
end
object pnlTrials: TPanel
Left = 0
Top = 335
Width = 957
Height = 141
Align = alTop
BevelOuter = bvNone
Caption = 'pnlTrials'
ShowCaption = False
TabOrder = 2
object Panel6: TPanel
Left = 0
Top = 0
Width = 957
Height = 17
Align = alTop
Caption = 'Trials'
TabOrder = 0
end
object Panel3: TPanel
Left = 0
Top = 17
Width = 663
Height = 124
Align = alClient
BevelOuter = bvNone
Caption = 'Panel3'
ShowCaption = False
TabOrder = 1
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 625
Height = 124
ActivePage = tbshtPGCMirato
Align = alLeft
TabOrder = 0
object tbshtPGCMirato: TTabSheet
Caption = 'PGC Mirato'
ImageIndex = 2
object Button2: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGareProvaPGCMiratoStart
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button17: TButton
Left = 183
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPGCMiratoStart
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
object Button18: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPGCMiratoStart
ParentShowHint = False
ShowHint = False
TabOrder = 2
end
end
object tbshtPGCCelere: TTabSheet
Caption = 'PGC Celere'
ImageIndex = 3
object Button6: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGareProvaPGCCelereStart
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button15: TButton
Left = 183
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPGCCelereStart
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
object Button16: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPGCCelereStart
ParentShowHint = False
ShowHint = False
TabOrder = 2
end
end
object tbshtPS150sec: TTabSheet
Caption = 'PS 150"'
ImageIndex = 6
object Button9: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGareProvaPS150
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button21: TButton
Left = 183
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPS150
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
object Button22: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPS150
ParentShowHint = False
ShowHint = False
TabOrder = 2
end
end
object tbshtPS20sec: TTabSheet
Caption = 'PS 20"'
ImageIndex = 5
object Button10: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPS20
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button20: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPS20
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
end
object tbshtPS10sec: TTabSheet
Caption = 'PS 10"'
ImageIndex = 4
object Button11: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPS10
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button19: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPS10
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
end
object tbshtPA8sec: TTabSheet
Caption = 'PA 8"'
ImageIndex = 9
object Button12: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGareProvaPA8
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button25: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPA8
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
object Button26: TButton
Left = 183
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPA8
ParentShowHint = False
ShowHint = False
TabOrder = 2
end
end
object tbshtPA6sec: TTabSheet
Caption = 'PA 6"'
ImageIndex = 8
object Button13: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPA6
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button24: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPA6
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
end
object tbshtPA4sec: TTabSheet
Caption = 'PA 4"'
ImageIndex = 7
object Button14: TButton
Left = 14
Top = 14
Width = 155
Height = 25
Action = actGarePrimaPA4
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button23: TButton
Left = 14
Top = 54
Width = 155
Height = 25
Action = actGareProssimaPA4
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
end
object tbshtModbus: TTabSheet
Caption = 'Modbus'
TabVisible = False
inline frmeModbusFunctions1: TfrmeModbusFunctions
Left = 0
Top = 0
Width = 617
Height = 96
Align = alClient
TabOrder = 0
ExplicitWidth = 617
ExplicitHeight = 96
inherited Panel4: TPanel
Width = 617
Caption = 'Functions'
ExplicitWidth = 617
end
inherited pgctrlFunctions: TPageControl
Width = 617
Height = 79
ExplicitWidth = 617
ExplicitHeight = 79
inherited tbshrFnReadHoldingRegisters: TTabSheet
ExplicitTop = 24
ExplicitHeight = 75
inherited Label3: TLabel
Width = 39
Height = 13
ExplicitWidth = 39
ExplicitHeight = 13
end
inherited Label4: TLabel
Width = 54
Height = 13
ExplicitWidth = 54
ExplicitHeight = 13
end
inherited Button2: TButton
Action = actFnReadHoldingRegisters
Caption = 'Read'
end
end
inherited tbshrFnReadInputRegisters: TTabSheet
ExplicitTop = 24
ExplicitHeight = 75
inherited Label12: TLabel
Width = 39
Height = 13
ExplicitWidth = 39
ExplicitHeight = 13
end
inherited Label13: TLabel
Width = 54
Height = 13
ExplicitWidth = 54
ExplicitHeight = 13
end
inherited Button6: TButton
Action = actFnReadInputRegisters
Caption = 'Read'
end
end
inherited tbshtFnPresetSingleRegister: TTabSheet
ExplicitTop = 24
ExplicitHeight = 75
inherited Label8: TLabel
Width = 39
Height = 13
ExplicitWidth = 39
ExplicitHeight = 13
end
inherited Label9: TLabel
Width = 26
Height = 13
ExplicitWidth = 26
ExplicitHeight = 13
end
inherited Label2: TLabel
Width = 46
Height = 13
ExplicitWidth = 46
ExplicitHeight = 13
end
inherited Button3: TButton
Action = actFnPresetSingleRegister
Caption = 'Preset'
end
end
inherited tbshtFnPresetMultipleRegisters: TTabSheet
ExplicitTop = 24
ExplicitWidth = 609
ExplicitHeight = 51
inherited Label10: TLabel
Width = 39
Height = 13
ExplicitWidth = 39
ExplicitHeight = 13
end
inherited Label11: TLabel
Width = 23
Height = 13
ExplicitWidth = 23
ExplicitHeight = 13
end
inherited Label1: TLabel
Width = 46
Height = 13
ExplicitWidth = 46
ExplicitHeight = 13
end
inherited Button5: TButton
Action = actFnPresetMultipleRegisters
end
inherited edtPresetMultipleRegistersData: TEdit
Width = 623
ExplicitWidth = 623
end
end
end
end
end
end
end
object pnlStopwatch: TPanel
Left = 663
Top = 17
Width = 294
Height = 124
Align = alRight
BevelOuter = bvNone
Caption = 'pnlStopwatch'
ShowCaption = False
TabOrder = 2
DesignSize = (
294
124)
object lblStopwatch: TLabel
Left = -9
Top = 32
Width = 261
Height = 82
Alignment = taCenter
Anchors = [akTop, akRight]
AutoSize = False
Caption = '00:00:0'
Color = clBlack
Constraints.MaxHeight = 148
Constraints.MaxWidth = 512
Font.Charset = DEFAULT_CHARSET
Font.Color = clGray
Font.Height = -64
Font.Name = 'Arial'
Font.Style = []
ParentColor = False
ParentFont = False
Transparent = False
Layout = tlCenter
end
end
end
object pnlTop: TPanel
Left = 0
Top = 0
Width = 957
Height = 332
Align = alTop
Caption = 'pnlTop'
Constraints.MinHeight = 229
ShowCaption = False
TabOrder = 3
object PageControl2: TPageControl
Left = 1
Top = 1
Width = 955
Height = 330
ActivePage = TabSheet1
Align = alClient
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'Shooting targets'
object Label3: TLabel
Left = 18
Top = 107
Width = 16
Height = 13
Alignment = taRightJustify
Caption = '1-5'
end
object Label4: TLabel
Left = 12
Top = 140
Width = 22
Height = 13
Alignment = taRightJustify
Caption = '6-10'
end
object PaintBox6_10: TPaintBox
Tag = 1
Left = 163
Top = 139
Width = 174
Height = 17
OnPaint = PaintBox1_5Paint
end
object PaintBox1_5: TPaintBox
Left = 163
Top = 106
Width = 174
Height = 17
OnPaint = PaintBox1_5Paint
end
object Label8: TLabel
Left = 131
Top = 107
Width = 23
Height = 13
Alignment = taRightJustify
Caption = 'Outs'
end
object Label9: TLabel
Left = 131
Top = 140
Width = 23
Height = 13
Alignment = taRightJustify
Caption = 'Outs'
end
object GroupBox1: TGroupBox
Left = 195
Top = 3
Width = 169
Height = 54
Caption = 'Communication'
TabOrder = 0
object Button1: TButton
Left = 13
Top = 19
Width = 65
Height = 25
Action = actOpen
TabOrder = 0
end
object Button4: TButton
Left = 89
Top = 19
Width = 66
Height = 25
Action = actClose
TabOrder = 1
end
end
object ToggleSwitch1: TToggleSwitch
Left = 40
Top = 104
Width = 72
Height = 20
Action = actGareEnb1_5
FrameColor = clWindowFrame
TabOrder = 1
ThumbColor = cl3DDkShadow
end
object ToggleSwitch2: TToggleSwitch
Left = 40
Top = 137
Width = 72
Height = 20
Action = actGareEnb6_10
FrameColor = clWindowFrame
TabOrder = 2
ThumbColor = cl3DDkShadow
end
object GroupBox2: TGroupBox
Left = 12
Top = 3
Width = 169
Height = 87
Caption = 'Manual'
TabOrder = 3
object Button3: TButton
Left = 13
Top = 20
Width = 66
Height = 25
Action = actGareResetCycle
ParentShowHint = False
ShowHint = False
TabOrder = 0
end
object Button7: TButton
Left = 13
Top = 51
Width = 66
Height = 25
Action = actGareApertura
ParentShowHint = False
ShowHint = False
TabOrder = 1
end
object Button8: TButton
Left = 90
Top = 51
Width = 66
Height = 25
Action = actGareChiusura
ParentShowHint = False
ShowHint = False
TabOrder = 2
end
end
object Button5: TButton
Left = 102
Top = 23
Width = 66
Height = 25
Action = actGareStop
ParentShowHint = False
ShowHint = False
TabOrder = 4
end
end
object TabSheet2: TTabSheet
Caption = 'Protocol'
ImageIndex = 1
object Panel5: TPanel
AlignWithMargins = True
Left = 16
Top = 16
Width = 915
Height = 105
Margins.Left = 16
Margins.Top = 16
Margins.Right = 16
Align = alTop
BevelOuter = bvNone
Caption = 'Panel5'
ShowCaption = False
TabOrder = 0
object pgctrlProtocolSettings: TPageControl
Left = 0
Top = 49
Width = 915
Height = 56
ActivePage = tbshtProtocolDummySettings
Align = alClient
Style = tsButtons
TabOrder = 0
object tbshtProtocolSerialSettings: TTabSheet
Caption = 'tbshtProtocolSerialSettings'
TabVisible = False
inline frmeSerialSettings1: TfrmeSerialSettings
Left = 3
Top = 1
Width = 554
Height = 37
AutoSize = True
TabOrder = 0
ExplicitLeft = 3
ExplicitTop = 1
inherited Label5: TLabel
Width = 30
Height = 13
ExplicitWidth = 30
ExplicitHeight = 13
end
inherited Label6: TLabel
Width = 28
Height = 13
ExplicitWidth = 28
ExplicitHeight = 13
end
inherited Label7: TLabel
Width = 42
Height = 13
ExplicitWidth = 42
ExplicitHeight = 13
end
inherited Label8: TLabel
Width = 43
Height = 13
ExplicitWidth = 43
ExplicitHeight = 13
end
inherited Label1: TLabel
Width = 49
Height = 13
ExplicitWidth = 49
ExplicitHeight = 13
end
inherited cmboxSpeed: TComboBox
Height = 21
end
inherited cmboxParity: TComboBox
Height = 21
end
inherited cmboxStopBits: TComboBox
Height = 21
TabOrder = 3
end
inherited cmboxDataBits: TComboBox
Height = 21
TabOrder = 4
end
inherited checkboxCancelTXEcho: TCheckBox
TabOrder = 2
end
inherited cmboxPortName: TComboBox
Height = 21
ExplicitHeight = 21
end
end
end
object tbshtProtocolTCPIPSettings: TTabSheet
Caption = 'tbshtProtocolTCPIPSettings'
ImageIndex = 1
TabVisible = False
object Label1: TLabel
Left = 3
Top = 2
Width = 22
Height = 13
Caption = 'Host'
end
object Label2: TLabel
Left = 136
Top = 2
Width = 20
Height = 13
Caption = 'Port'
end
object edtTCPIPHost: TEdit
Left = 3
Top = 18
Width = 121
Height = 21
TabOrder = 0
Text = 'localhost'
end
object edtTCPIPPort: TEdit
Left = 136
Top = 18
Width = 49
Height = 21
Alignment = taRightJustify
NumbersOnly = True
TabOrder = 1
Text = '502'
end
end
object tbshtProtocolDummySettings: TTabSheet
Caption = 'tbshtProtocolDummySettings'
ImageIndex = 2
TabVisible = False
end
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 915
Height = 49
Align = alTop
BevelOuter = bvNone
Caption = 'Panel1'
ShowCaption = False
TabOrder = 1
object Label5: TLabel
Left = 0
Top = 1
Width = 39
Height = 13
Caption = 'Protocol'
end
object Label6: TLabel
Left = 144
Top = 0
Width = 40
Height = 13
Caption = 'Slave ID'
end
object Label7: TLabel
Left = 208
Top = 0
Width = 70
Height = 13
Caption = 'Transaction ID'
end
object cboxAutoIncTransactionID: TCheckBox
Left = 296
Top = 18
Width = 145
Height = 17
Caption = 'Auto inc Transaction ID'
Checked = True
State = cbChecked
TabOrder = 0
end
object comboboxProtocol: TComboBox
Left = 0
Top = 17
Width = 129
Height = 21
Style = csDropDownList
TabOrder = 1
OnChange = comboboxProtocolChange
end
object edtSlaveId: TEdit
Left = 144
Top = 16
Width = 49
Height = 21
Alignment = taRightJustify
NumbersOnly = True
TabOrder = 2
Text = '1'
end
object edtTransactionID: TEdit
Left = 208
Top = 16
Width = 70
Height = 21
Alignment = taRightJustify
NumbersOnly = True
TabOrder = 3
Text = '0'
end
end
end
end
object tbshtMic: TTabSheet
Caption = 'Mic'
ImageIndex = 2
DesignSize = (
947
302)
object Label10: TLabel
Left = 13
Top = 48
Width = 32
Height = 13
Caption = 'Device'
end
object pboxFreqCuts: TPaintBox
Left = 3
Top = 267
Width = 381
Height = 34
Anchors = [akLeft, akBottom]
OnMouseDown = pboxFreqCutsMouseDown
OnMouseMove = pboxFreqCutsMouseMove
OnMouseUp = pboxFreqCutsMouseUp
OnPaint = pboxFreqCutsPaint
ExplicitTop = 229
end
object comboboxAudioSources: TComboBox
Left = 13
Top = 64
Width = 229
Height = 21
Style = csDropDownList
TabOrder = 0
end
object Button27: TButton
Left = 13
Top = 16
Width = 108
Height = 25
Action = actWaveStartListening
TabOrder = 1
end
object Button28: TButton
Left = 133
Top = 16
Width = 108
Height = 25
Action = actWaveStopListening
TabOrder = 2
end
object pgctrlWaveViewer: TPageControl
Left = 436
Top = 10
Width = 497
Height = 284
ActivePage = tbshtViewerFreq
Anchors = [akLeft, akTop, akBottom]
Constraints.MaxWidth = 640
TabOrder = 3
object tbshtViewerFreq: TTabSheet
Caption = 'Frequency domain'
object chartFreq: TChart
Left = 0
Top = 0
Width = 489
Height = 256
AllowPanning = pmNone
BackWall.Pen.Color = clSilver
BottomWall.Pen.Color = clSilver
Foot.Font.Color = clSilver
Foot.Font.Name = 'Segoe UI'
LeftWall.Pen.Color = clSilver
Legend.Font.Color = clSilver
Legend.Font.Name = 'Segoe UI'
Legend.Title.Font.Color = clSilver
Legend.Title.Font.Name = 'Segoe UI'
RightWall.Pen.Color = clSilver
RightWall.Visible = True
SubFoot.Font.Color = clSilver
SubFoot.Font.Name = 'Segoe UI'
SubTitle.Font.Color = clSilver
SubTitle.Font.Name = 'Segoe UI'
Title.Font.Color = clSilver
Title.Font.Name = 'Segoe UI'
Title.Text.Strings = (
'Freq (Hz)')
BottomAxis.Automatic = False
BottomAxis.AutomaticMaximum = False
BottomAxis.AutomaticMinimum = False
BottomAxis.Axis.Color = clSilver
BottomAxis.Axis.Width = 0
BottomAxis.Axis.Visible = False
BottomAxis.LabelsFormat.Font.Color = clSilver
BottomAxis.LabelsFormat.Font.Name = 'Segoe UI'
BottomAxis.LogarithmicBase = 2.000000000000000000
BottomAxis.Maximum = 11025.000000000000000000
BottomAxis.Minimum = 60.000000000000000000
BottomAxis.Title.Font.Color = clSilver
BottomAxis.Title.Font.Name = 'Segoe UI'
DepthAxis.Axis.Color = clSilver
DepthAxis.LabelsFormat.Font.Color = clSilver
DepthAxis.LabelsFormat.Font.Name = 'Segoe UI'
DepthAxis.Title.Font.Color = clSilver
DepthAxis.Title.Font.Name = 'Segoe UI'
DepthTopAxis.Axis.Color = clSilver
DepthTopAxis.LabelsFormat.Font.Color = clSilver
DepthTopAxis.LabelsFormat.Font.Name = 'Segoe UI'
DepthTopAxis.Title.Font.Color = clSilver
DepthTopAxis.Title.Font.Name = 'Segoe UI'
Frame.Color = clSilver
LeftAxis.Automatic = False
LeftAxis.AutomaticMaximum = False
LeftAxis.AutomaticMinimum = False
LeftAxis.Axis.Color = clSilver
LeftAxis.Axis.Width = 1
LeftAxis.Axis.Visible = False
LeftAxis.LabelsFormat.Font.Color = clSilver
LeftAxis.LabelsFormat.Font.Name = 'Segoe UI'
LeftAxis.LabelsSeparation = 20
LeftAxis.Maximum = 10.000000000000000000
LeftAxis.Minimum = -100.000000000000000000
LeftAxis.Title.Caption = 'dB'
LeftAxis.Title.Font.Color = clSilver
LeftAxis.Title.Font.Name = 'Segoe UI'
LeftAxis.Title.Visible = False
Panning.MouseWheel = pmwNone