forked from VE3NEA/MorseRunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.dfm
1435 lines (1435 loc) · 41.2 KB
/
Main.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 MainForm: TMainForm
Left = 238
Top = 115
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Morse Runner'
ClientHeight = 413
ClientWidth = 700
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Icon.Data = {
0000010002002020100000000000E80200002600000010101000000000002801
00000E0300002800000020000000400000000100040000000000800200000000
0000000000000000000000000000000000000000800000800000008080008000
0000800080008080000080808000C0C0C0000000FF0000FF000000FFFF00FF00
0000FF00FF00FFFF0000FFFFFF00000000000000000008800000000000000000
0000000000000770000000000000000000000000000777777000000000000000
000000000777FF8777700000000000000000000777FF70888777700000000000
00080777FF70F7708887777000000000000777FF70F770F70F88877000000000
0007FF70F770F70FF8870000000000000008788770F70FF88700787800000000
00000778870FF8870078887000000000000000077FF88700788FF88700000000
00000000077700788FFCCF8700000000000000000070788FFCCCCCF870000000
00000000007888FCCCCCCCF88700000000000000000780CCCCCCCCCF87000000
09999900000780CCCCCCCCCF8870000998FFF8990000780CCCCCCCC0F8700099
FFFCFFF99000780CCCCCC0088770009FFFFFFFCF90000780CFC008877000098F
F0FFFFFF89000780C0088770000009FFFF0FFFFFF900007808877000000009FC
FFF90000F900007887700000000009FFFFFFFFFFF9000007700000000000098F
FFFFFFFF89000000000000000000009FCFFFFFCF900000000000000000000099
FFFCFFF990000000000000000000000998FCF899000000000000000000000000
0999990000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000FFFF9FFFFFFE07FFFFF801FFFFE0007FFF80
001FFE00000FFE00000FFE00000FFE00000FFF80000FFFE00007FFF80007FFFC
0003FFFC0001F83E0001E00E0000C007000080030001800380070001801F0001
C07F0001C1FF0001E7FF0001FFFF8003FFFF8003FFFFC007FFFFE00FFFFFF83F
FFFFFEFFFFFFFC7FFFFFFC7FFFFF280000001000000020000000010004000000
0000C00000000000000000000000000000000000000000000000000080000080
00000080800080000000800080008080000080808000C0C0C0000000FF0000FF
000000FFFF00FF000000FF00FF00FFFF0000FFFFFF0000000000770000000000
0007F7750000000007F8778775000007887778887000000078788F0087000000
008800FF8850000000078FCCCF70001115003CCCC88501F8F91084CCC4F71F8F
FF1007C4780018F77785087800001FFFFF75000000005988F810000000000117
71000000000000005000000000000000500000000000FF3F0000FC0F0000F003
0000E0030000F0030000FC010000FE010000C30000008100000001830000008F
000000FF000001FF000083FF0000E7FF0000E7FF0000}
KeyPreview = True
Menu = MainMenu1
OldCreateOrder = False
Position = poDesktopCenter
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnKeyPress = FormKeyPress
OnKeyUp = FormKeyUp
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 0
Top = 0
Width = 700
Height = 2
Align = alTop
end
object Panel1: TPanel
Left = 0
Top = 294
Width = 700
Height = 119
Align = alBottom
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 0
object Label1: TLabel
Left = 16
Top = 12
Width = 17
Height = 13
Caption = 'Call'
end
object SpeedButton4: TSpeedButton
Tag = 1
Left = 12
Top = 68
Width = 61
Height = 17
Caption = 'F1 CQ'
OnClick = SendClick
end
object SpeedButton5: TSpeedButton
Tag = 2
Left = 76
Top = 68
Width = 61
Height = 17
Caption = 'F2 <#>'
OnClick = SendClick
end
object SpeedButton6: TSpeedButton
Tag = 3
Left = 140
Top = 68
Width = 61
Height = 17
Caption = 'F3 TU'
OnClick = SendClick
end
object SpeedButton7: TSpeedButton
Tag = 4
Left = 204
Top = 68
Width = 61
Height = 17
Caption = 'F4 <my>'
OnClick = SendClick
end
object SpeedButton8: TSpeedButton
Tag = 5
Left = 12
Top = 92
Width = 61
Height = 17
Caption = 'F5 <his>'
OnClick = SendClick
end
object SpeedButton9: TSpeedButton
Tag = 6
Left = 76
Top = 92
Width = 61
Height = 17
Caption = 'F6 B4'
OnClick = SendClick
end
object SpeedButton10: TSpeedButton
Tag = 7
Left = 140
Top = 92
Width = 61
Height = 17
Caption = 'F7 ?'
OnClick = SendClick
end
object SpeedButton11: TSpeedButton
Tag = 8
Left = 204
Top = 92
Width = 61
Height = 17
Caption = 'F8 NIL'
OnClick = SendClick
end
object Label2: TLabel
Left = 172
Top = 12
Width = 22
Height = 13
Caption = 'RST'
end
object Label3: TLabel
Left = 224
Top = 12
Width = 14
Height = 13
Caption = 'Nr.'
end
object Bevel2: TBevel
Left = 277
Top = 6
Width = 2
Height = 107
end
object Edit1: TEdit
Left = 12
Top = 28
Width = 149
Height = 28
AutoSelect = False
CharCase = ecUpperCase
Font.Charset = DEFAULT_CHARSET
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 = 168
Top = 28
Width = 45
Height = 28
AutoSelect = False
Font.Charset = DEFAULT_CHARSET
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 = 220
Top = 28
Width = 45
Height = 28
AutoSelect = False
Font.Charset = DEFAULT_CHARSET
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 = 529
Top = 8
Width = 163
Height = 31
BevelOuter = bvLowered
Caption = '00:00:00'
Color = clBlack
Font.Charset = ANSI_CHARSET
Font.Color = 14151712
Font.Height = -24
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 3
end
object Panel3: TPanel
Left = 292
Top = 35
Width = 225
Height = 61
BevelOuter = bvLowered
TabOrder = 4
object PaintBox1: TPaintBox
Left = 1
Top = 1
Width = 223
Height = 59
Align = alClient
Color = clInfoBk
ParentColor = False
OnPaint = PaintBox1Paint
end
end
object Panel4: TPanel
Left = 292
Top = 8
Width = 114
Height = 21
BevelOuter = bvLowered
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 5
end
object Panel7: TPanel
Left = 412
Top = 8
Width = 104
Height = 21
BevelOuter = bvLowered
TabOrder = 6
end
object Panel8: TPanel
Left = 292
Top = 103
Width = 225
Height = 9
Cursor = crHandPoint
Hint = 'RIT'
BevelOuter = bvLowered
ParentShowHint = False
ShowHint = True
TabOrder = 7
OnMouseDown = Panel8MouseDown
object Shape2: TShape
Left = 81
Top = 1
Width = 32
Height = 7
Cursor = crHandPoint
Brush.Color = 12902431
OnMouseDown = Shape2MouseDown
end
end
object Panel11: TPanel
Left = 529
Top = 44
Width = 163
Height = 68
BevelOuter = bvLowered
Caption = '0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 8
object ListView1: TListView
Left = 1
Top = 1
Width = 161
Height = 66
Align = alClient
BorderStyle = bsNone
Columns = <
item
Width = 41
end
item
Caption = 'Raw'
end
item
Caption = 'Verified'
end>
ColumnClick = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Items.Data = {
650000000300000000000000FFFFFFFFFFFFFFFF020000000000000003507473
000000000000FFFFFFFFFFFFFFFF0200000000000000044D756C740000000000
00FFFFFFFFFFFFFFFF02000000000000000553636F72650000FFFFFFFFFFFFFF
FFFFFFFFFF}
ReadOnly = True
RowSelect = True
ParentFont = False
TabOrder = 0
TabStop = False
ViewStyle = vsReport
end
end
end
object Panel5: TPanel
Left = 0
Top = 286
Width = 700
Height = 8
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
end
object Panel6: TPanel
Left = 0
Top = 2
Width = 488
Height = 284
Align = alClient
BevelOuter = bvNone
BorderStyle = bsSingle
TabOrder = 2
object Shape1: TShape
Left = 0
Top = 0
Width = 484
Height = 239
Align = alClient
Brush.Color = 16711401
Pen.Style = psClear
end
object Label14: TLabel
Left = 76
Top = 60
Width = 310
Height = 40
Caption = 'Morse Runner 1.68'
Font.Charset = ANSI_CHARSET
Font.Color = 12369084
Font.Height = -35
Font.Name = 'Arial'
Font.Style = [fsBold, fsItalic]
ParentFont = False
Transparent = True
end
object Label12: TLabel
Left = 71
Top = 56
Width = 310
Height = 40
Caption = 'Morse Runner 1.68'
Font.Charset = ANSI_CHARSET
Font.Color = clAqua
Font.Height = -35
Font.Name = 'Arial'
Font.Style = [fsBold, fsItalic]
ParentFont = False
Transparent = True
end
object Label13: TLabel
Left = 70
Top = 55
Width = 310
Height = 40
Caption = 'Morse Runner 1.68'
Font.Charset = ANSI_CHARSET
Font.Color = clGreen
Font.Height = -35
Font.Name = 'Arial'
Font.Style = [fsBold, fsItalic]
ParentFont = False
Transparent = True
end
object Label15: TLabel
Left = 106
Top = 108
Width = 245
Height = 13
Caption = 'Copyright © 2004-2006 Alex Shovkoplyas, VE3NEA'
Transparent = True
end
object Label16: TLabel
Left = 198
Top = 128
Width = 61
Height = 13
Caption = 'FREEWARE'
Transparent = True
end
object RichEdit1: TRichEdit
Left = 0
Top = 239
Width = 484
Height = 41
TabStop = False
Align = alBottom
BorderStyle = bsNone
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
Visible = False
end
end
object Panel9: TPanel
Left = 488
Top = 2
Width = 212
Height = 284
Align = alRight
BevelOuter = bvNone
TabOrder = 3
object GroupBox3: TGroupBox
Left = 9
Top = 170
Width = 194
Height = 81
Caption = ' Band Conditions '
TabOrder = 0
object Label11: TLabel
Left = 144
Top = 16
Width = 34
Height = 13
Caption = 'Activity'
end
object CheckBox2: TCheckBox
Left = 12
Top = 58
Width = 45
Height = 17
TabStop = False
Caption = 'QSB'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = CheckBoxClick
end
object CheckBox3: TCheckBox
Left = 12
Top = 38
Width = 45
Height = 17
TabStop = False
Caption = 'QRM'
Checked = True
State = cbChecked
TabOrder = 1
OnClick = CheckBoxClick
end
object CheckBox4: TCheckBox
Left = 12
Top = 18
Width = 45
Height = 17
TabStop = False
Caption = 'QRN'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = CheckBoxClick
end
object CheckBox5: TCheckBox
Left = 76
Top = 18
Width = 53
Height = 17
TabStop = False
Caption = 'Flutter'
Checked = True
State = cbChecked
TabOrder = 3
OnClick = CheckBoxClick
end
object CheckBox6: TCheckBox
Left = 76
Top = 40
Width = 45
Height = 17
TabStop = False
Caption = 'LID'#39's'
Checked = True
State = cbChecked
TabOrder = 4
OnClick = CheckBoxClick
end
object SpinEdit3: TSpinEdit
Left = 144
Top = 32
Width = 37
Height = 22
TabStop = False
MaxLength = 1
MaxValue = 9
MinValue = 1
TabOrder = 5
Value = 3
OnChange = SpinEdit3Change
end
end
object GroupBox1: TGroupBox
Left = 9
Top = 6
Width = 194
Height = 159
Caption = ' Station '
TabOrder = 1
object Label4: TLabel
Left = 12
Top = 20
Width = 17
Height = 13
Caption = 'Call'
end
object Label5: TLabel
Left = 156
Top = 48
Width = 27
Height = 13
Caption = 'WPM'
end
object Label6: TLabel
Left = 12
Top = 48
Width = 52
Height = 13
Caption = 'CW Speed'
end
object Label7: TLabel
Left = 12
Top = 76
Width = 45
Height = 13
Caption = 'CW Pitch'
end
object Label9: TLabel
Left = 12
Top = 104
Width = 68
Height = 13
Caption = 'RX Bandwidth'
end
object VolumeSlider1: TVolumeSlider
Left = 89
Top = 132
Width = 60
Height = 20
Hint = '-15.0 dB'
ShowHint = True
Margin = 5
Value = 0.75
Overloaded = False
OnChange = VolumeSlider1Change
OnDblClick = VolumeSliderDblClick
DbScale = 60
Db = -15
end
object Label18: TLabel
Left = 12
Top = 134
Width = 53
Height = 13
Caption = 'Mon. Level'
end
object Edit4: TEdit
Left = 36
Top = 16
Width = 89
Height = 21
TabStop = False
CharCase = ecUpperCase
TabOrder = 0
Text = 'VE3NEA'
OnChange = Edit4Change
end
object SpinEdit1: TSpinEdit
Left = 88
Top = 44
Width = 65
Height = 22
TabStop = False
MaxLength = 3
MaxValue = 120
MinValue = 10
TabOrder = 1
Value = 30
OnChange = SpinEdit1Change
end
object CheckBox1: TCheckBox
Left = 140
Top = 18
Width = 45
Height = 17
TabStop = False
Caption = 'QSK'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = CheckBox1Click
end
object ComboBox1: TComboBox
Left = 88
Top = 72
Width = 65
Height = 21
TabStop = False
Style = csDropDownList
DropDownCount = 12
ItemHeight = 13
TabOrder = 3
OnChange = ComboBox1Change
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')
end
object ComboBox2: TComboBox
Left = 88
Top = 100
Width = 65
Height = 21
TabStop = False
Style = csDropDownList
DropDownCount = 12
ItemHeight = 13
TabOrder = 4
OnChange = ComboBox2Change
Items.Strings = (
'100 Hz'
'150 Hz'
'200 Hz'
'250 Hz'
'300 Hz'
'350 Hz'
'400 Hz'
'450 Hz'
'500 Hz'
'550 Hz'
'600 Hz')
end
end
object Panel10: TPanel
Left = 0
Top = 253
Width = 212
Height = 31
Align = alBottom
BevelOuter = bvNone
TabOrder = 2
object Label8: TLabel
Left = 173
Top = 9
Width = 19
Height = 13
Caption = 'min.'
end
object Label10: TLabel
Left = 103
Top = 9
Width = 12
Height = 13
Caption = 'for'
end
object SpinEdit2: TSpinEdit
Left = 122
Top = 7
Width = 45
Height = 22
TabStop = False
MaxLength = 2
MaxValue = 240
MinValue = 1
TabOrder = 0
Value = 30
OnChange = SpinEdit2Change
end
object ToolBar1: TToolBar
Left = 13
Top = 5
Width = 84
Height = 24
Align = alNone
ButtonWidth = 65
Caption = 'ToolBar1'
EdgeBorders = []
Images = ImageList1
Indent = 3
List = True
ShowCaptions = True
TabOrder = 1
object ToolButton1: TToolButton
Tag = 1
Left = 3
Top = 2
AllowAllUp = True
Caption = ' Run '
DropdownMenu = PopupMenu1
Grouped = True
ImageIndex = 0
Style = tbsDropDown
OnClick = RunBtnClick
end
end
end
end
object AlSoundOut1: TAlSoundOut
BufCount = 8
OnBufAvailable = AlSoundOut1BufAvailable
Left = 384
Top = 148
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'
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'