Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change f2 to be exch instead of # #119

Merged
merged 6 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions Main.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -86,54 +86,54 @@ object MainForm: TMainForm
end
object SpeedButton4: TSpeedButton
Tag = 1
Left = 9
Left = 6
Top = 66
Width = 61
Width = 65
Height = 26
Caption = 'F1 CQ'
OnClick = SendClick
end
object SpeedButton5: TSpeedButton
Tag = 2
Left = 76
Left = 73
Top = 66
Width = 61
Width = 65
Height = 26
Caption = 'F2 <#>'
Caption = 'F2 <exch>'
OnClick = SendClick
end
object SpeedButton6: TSpeedButton
Tag = 3
Left = 140
Top = 66
Width = 61
Width = 65
Height = 26
Caption = 'F3 TU'
OnClick = SendClick
end
object SpeedButton7: TSpeedButton
Tag = 4
Left = 204
Left = 207
Top = 66
Width = 61
Width = 65
Height = 26
Caption = 'F4 <my>'
OnClick = SendClick
end
object SpeedButton8: TSpeedButton
Tag = 5
Left = 12
Left = 6
Top = 94
Width = 61
Width = 65
Height = 26
Caption = 'F5 <his>'
OnClick = SendClick
end
object SpeedButton9: TSpeedButton
Tag = 6
Left = 76
Left = 73
Top = 94
Width = 61
Width = 65
Height = 26
Caption = 'F6 B4'
OnClick = SendClick
Expand All @@ -142,16 +142,16 @@ object MainForm: TMainForm
Tag = 7
Left = 140
Top = 94
Width = 61
Width = 65
Height = 26
Caption = 'F7 ?'
OnClick = SendClick
end
object SpeedButton11: TSpeedButton
Tag = 8
Left = 204
Left = 207
Top = 94
Width = 61
Width = 65
Height = 26
Caption = 'F8 NIL'
OnClick = SendClick
Expand Down Expand Up @@ -1051,9 +1051,9 @@ object MainForm: TMainForm
ShortCut = 112
OnClick = SendClick
end
object Number1: TMenuItem
object Exchange1: TMenuItem
Tag = 2
Caption = 'Number'
Caption = 'Exchange'
ShortCut = 113
OnClick = SendClick
end
Expand Down
2 changes: 1 addition & 1 deletion Main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TMainForm = class(TForm)
File1: TMenuItem;
Send1: TMenuItem;
CQ1: TMenuItem;
Number1: TMenuItem;
Exchange1: TMenuItem;
TU1: TMenuItem;
MyCall1: TMenuItem;
HisCall1: TMenuItem;
Expand Down
51 changes: 51 additions & 0 deletions VCL/MorseRunnerVcl.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
package MorseRunnerVcl;
{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$IMPLICITBUILD ON}

requires
rtl,
vcl;

contains
BaseComp in 'BaseComp.pas',
Crc32 in 'Crc32.pas',
Mixers in 'Mixers.pas',
MorseKey in 'MorseKey.pas',
MorseTbl in 'MorseTbl.pas',
MovAvg in 'MovAvg.pas',
PermHint in 'PermHint.pas',
QuickAvg in 'QuickAvg.pas',
SndCustm in 'SndCustm.pas',
SndOut in 'SndOut.pas',
SndTypes in 'SndTypes.pas',
VolmSldr in 'VolmSldr.pas',
VolumCtl in 'VolumCtl.pas',
WavFile in 'WavFile.pas';

end.
Loading