File: Main.lfm

package info (click to toggle)
morserunner 0.9%2Blinux-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,384 kB
  • sloc: pascal: 5,344; makefile: 4
file content (1268 lines) | stat: -rw-r--r-- 30,117 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
object MainForm: TMainForm
  Left = 296
  Height = 425
  Top = 126
  Width = 700
  BorderIcons = [biSystemMenu]
  BorderStyle = bsSingle
  Caption = 'Morse Runner'
  ClientHeight = 425
  ClientWidth = 700
  Color = clBtnFace
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  KeyPreview = True
  Menu = MainMenu1
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyDown = FormKeyDown
  OnKeyPress = FormKeyPress
  OnKeyUp = FormKeyUp
  Position = poDesktopCenter
  LCLVersion = '3.0.0.3'
  object Bevel1: TBevel
    Left = 0
    Height = 2
    Top = 0
    Width = 700
    Align = alTop
  end
  object Panel1: TPanel
    Left = 0
    Height = 131
    Top = 294
    Width = 700
    Align = alBottom
    BevelInner = bvRaised
    BevelOuter = bvLowered
    ClientHeight = 131
    ClientWidth = 700
    ParentBackground = False
    TabOrder = 0
    object Label1: TLabel
      Left = 14
      Height = 13
      Top = 10
      Width = 20
      Caption = 'Call'
    end
    object SpeedButton4: TSpeedButton
      Tag = 1
      Left = 10
      Height = 17
      Top = 66
      Width = 61
      Caption = 'F1  CQ'
      OnClick = SendClick
    end
    object SpeedButton5: TSpeedButton
      Tag = 2
      Left = 74
      Height = 17
      Top = 66
      Width = 61
      Caption = 'F2  <#>'
      OnClick = SendClick
    end
    object SpeedButton6: TSpeedButton
      Tag = 3
      Left = 138
      Height = 17
      Top = 66
      Width = 61
      Caption = 'F3  TU'
      OnClick = SendClick
    end
    object SpeedButton7: TSpeedButton
      Tag = 4
      Left = 202
      Height = 17
      Top = 66
      Width = 61
      Caption = 'F4  <my>'
      OnClick = SendClick
    end
    object SpeedButton8: TSpeedButton
      Tag = 5
      Left = 10
      Height = 17
      Top = 90
      Width = 61
      Caption = 'F5  <his>'
      OnClick = SendClick
    end
    object SpeedButton9: TSpeedButton
      Tag = 6
      Left = 74
      Height = 17
      Top = 90
      Width = 61
      Caption = 'F6  B4'
      OnClick = SendClick
    end
    object SpeedButton10: TSpeedButton
      Tag = 7
      Left = 138
      Height = 17
      Top = 90
      Width = 61
      Caption = 'F7  ?'
      OnClick = SendClick
    end
    object SpeedButton11: TSpeedButton
      Tag = 8
      Left = 202
      Height = 17
      Top = 90
      Width = 61
      Caption = 'F8  NIL'
      OnClick = SendClick
    end
    object Label2: TLabel
      Left = 170
      Height = 13
      Top = 10
      Width = 21
      Caption = 'RST'
    end
    object Label3: TLabel
      Left = 222
      Height = 13
      Top = 10
      Width = 15
      Caption = 'Nr.'
    end
    object Bevel2: TBevel
      Left = 275
      Height = 107
      Top = 4
      Width = 2
    end
    object Edit1: TEdit
      Left = 10
      Height = 24
      Top = 26
      Width = 149
      AutoSelect = False
      CharCase = ecUppercase
      Font.Color = clWindowText
      Font.Height = -16
      Font.Name = 'MS Sans Serif'
      Font.Style = [fsBold]
      MaxLength = 12
      ParentFont = False
      TabOrder = 0
      OnChange = Edit1Change
      OnEnter = Edit1Enter
      OnKeyPress = Edit1KeyPress
    end
    object Edit2: TEdit
      Left = 166
      Height = 24
      Top = 26
      Width = 45
      AutoSelect = False
      Font.Color = clWindowText
      Font.Height = -16
      Font.Name = 'MS Sans Serif'
      Font.Style = [fsBold]
      MaxLength = 3
      ParentFont = False
      TabOrder = 1
      OnEnter = Edit2Enter
      OnKeyPress = Edit2KeyPress
    end
    object Edit3: TEdit
      Left = 218
      Height = 24
      Top = 26
      Width = 45
      AutoSelect = False
      Font.Color = clWindowText
      Font.Height = -16
      Font.Name = 'MS Sans Serif'
      Font.Style = [fsBold]
      MaxLength = 4
      ParentFont = False
      TabOrder = 2
      OnKeyPress = Edit3KeyPress
    end
    object Panel2: TPanel
      Left = 528
      Height = 31
      Top = 4
      Width = 163
      BevelOuter = bvLowered
      Caption = '00:00:00'
      Color = clBlack
      Font.CharSet = ANSI_CHARSET
      Font.Color = 14151712
      Font.Height = -24
      Font.Name = 'Arial'
      ParentBackground = False
      ParentColor = False
      ParentFont = False
      TabOrder = 3
    end
    object Panel3: TPanel
      Left = 290
      Height = 61
      Top = 33
      Width = 225
      BevelOuter = bvLowered
      ClientHeight = 61
      ClientWidth = 225
      ParentBackground = False
      TabOrder = 4
      object PaintBox1: TPaintBox
        Left = 1
        Height = 59
        Top = 1
        Width = 223
        Align = alClient
        Color = clInfoBk
        ParentColor = False
        OnPaint = PaintBox1Paint
      end
    end
    object Panel4: TPanel
      Left = 290
      Height = 21
      Top = 6
      Width = 114
      BevelOuter = bvLowered
      Font.Color = clRed
      Font.Height = -11
      Font.Name = 'MS Sans Serif'
      Font.Style = [fsBold]
      ParentBackground = False
      ParentFont = False
      TabOrder = 5
    end
    object Panel7: TPanel
      Left = 410
      Height = 21
      Top = 6
      Width = 104
      BevelOuter = bvLowered
      ParentBackground = False
      TabOrder = 6
    end
    object Panel8: TPanel
      Cursor = crHandPoint
      Left = 290
      Height = 9
      Hint = 'RIT'
      Top = 101
      Width = 225
      BevelOuter = bvLowered
      ClientHeight = 9
      ClientWidth = 225
      ParentBackground = False
      ParentShowHint = False
      ShowHint = True
      TabOrder = 7
      OnMouseDown = Panel8MouseDown
      object Shape2: TShape
        Cursor = crHandPoint
        Left = 79
        Height = 7
        Top = 0
        Width = 32
        Brush.Color = 12902431
        OnMouseDown = Shape2MouseDown
      end
    end
    object Panel11: TPanel
      Left = 527
      Height = 90
      Top = 35
      Width = 165
      BevelOuter = bvLowered
      ClientHeight = 90
      ClientWidth = 165
      Font.Color = clWindowText
      Font.Name = 'MS Sans Serif'
      Font.Style = [fsBold]
      ParentBackground = False
      ParentFont = False
      TabOrder = 8
      object ListView1: TListView
        Left = 1
        Height = 88
        Top = 1
        Width = 163
        Align = alClient
        AutoSort = False
        BorderStyle = bsNone
        Columns = <        
          item

            Width = 40
          end        
          item
            Caption = 'Raw'
            Width = 32
          end        
          item
            Caption = 'Verified'
            Width = 64
          end>
        ColumnClick = False
        Font.Color = clWindowText
        Font.Height = -12
        Font.Name = 'MS Sans Serif'
        Font.Style = [fsBold]
        ParentFont = False
        ReadOnly = True
        ScrollBars = ssNone
        TabStop = False
        TabOrder = 0
        ToolTips = False
        ViewStyle = vsReport
      end
    end
  end
  object Panel5: TPanel
    Left = 0
    Height = 8
    Top = 286
    Width = 700
    Align = alBottom
    BevelOuter = bvNone
    ParentBackground = False
    TabOrder = 1
  end
  object Panel6: TPanel
    Left = 0
    Height = 284
    Top = 2
    Width = 488
    Align = alClient
    BevelOuter = bvNone
    BorderStyle = bsSingle
    ClientHeight = 282
    ClientWidth = 486
    ParentBackground = False
    TabOrder = 2
    object Shape1: TShape
      Left = 0
      Height = 241
      Top = 0
      Width = 486
      Align = alClient
      Brush.Color = 16711401
      Pen.Style = psClear
    end
    object Label14: TLabel
      Left = 74
      Height = 39
      Top = 58
      Width = 294
      Caption = 'Morse Runner 0.9'
      Font.CharSet = ANSI_CHARSET
      Font.Color = 12369084
      Font.Height = -35
      Font.Name = 'Arial'
      Font.Style = [fsBold, fsItalic]
      ParentFont = False
    end
    object Label12: TLabel
      Left = 69
      Height = 39
      Top = 54
      Width = 294
      Caption = 'Morse Runner 0.9'
      Font.CharSet = ANSI_CHARSET
      Font.Color = clAqua
      Font.Height = -35
      Font.Name = 'Arial'
      Font.Style = [fsBold, fsItalic]
      ParentFont = False
    end
    object Label13: TLabel
      Left = 68
      Height = 39
      Top = 53
      Width = 294
      Caption = 'Morse Runner 0.9'
      Font.CharSet = ANSI_CHARSET
      Font.Color = clGreen
      Font.Height = -35
      Font.Name = 'Arial'
      Font.Style = [fsBold, fsItalic]
      ParentFont = False
    end
    object Label15: TLabel
      Left = 104
      Height = 13
      Top = 106
      Width = 277
      Caption = 'Copyright (c) 2004-2006 Alex Shovkoplyas, VE3NEA'
    end
    object Label16: TLabel
      Left = 184
      Height = 13
      Top = 144
      Width = 58
      Caption = 'FREEWARE'
    end
    object RichEdit1: TMemo
      Left = 0
      Height = 41
      Top = 241
      Width = 486
      Align = alBottom
      BorderStyle = bsNone
      Font.CharSet = ANSI_CHARSET
      Font.Color = clWindowText
      Font.Height = -13
      Font.Name = 'Courier New'
      ParentFont = False
      ReadOnly = True
      ScrollBars = ssVertical
      TabOrder = 0
      TabStop = False
      Visible = False
    end
    object Label17: TLabel
      Left = 104
      Height = 13
      Top = 120
      Width = 244
      Caption = 'Mac/Linux Port 2024 Thomas Fritzsche, DJ1TF'
    end
  end
  object Panel9: TPanel
    Left = 488
    Height = 284
    Top = 2
    Width = 212
    Align = alRight
    BevelOuter = bvNone
    ClientHeight = 284
    ClientWidth = 212
    ParentBackground = False
    TabOrder = 3
    object GroupBox3: TGroupBox
      Left = 7
      Height = 81
      Top = 168
      Width = 194
      Caption = ' Band Conditions '
      ClientHeight = 62
      ClientWidth = 184
      ParentBackground = False
      TabOrder = 0
      object Label11: TLabel
        Left = 142
        Height = 13
        Top = 2
        Width = 39
        Caption = 'Activity'
      end
      object CheckBox2: TCheckBox
        Left = 10
        Height = 18
        Top = 44
        Width = 49
        Caption = 'QSB'
        Checked = True
        State = cbChecked
        TabOrder = 0
        TabStop = False
        OnClick = CheckBoxClick
      end
      object CheckBox3: TCheckBox
        Left = 10
        Height = 18
        Top = 24
        Width = 52
        Caption = 'QRM'
        Checked = True
        State = cbChecked
        TabOrder = 1
        TabStop = False
        OnClick = CheckBoxClick
      end
      object CheckBox4: TCheckBox
        Left = 10
        Height = 18
        Top = 4
        Width = 51
        Caption = 'QRN'
        Checked = True
        State = cbChecked
        TabOrder = 2
        TabStop = False
        OnClick = CheckBoxClick
      end
      object CheckBox5: TCheckBox
        Left = 74
        Height = 18
        Top = 4
        Width = 61
        Caption = 'Flutter'
        Checked = True
        State = cbChecked
        TabOrder = 3
        TabStop = False
        OnClick = CheckBoxClick
      end
      object CheckBox6: TCheckBox
        Left = 74
        Height = 18
        Top = 26
        Width = 53
        Caption = 'LID''s'
        Checked = True
        State = cbChecked
        TabOrder = 4
        TabStop = False
        OnClick = CheckBoxClick
      end
      object SpinEdit3: TSpinEdit
        Left = 142
        Height = 19
        Top = 18
        Width = 37
        MaxValue = 9
        MinValue = 1
        OnChange = SpinEdit3Change
        TabStop = False
        TabOrder = 5
        Value = 3
      end
    end
    object GroupBox1: TGroupBox
      Left = 7
      Height = 159
      Top = 4
      Width = 194
      Caption = ' Station '
      ClientHeight = 140
      ClientWidth = 184
      ParentBackground = False
      TabOrder = 1
      object Label4: TLabel
        Left = 10
        Height = 13
        Top = 6
        Width = 20
        Caption = 'Call'
      end
      object Label5: TLabel
        Left = 154
        Height = 13
        Top = 34
        Width = 27
        Caption = 'WPM'
      end
      object Label6: TLabel
        Left = 10
        Height = 13
        Top = 34
        Width = 55
        Caption = 'CW Speed'
      end
      object Label7: TLabel
        Left = 10
        Height = 13
        Top = 62
        Width = 48
        Caption = 'CW Pitch'
      end
      object Label9: TLabel
        Left = 10
        Height = 13
        Top = 90
        Width = 73
        Caption = 'RX Bandwidth'
      end
      object Label18: TLabel
        Left = 10
        Height = 13
        Top = 120
        Width = 57
        Caption = 'Mon. Level'
      end
      object Edit4: TEdit
        Left = 34
        Height = 19
        Top = 2
        Width = 89
        CharCase = ecUppercase
        TabStop = False
        TabOrder = 0
        Text = 'DJ1TF'
        OnChange = Edit4Change
      end
      object SpinEdit1: TSpinEdit
        Left = 86
        Height = 19
        Top = 30
        Width = 65
        MaxValue = 120
        MinValue = 10
        OnChange = SpinEdit1Change
        TabStop = False
        TabOrder = 1
        Value = 25
      end
      object CheckBox1: TCheckBox
        Left = 138
        Height = 18
        Top = 4
        Width = 49
        Caption = 'QSK'
        Checked = True
        State = cbChecked
        TabOrder = 2
        TabStop = False
        OnClick = CheckBox1Click
      end
      object ComboBox1: TComboBox
        Left = 86
        Height = 20
        Top = 58
        Width = 65
        DropDownCount = 12
        ItemHeight = 26
        Items.Strings = (
          '300 Hz'
          '350 Hz'
          '400 Hz'
          '450 Hz'
          '500 Hz'
          '550 Hz'
          '600 Hz'
          '650 Hz'
          '700 Hz'
          '750 Hz'
          '800 Hz'
          '850 Hz'
          '900 Hz'
        )
        Style = csDropDownList
        TabOrder = 3
        TabStop = False
        Text = '0'
        OnChange = ComboBox1Change
      end
      object ComboBox2: TComboBox
        Left = 86
        Height = 20
        Top = 86
        Width = 65
        DropDownCount = 12
        ItemHeight = 26
        Items.Strings = (
          '100 Hz'
          '150 Hz'
          '200 Hz'
          '250 Hz'
          '300 Hz'
          '350 Hz'
          '400 Hz'
          '450 Hz'
          '500 Hz'
          '550 Hz'
          '600 Hz'
        )
        Style = csDropDownList
        TabOrder = 4
        TabStop = False
        Text = '0'
        OnChange = ComboBox2Change
      end
    end
    object Panel10: TPanel
      Left = 0
      Height = 31
      Top = 253
      Width = 212
      Align = alBottom
      BevelOuter = bvNone
      ClientHeight = 31
      ClientWidth = 212
      ParentBackground = False
      TabOrder = 2
      object Label8: TLabel
        Left = 171
        Height = 13
        Top = 7
        Width = 22
        Caption = 'min.'
      end
      object Label10: TLabel
        Left = 101
        Height = 13
        Top = 7
        Width = 15
        Caption = 'for'
      end
      object SpinEdit2: TSpinEdit
        Left = 120
        Height = 19
        Top = 0
        Width = 45
        MaxValue = 240
        MinValue = 1
        OnChange = SpinEdit2Change
        TabStop = False
        TabOrder = 0
        Value = 10
      end
      object ToolBar1: TToolBar
        Left = 11
        Height = 24
        Top = 3
        Width = 84
        Align = alNone
        ButtonHeight = 22
        ButtonWidth = 65
        Caption = 'ToolBar1'
        EdgeBorders = []
        Images = ImageList1
        Indent = 3
        List = True
        ShowCaptions = True
        TabOrder = 1
        object ToolButton1: TToolButton
          Tag = 1
          Left = 3
          Top = 0
          AllowAllUp = True
          Caption = '   Run   '
          DropdownMenu = PopupMenu1
          Grouped = True
          ImageIndex = 0
          OnClick = RunBtnClick
          Style = tbsDropDown
        end
      end
    end
  end
  object MainMenu1: TMainMenu
    Left = 356
    Top = 148
    object File1: TMenuItem
      Caption = 'File'
      OnClick = File1Click
      object ViewScoreTable1: TMenuItem
        Caption = 'View Score Table'
        OnClick = ViewScoreTable1Click
      end
      object ViewScoreBoardMNU: TMenuItem
        Caption = 'View Hi-Score web page...'
        OnClick = ViewScoreBoardMNUClick
      end
      object N5: TMenuItem
        Caption = '-'
      end
      object AudioRecordingEnabled1: TMenuItem
        Caption = 'Audio Recording Enabled'
        OnClick = AudioRecordingEnabled1Click
      end
      object PlayRecordedAudio1: TMenuItem
        Caption = 'Play Recorded Audio'
        Enabled = False
        OnClick = PlayRecordedAudio1Click
      end
      object N8: TMenuItem
        Caption = '-'
      end
      object Exit1: TMenuItem
        Caption = 'Exit'
        OnClick = Exit1Click
      end
    end
    object Run1: TMenuItem
      Caption = 'Run'
      object PileUp1: TMenuItem
        Tag = 1
        Caption = 'Pile-Up'
        ShortCut = 120
        OnClick = RunMNUClick
      end
      object SingleCalls1: TMenuItem
        Tag = 2
        Caption = 'Single Calls'
        ShortCut = 121
        OnClick = RunMNUClick
      end
      object Competition1: TMenuItem
        Tag = 3
        Caption = 'WPX Competition'
        OnClick = RunMNUClick
      end
      object HSTCompetition2: TMenuItem
        Tag = 4
        Caption = 'HST Competition'
        ShortCut = 16504
        OnClick = RunMNUClick
      end
      object N4: TMenuItem
        Caption = '-'
      end
      object Stop1MNU: TMenuItem
        Caption = 'Stop'
        Enabled = False
        OnClick = StopMNUClick
      end
    end
    object Send1: TMenuItem
      Caption = 'Send'
      object CQ1: TMenuItem
        Tag = 1
        Caption = 'CQ'
        ShortCut = 112
        OnClick = SendClick
      end
      object Number1: TMenuItem
        Tag = 2
        Caption = 'Number'
        ShortCut = 113
        OnClick = SendClick
      end
      object TU1: TMenuItem
        Tag = 3
        Caption = 'TU'
        ShortCut = 114
        OnClick = SendClick
      end
      object MyCall1: TMenuItem
        Tag = 4
        Caption = 'My Call'
        ShortCut = 115
        OnClick = SendClick
      end
      object HisCall1: TMenuItem
        Tag = 5
        Caption = 'His Call'
        ShortCut = 116
        OnClick = SendClick
      end
      object QSOB41: TMenuItem
        Tag = 6
        Caption = 'QSO B4'
        ShortCut = 117
        OnClick = SendClick
      end
      object N1: TMenuItem
        Tag = 7
        Caption = '<?>'
        ShortCut = 118
        OnClick = SendClick
      end
      object AGN1: TMenuItem
        Tag = 8
        Caption = 'NIL'
        ShortCut = 119
        OnClick = SendClick
      end
    end
    object Settings1: TMenuItem
      Caption = 'Settings'
      OnClick = Settings1Click
      object Call1: TMenuItem
        Caption = 'Call...'
        OnClick = Call1Click
      end
      object QSK1: TMenuItem
        Caption = 'QSK'
        OnClick = QSK1Click
      end
      object CWSpeed1: TMenuItem
        Caption = 'CW Speed'
        object N10WPM1: TMenuItem
          Tag = 10
          Caption = '10 WPM'
          OnClick = NWPMClick
        end
        object N15WPM1: TMenuItem
          Tag = 15
          Caption = '15 WPM'
          OnClick = NWPMClick
        end
        object N20WPM1: TMenuItem
          Tag = 20
          Caption = '20 WPM'
          OnClick = NWPMClick
        end
        object N25WPM1: TMenuItem
          Tag = 25
          Caption = '25 WPM'
          OnClick = NWPMClick
        end
        object N30WPM1: TMenuItem
          Tag = 30
          Caption = '30 WPM'
          OnClick = NWPMClick
        end
        object N35WPM1: TMenuItem
          Tag = 35
          Caption = '35 WPM'
          OnClick = NWPMClick
        end
        object N40WPM1: TMenuItem
          Tag = 40
          Caption = '40 WPM'
          OnClick = NWPMClick
        end
        object N45WPM1: TMenuItem
          Tag = 45
          Caption = '45 WPM'
          OnClick = NWPMClick
        end
        object N50WPM1: TMenuItem
          Tag = 50
          Caption = '50 WPM'
          OnClick = NWPMClick
        end
        object N55WPM1: TMenuItem
          Tag = 55
          Caption = '55 WPM'
          OnClick = NWPMClick
        end
        object N60WPM1: TMenuItem
          Tag = 60
          Caption = '60 WPM'
          OnClick = NWPMClick
        end
      end
      object CWBandwidth1: TMenuItem
        Caption = 'CW Pitch'
        object N300Hz1: TMenuItem
          Caption = '300 Hz'
          OnClick = Pitch1Click
        end
        object N350Hz1: TMenuItem
          Tag = 1
          Caption = '350 Hz'
          OnClick = Pitch1Click
        end
        object N400Hz1: TMenuItem
          Tag = 2
          Caption = '400 Hz'
          OnClick = Pitch1Click
        end
        object N450Hz1: TMenuItem
          Tag = 3
          Caption = '450 Hz'
          OnClick = Pitch1Click
        end
        object N500Hz1: TMenuItem
          Tag = 4
          Caption = '500 Hz'
          OnClick = Pitch1Click
        end
        object N550Hz1: TMenuItem
          Tag = 5
          Caption = '550 Hz'
          OnClick = Pitch1Click
        end
        object N600Hz1: TMenuItem
          Tag = 6
          Caption = '600 Hz'
          OnClick = Pitch1Click
        end
        object N650Hz1: TMenuItem
          Tag = 7
          Caption = '650 Hz'
          OnClick = Pitch1Click
        end
        object N700Hz1: TMenuItem
          Tag = 8
          Caption = '700 Hz'
          OnClick = Pitch1Click
        end
        object N750Hz1: TMenuItem
          Tag = 9
          Caption = '750 Hz'
          OnClick = Pitch1Click
        end
        object N800Hz1: TMenuItem
          Tag = 10
          Caption = '800 Hz'
          OnClick = Pitch1Click
        end
        object N850Hz1: TMenuItem
          Tag = 11
          Caption = '850 Hz'
          OnClick = Pitch1Click
        end
        object N900Hz1: TMenuItem
          Tag = 12
          Caption = '900 Hz'
          OnClick = Pitch1Click
        end
      end
      object CWBandwidth2: TMenuItem
        Caption = 'CW Bandwidth'
        object N100Hz1: TMenuItem
          Caption = '100 Hz'
          OnClick = Bw1Click
        end
        object N150Hz1: TMenuItem
          Tag = 1
          Caption = '150 Hz'
          OnClick = Bw1Click
        end
        object N200Hz1: TMenuItem
          Tag = 2
          Caption = '200 Hz'
          OnClick = Bw1Click
        end
        object N250Hz1: TMenuItem
          Tag = 3
          Caption = '250 Hz'
          OnClick = Bw1Click
        end
        object N300Hz2: TMenuItem
          Tag = 4
          Caption = '300 Hz'
          OnClick = Bw1Click
        end
        object N350Hz2: TMenuItem
          Tag = 5
          Caption = '350 Hz'
          OnClick = Bw1Click
        end
        object N400Hz2: TMenuItem
          Tag = 6
          Caption = '400 Hz'
          OnClick = Bw1Click
        end
        object N450Hz2: TMenuItem
          Tag = 7
          Caption = '450 Hz'
          OnClick = Bw1Click
        end
        object N500Hz2: TMenuItem
          Tag = 8
          Caption = '500 Hz'
          OnClick = Bw1Click
        end
        object N550Hz2: TMenuItem
          Tag = 9
          Caption = '550 Hz'
          OnClick = Bw1Click
        end
        object N600Hz2: TMenuItem
          Tag = 10
          Caption = '600 Hz'
          OnClick = Bw1Click
        end
      end
      object MonLevel1: TMenuItem
        Tag = -30
        Caption = 'Mon. Level'
        object N30dB1: TMenuItem
          Tag = -60
          Caption = '-60 dB'
          OnClick = SelfMonClick
        end
        object N20dB1: TMenuItem
          Tag = -40
          Caption = '-40 dB'
          OnClick = SelfMonClick
        end
        object N10dB1: TMenuItem
          Tag = -20
          Caption = '-20 dB'
          OnClick = SelfMonClick
        end
        object N0dB1: TMenuItem
          Caption = '0 dB'
          OnClick = SelfMonClick
        end
        object N10dB2: TMenuItem
          Tag = 20
          Caption = '+20 dB'
          OnClick = SelfMonClick
        end
      end
      object N6: TMenuItem
        Caption = '-'
      end
      object QRN1: TMenuItem
        Caption = 'QRN'
        OnClick = LIDS1Click
      end
      object QRM1: TMenuItem
        Caption = 'QRM'
        OnClick = LIDS1Click
      end
      object QSB1: TMenuItem
        Caption = 'QSB'
        OnClick = LIDS1Click
      end
      object Flutter1: TMenuItem
        Caption = 'Flutter'
        OnClick = LIDS1Click
      end
      object LIDS1: TMenuItem
        Caption = 'LIDS'
        OnClick = LIDS1Click
      end
      object Activity1: TMenuItem
        Caption = 'Activity'
        object N11: TMenuItem
          Tag = 1
          Caption = '1'
          OnClick = Activity1Click
        end
        object N21: TMenuItem
          Tag = 2
          Caption = '2'
          OnClick = Activity1Click
        end
        object N31: TMenuItem
          Tag = 3
          Caption = '3'
          OnClick = Activity1Click
        end
        object N41: TMenuItem
          Tag = 4
          Caption = '4'
          OnClick = Activity1Click
        end
        object N51: TMenuItem
          Tag = 5
          Caption = '5'
          OnClick = Activity1Click
        end
        object N61: TMenuItem
          Tag = 6
          Caption = '6'
          OnClick = Activity1Click
        end
        object N71: TMenuItem
          Tag = 7
          Caption = '7'
          OnClick = Activity1Click
        end
        object N81: TMenuItem
          Tag = 8
          Caption = '8'
          OnClick = Activity1Click
        end
        object N91: TMenuItem
          Tag = 9
          Caption = '9'
          OnClick = Activity1Click
        end
      end
      object N7: TMenuItem
        Caption = '-'
      end
      object Duration1: TMenuItem
        Caption = 'Duration'
        object N5min1: TMenuItem
          Tag = 5
          Caption = '5 min'
          OnClick = Duration1Click
        end
        object N10min1: TMenuItem
          Tag = 10
          Caption = '10 min'
          OnClick = Duration1Click
        end
        object N15min1: TMenuItem
          Tag = 15
          Caption = '15 min'
          OnClick = Duration1Click
        end
        object N30min1: TMenuItem
          Tag = 30
          Caption = '30 min'
          OnClick = Duration1Click
        end
        object N60min1: TMenuItem
          Tag = 60
          Caption = '60 min'
          OnClick = Duration1Click
        end
        object N90min1: TMenuItem
          Tag = 90
          Caption = '90 min'
          OnClick = Duration1Click
        end
        object N120min1: TMenuItem
          Tag = 120
          Caption = '120 min'
          OnClick = Duration1Click
        end
      end
      object Operator1: TMenuItem
        Caption = 'HST Operator...'
        OnClick = Operator1Click
      end
    end
    object Help1: TMenuItem
      Caption = 'Help'
      object WebPage1: TMenuItem
        Caption = 'Web Page...'
        OnClick = WebPage1Click
      end
      object Readme1: TMenuItem
        Caption = 'Readme...'
        OnClick = Readme1Click
      end
      object N2: TMenuItem
        Caption = '-'
      end
      object About1: TMenuItem
        Caption = 'About...'
        OnClick = About1Click
      end
    end
  end
  object PopupMenu1: TPopupMenu
    Left = 356
    Top = 176
    object PileupMNU: TMenuItem
      Tag = 1
      Caption = 'Pile-Up'
      Default = True
      OnClick = RunMNUClick
    end
    object SingleCallsMNU: TMenuItem
      Tag = 2
      Caption = 'Single Calls'
      OnClick = RunMNUClick
    end
    object CompetitionMNU: TMenuItem
      Tag = 3
      Caption = 'WPX Competition'
      OnClick = RunMNUClick
    end
    object HSTCompetition1: TMenuItem
      Tag = 4
      Caption = 'HST Competition'
      OnClick = RunMNUClick
    end
    object N3: TMenuItem
      Caption = '-'
    end
    object StopMNU: TMenuItem
      Caption = 'Stop'
      Enabled = False
      OnClick = StopMNUClick
    end
  end
  object ImageList1: TImageList
    Left = 384
    Top = 176
    Bitmap = {
      4C7A020000001000000010000000880000000000000078DAC593510AC0200C43
      7B78CFE6B53226283A2B34E9C612FC19BC27D36AB605960B920EB4EA0E8C6A0E
      2CE51DD8CA39E036EEC0B131C7912DA5B4A5FC7F9075CF9F60B7FB27D965FE04
      76CCBFC85A926DF98BED7C76FF3BAAA3F3B556C931F38AE3C9B30E8F671C273E
      EAF862FFFE4D3DFF28EBDD3FC33EE78F65E7F957D837DE1F9B0BEF5763AE
    }
  end
end