-
Notifications
You must be signed in to change notification settings - Fork 26
/
Unit1.dfm
4516 lines (4516 loc) · 186 KB
/
Unit1.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 Form1: TForm1
Left = 188
Top = 132
HorzScrollBar.Tracking = True
HorzScrollBar.Visible = False
VertScrollBar.Tracking = True
VertScrollBar.Visible = False
AlphaBlendValue = 128
Caption = 'Form1'
ClientHeight = 661
ClientWidth = 884
Color = clBtnFace
Constraints.MinHeight = 700
Constraints.MinWidth = 900
DoubleBuffered = True
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Touch.InteractiveGestures = [igPressAndTap]
OnClose = FormClose
OnCreate = FormCreate
OnDblClick = FormDblClick
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnMouseEnter = FormMouseEnter
OnMouseWheel = FormMouseWheel
OnShow = FormShow
DesignSize = (
884
661)
PixelsPerInch = 96
TextHeight = 13
object Label12: TLabel
Left = 19
Top = 307
Width = 76
Height = 13
Alignment = taRightJustify
Caption = 'Time averaging '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object MemorySpeedButton1: TSpeedButton
Left = 64
Top = 449
Width = 36
Height = 25
Cursor = crHandPoint
Hint = 'Right click for options'
AllowAllUp = True
GroupIndex = 1
Caption = 'M1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
PopupMenu = MemoryPopupMenu
ShowHint = True
OnClick = MemorySpeedButtonClick
OnMouseDown = MemorySpeedButtonMouseDown
OnMouseUp = MemorySpeedButtonMouseUp
end
object MemorySpeedButton2: TSpeedButton
Left = 104
Top = 449
Width = 36
Height = 25
Cursor = crHandPoint
Hint = 'Right click for options'
HelpType = htKeyword
AllowAllUp = True
GroupIndex = 2
Caption = 'M2'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
PopupMenu = MemoryPopupMenu
ShowHint = True
OnClick = MemorySpeedButtonClick
OnMouseDown = MemorySpeedButtonMouseDown
OnMouseUp = MemorySpeedButtonMouseUp
end
object MemorySpeedButton3: TSpeedButton
Left = 144
Top = 449
Width = 36
Height = 25
Cursor = crHandPoint
Hint = 'Right click for options'
AllowAllUp = True
GroupIndex = 3
Caption = 'M3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
PopupMenu = MemoryPopupMenu
ShowHint = True
OnClick = MemorySpeedButtonClick
OnMouseDown = MemorySpeedButtonMouseDown
OnMouseUp = MemorySpeedButtonMouseUp
end
object TDRWindowLabel2: TLabel
Left = 101
Top = 376
Width = 14
Height = 13
Caption = 'XX'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object TDRWindowLabel1: TLabel
Left = 33
Top = 377
Width = 62
Height = 13
Alignment = taRightJustify
Caption = 'TDR window '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label3: TLabel
Left = 83
Top = 92
Width = 58
Height = 13
Alignment = taRightJustify
Caption = 'Start (MHz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label1: TLabel
Left = 74
Top = 140
Width = 67
Height = 13
Alignment = taRightJustify
Caption = 'Center (MHz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label2: TLabel
Left = 83
Top = 164
Width = 58
Height = 13
Alignment = taRightJustify
Caption = 'Span (MHz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label4: TLabel
Left = 85
Top = 116
Width = 56
Height = 13
Alignment = taRightJustify
Caption = 'Stop (MHz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label13: TLabel
Left = 90
Top = 188
Width = 51
Height = 13
Alignment = taRightJustify
Caption = 'CW (MHz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object PointBandwidthLabel: TLabel
Left = 65
Top = 236
Width = 76
Height = 13
Alignment = taRightJustify
Caption = 'Point RBW (Hz) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object PointsPerSegmentLabel: TLabel
Left = 56
Top = 211
Width = 85
Height = 13
Alignment = taRightJustify
Caption = 'Number of points '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label33: TLabel
Left = 450
Top = 35
Width = 57
Height = 13
Alignment = taRightJustify
Caption = 'Freq bands '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object SweepNameFontLabel: TLabel
Left = 13
Top = 246
Width = 167
Height = 18
Caption = 'SweepNameFontLabel'
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Tahoma'
Font.Pitch = fpFixed
Font.Style = [fsBold]
Font.Quality = fqAntialiased
ParentFont = False
Visible = False
end
object LCMatchingLabel: TLabel
Left = 565
Top = 35
Width = 61
Height = 13
Alignment = taRightJustify
Caption = 'LC matching '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object ScanOnceSpeedButton: TSpeedButton
Left = 62
Top = 57
Width = 51
Height = 27
Cursor = crHandPoint
Hint = 'Single scan'
AllowAllUp = True
GroupIndex = 4
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
04000000000080000000000B0000000B00001000000010000000008080000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000FFFFFF00000000000000
000000000000000000000000F00000000000000F1F0000000000000F11F00000
0000000F111F00000000000F1111F0000000000F11111F000000000F111111F0
0000000F11111F000000000F1111F0000000000F111F00000000000F11F00000
0000000F1F00000000000000F000000000000000000000000000}
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = ScanOnceSpeedButtonClick
end
object Label40: TLabel
Left = 13
Top = 331
Width = 82
Height = 13
Alignment = taRightJustify
Caption = 'Trace smoothing '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object CurveSmoothingLabel: TLabel
Left = 101
Top = 330
Width = 21
Height = 13
Caption = 'XXX'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object OutputPowerLabel2: TLabel
Left = 101
Top = 399
Width = 28
Height = 13
Caption = 'XXXX'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object OutputPowerLabel1: TLabel
Left = 25
Top = 400
Width = 70
Height = 13
Alignment = taRightJustify
Caption = 'Output power '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object ConnectDisconnectSpeedButton: TSpeedButton
Left = 8
Top = 31
Width = 101
Height = 21
Cursor = crHandPoint
Hint = 'Connect/Disconnect to/from device'
AllowAllUp = True
GroupIndex = 5
Caption = 'Disconnected'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = ConnectDisconnectSpeedButtonClick
end
object MemorySpeedButton0: TSpeedButton
Left = 5
Top = 449
Width = 55
Height = 25
Cursor = crHandPoint
Hint = 'Right click for options'
AllowAllUp = True
GroupIndex = 6
Down = True
Caption = 'Live'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
PopupMenu = MemoryPopupMenu
ShowHint = True
OnClick = MemorySpeedButtonClick
OnMouseDown = MemorySpeedButtonMouseDown
end
object RecordSpeedButton: TSpeedButton
Left = 169
Top = 57
Width = 51
Height = 27
Cursor = crHandPoint
Hint = 'Records all scans to '#39'.s2p'#39' files in the the recording directory'
AllowAllUp = True
GroupIndex = 7
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
04000000000080000000000B0000000B00001000000010000000008080000000
C000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000FFFFFF00000000000000
00000000000000000000000000FFFF0000000000FF1111FF0000000F11111111
F000000F11111111F00000F1111111111F0000F1111111111F0000F111111111
1F0000F1111111111F00000F11111111F000000FF1111111F0000000FF1111FF
0000000000FFFF00000000000000000000000000000000000000}
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = RecordSpeedButtonClick
OnMouseDown = RecordSpeedButtonMouseDown
end
object ScanSpeedButton: TSpeedButton
Left = 116
Top = 57
Width = 51
Height = 27
Cursor = crHandPoint
Hint = 'Continuous scan'
AllowAllUp = True
GroupIndex = 8
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
04000000000080000000940E0000940E0000100000001000000000000000FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FAFAFA00FFFFFF00111111111111
11111111111111111111EEEEEEEEEEEEEEEEE00000000000000EE00000000000
000EE0EEEEEEEEEEEE0EE0E1111111111E0EE0E111EEE1111E0EE0E111E00E11
1E0EE0EEEEE000EEEE0EE00000000000000EE00000000000000EEEEEEEE000EE
EEEE111111E00E111111111111EEE11111111111111111111111}
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = ScanSpeedButtonClick
end
object InfoPanelLabel2: TLabel
Left = 811
Top = 35
Width = 23
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Info '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object EDelayLabel: TLabel
Left = 80
Top = 259
Width = 61
Height = 13
Alignment = taRightJustify
Caption = 'e-delay (ps) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object S21OffsetLabel: TLabel
Left = 65
Top = 283
Width = 76
Height = 13
Alignment = taRightJustify
Caption = 'S21 offset (dB) '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label5: TLabel
Left = 33
Top = 354
Width = 62
Height = 13
Alignment = taRightJustify
Caption = 'Median filter '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object MedianFilterLabel: TLabel
Left = 101
Top = 353
Width = 14
Height = 13
Caption = 'XX'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object MemorySpeedButton4: TSpeedButton
Left = 184
Top = 449
Width = 36
Height = 25
Cursor = crHandPoint
Hint = 'Right click for options'
AllowAllUp = True
GroupIndex = 10
Caption = 'M4'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
PopupMenu = MemoryPopupMenu
ShowHint = True
OnClick = MemorySpeedButtonClick
OnMouseDown = MemorySpeedButtonMouseDown
OnMouseUp = MemorySpeedButtonMouseUp
end
object EnableNormaliseSpeedButton: TSpeedButton
Left = 114
Top = 421
Width = 106
Height = 25
Cursor = crHandPoint
AllowAllUp = True
GroupIndex = 11
Caption = 'Enable Norm'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = EnableNormaliseSpeedButtonClick
end
object MovingAverageFilterLabel: TLabel
Left = 101
Top = 307
Width = 14
Height = 13
Caption = 'XX'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label18: TLabel
Left = 341
Top = 35
Width = 18
Height = 13
Alignment = taRightJustify
Caption = 'Cal '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object CWModeSpeedButton: TSpeedButton
Left = 39
Top = 184
Width = 42
Height = 21
Cursor = crHandPoint
Hint = 'CW mode'
AllowAllUp = True
GroupIndex = 9
Caption = 'CW'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = CWModeSpeedButtonClick
end
object TimeAverageLevelTrackBar: TTrackBar
Left = 136
Top = 304
Width = 90
Height = 21
Cursor = crHandPoint
Ctl3D = True
Max = 6
ParentCtl3D = False
ParentShowHint = False
PageSize = 1
ShowHint = True
TabOrder = 29
ThumbLength = 19
TickMarks = tmBoth
TickStyle = tsNone
OnChange = TimeAverageLevelTrackBarChange
end
object CloseBitBtn: TBitBtn
Left = 840
Top = 4
Width = 36
Height = 21
Cursor = crHandPoint
Anchors = [akTop, akRight]
Glyph.Data = {
36050000424D3605000000000000360400002800000010000000100000000100
08000000000000010000130B0000130B00000001000000010000FFFFFF006360
F8007774FF007774FF00625FF8005D5BF7005956F500726FFD00615EF8005451
F3004F4DF2006C69FB00605DF7004A47F0004542EE007673FF007471FE006361
F9005F5CF7004946F0004441EE00716EFD006E6BFC004845EF004341EE006967
FB006663F9004744EF004240EE00615EF8005D5AF6004643EF00413FED005C59
F6003C39EB005B58F6003230E8005A57F5004341EE003E3CEC002A27E5005956
F5004240EE003E3BEC003937EB003532E9002220E3005451F300413FED003D3A
EC00302DE7002C2AE6001F1DE2004A47F000403EED003C39EB002725E5002422
E4003F3DED003B38EB00211FE3001E1CE2007A77FF007976FE006461F8006A68
F900817EFF00817EFE007471FD00625FF8006F6DFB007E7CFF007D7AFE008A87
FF007C79FD006C69FB00615EF8006E6CFA007D7AFF00615FF7007774FD008682
FF007673FC006462F800605DF7006D6AFA007B79FF00706DFB00807EFF007E7B
FF007C79FF007977FF005E5CF7007D79FF005E5BFF005B58FF007674FF005D5B
F7007976FF005956FF005754FF007270FF004846F0005C5AF6006764FA007472
FF007370FF00706EFF006E6CFF005755F7003F3DEE005B59F6006663FA007471
FF005A58F600504DF4006867FF00504EF5003634EB005B58F6006562FA007170
FF005956F6004745F2006362FF004A48F4002F2DE9005856F5006361FA005855
F600413FF1004C4AF600312FEA004F4CF200FFFFFF0000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000003A3B0000000000003C3D000000000035853637
00000000383984340000002F7F8081303100003233828384340000297778797A
2A2B2C2D7B7C7D7E2E000000256F707172262773747576280000000000236768
696A6B6C6D6E2400000000000000216162636465662200000000000000001D1E
5D5E5F601F2000000000000000191A5758595A5B5C1B1C000000000015165051
52535455565417180000000F1048494A4B11124C4D4E4F13140000023E424344
0B00000C454647450D0E0000023E3F0700000000084041090A00000000020300
0000000000040506000000000000000000000000000001000000}
TabOrder = 11
Visible = False
OnClick = CloseBitBtnClick
end
object SerialPortBaudrateComboBox: TComboBox
Left = 220
Top = 4
Width = 80
Height = 21
Cursor = crHandPoint
Hint = 'Serial port baudrate - ignored in USB VCP mode'
AutoDropDown = True
AutoCloseUp = True
Style = csDropDownList
DropDownCount = 40
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnChange = SerialPortBaudrateComboBoxChange
end
object DeviceComboBox: TComboBox
Left = 8
Top = 4
Width = 208
Height = 21
Cursor = crHandPoint
Hint = 'Device to connect too'
AutoDropDown = True
AutoCloseUp = True
Style = csDropDownList
DropDownCount = 40
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnChange = DeviceComboBoxChange
OnClick = DeviceComboBoxClick
OnDropDown = DeviceComboBoxDropDown
end
object StatusBar1: TStatusBar
Left = 0
Top = 642
Width = 884
Height = 19
Font.Charset = ANSI_CHARSET
Font.Color = clBtnText
Font.Height = -11
Font.Name = 'Consolas'
Font.Style = []
Panels = <
item
Alignment = taCenter
Width = 180
end
item
Alignment = taCenter
Width = 150
end
item
Alignment = taCenter
Width = 130
end
item
Alignment = taCenter
Width = 130
end
item
Alignment = taCenter
Width = 130
end
item
Alignment = taCenter
Width = 160
end
item
Alignment = taCenter
Width = 220
end
item
Alignment = taCenter
Width = 50
end>
ParentShowHint = False
ShowHint = False
UseSystemFont = False
StyleElements = [seClient, seBorder]
OnMouseDown = StatusBarMouseDown
end
object VelocityFactorComboBox: TComboBox
Left = 684
Top = 4
Width = 131
Height = 21
Cursor = crHandPoint
Hint = ' TDR \n Velocity factor '
AutoDropDown = True
AutoCloseUp = True
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
DropDownCount = 40
ParentShowHint = False
ShowHint = True
TabOrder = 14
OnChange = VelocityFactorComboBoxChange
end
object VelocityFactorEdit: TEdit
Left = 821
Top = 4
Width = 55
Height = 21
Alignment = taCenter
Anchors = [akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 15
Text = '0.66'
TextHint = 'Enter velocity factor'
OnChange = VelocityFactorEditChange
end
object TDRWindowTrackBar: TTrackBar
Left = 136
Top = 373
Width = 90
Height = 21
Cursor = crHandPoint
Hint = 'TDR FFT window amount'
Max = 20
ParentShowHint = False
PageSize = 1
Position = 10
ShowHint = True
TabOrder = 31
ThumbLength = 19
TickMarks = tmBoth
TickStyle = tsNone
OnChange = TDRWindowTrackBarChange
end
object CWMHzEdit: TEdit
Left = 144
Top = 184
Width = 76
Height = 21
Alignment = taCenter
TabOrder = 24
Text = '150'
TextHint = 'Enter MHz'
OnChange = FreqEditChange
OnKeyDown = CWMHzEditKeyDown
end
object StopMHzEdit: TEdit
Left = 144
Top = 112
Width = 76
Height = 21
Alignment = taCenter
Ctl3D = True
ParentCtl3D = False
TabOrder = 21
Text = '900'
TextHint = 'Enter MHz'
OnChange = FreqEditChange
OnKeyDown = StopMHzEditKeyDown
end
object SpanMHzEdit: TEdit
Left = 144
Top = 160
Width = 76
Height = 21
Alignment = taCenter
TabOrder = 23
Text = '10'
TextHint = 'Enter MHz'
OnChange = FreqEditChange
OnKeyDown = SpanMHzEditKeyDown
end
object CenterMHzEdit: TEdit
Left = 144
Top = 136
Width = 76
Height = 21
Alignment = taCenter
TabOrder = 22
Text = '145'
TextHint = 'Enter MHz'
OnChange = FreqEditChange
OnKeyDown = CenterMHzEditKeyDown
end
object StartMHzEdit: TEdit
Left = 144
Top = 88
Width = 76
Height = 21
Alignment = taCenter
ParentShowHint = False
ShowHint = True
TabOrder = 20
Text = '50k'
TextHint = 'Enter MHz'
OnChange = FreqEditChange
OnKeyDown = StartMHzEditKeyDown
end
object Panel1: TPanel
Left = 228
Top = 57
Width = 653
Height = 563
Anchors = [akLeft, akTop, akRight, akBottom]
BevelOuter = bvNone
DoubleBuffered = True
FullRepaint = False
ParentColor = True
ParentDoubleBuffered = False
ShowCaption = False
TabOrder = 39
object GraphPaintBox: TPaintBox
Left = 0
Top = 0
Width = 358
Height = 536
Cursor = crArrow
Hint = 'No hint'
Align = alClient
Color = clGray
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Consolas'
Font.Pitch = fpFixed
Font.Style = []
ParentColor = False
ParentFont = False
ParentShowHint = False
PopupMenu = GraphPopupMenu
ShowHint = False
Touch.InteractiveGestures = [igZoom, igPan, igPressAndTap]
OnDblClick = GraphPaintBoxDblClick
OnGesture = GraphPaintBoxGesture
OnMouseDown = GraphPaintBoxMouseDown
OnMouseEnter = GraphPaintBoxMouseEnter
OnMouseLeave = GraphPaintBoxMouseLeave
OnMouseMove = GraphPaintBoxMouseMove
OnMouseUp = GraphPaintBoxMouseUp
OnPaint = GraphPaintBoxPaint
ExplicitLeft = 188
ExplicitWidth = 170
ExplicitHeight = 543
end
object InfoPanel: TPanel
Left = 358
Top = 0
Width = 295
Height = 536
Align = alRight
BevelOuter = bvLowered
Caption = 'InfoPanel'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = True
ParentFont = False
TabOrder = 0
VerticalAlignment = taAlignTop
object Label14: TLabel
Left = 69
Top = 25
Width = 60
Height = 13
Alignment = taRightJustify
Caption = 'Frequency '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
end
object Label16: TLabel
Left = 45
Top = 87
Width = 84
Height = 13
Alignment = taRightJustify
Caption = 'S11 Real Imag '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
end
object Label23: TLabel
Left = 51
Top = 104
Width = 78
Height = 13
Alignment = taRightJustify
Caption = 'S11 Series R '
Font.Charset = ANSI_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Consolas'