From 0c4ff0d019ad36f1d490eb6961e71713b5d693f7 Mon Sep 17 00:00:00 2001 From: Erick Kinnee Date: Wed, 6 Mar 2019 10:19:57 -0600 Subject: [PATCH] Re-org because I forgot to include the test forms app. --- SharpCAT.sln | 16 +-- CATCommand.cs => SharpCAT/CATCommand.cs | 0 .../FT818/Yaesu-FT-818nd-manual-FT818.pdf | Bin Serial.cs => SharpCAT/Serial.cs | 0 SharpCAT.cs => SharpCAT/SharpCAT.cs | 0 SharpCAT.csproj => SharpCAT/SharpCAT.csproj | 0 Yaesu FT818.cs => SharpCAT/Yaesu FT818.cs | 0 SharpCATForms/App.config | 6 + SharpCATForms/Form1.Designer.cs | 40 ++++++ SharpCATForms/Form1.cs | 12 ++ SharpCATForms/Program.cs | 20 +++ SharpCATForms/Properties/AssemblyInfo.cs | 35 ++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ SharpCATForms/Properties/Resources.resx | 117 ++++++++++++++++++ SharpCATForms/Properties/Settings.Designer.cs | 30 +++++ SharpCATForms/Properties/Settings.settings | 7 ++ SharpCATForms/SharpCATForms.csproj | 83 +++++++++++++ 17 files changed, 429 insertions(+), 8 deletions(-) rename CATCommand.cs => SharpCAT/CATCommand.cs (100%) rename {Docs => SharpCAT/Docs}/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf (100%) rename Serial.cs => SharpCAT/Serial.cs (100%) rename SharpCAT.cs => SharpCAT/SharpCAT.cs (100%) rename SharpCAT.csproj => SharpCAT/SharpCAT.csproj (100%) rename Yaesu FT818.cs => SharpCAT/Yaesu FT818.cs (100%) create mode 100644 SharpCATForms/App.config create mode 100644 SharpCATForms/Form1.Designer.cs create mode 100644 SharpCATForms/Form1.cs create mode 100644 SharpCATForms/Program.cs create mode 100644 SharpCATForms/Properties/AssemblyInfo.cs create mode 100644 SharpCATForms/Properties/Resources.Designer.cs create mode 100644 SharpCATForms/Properties/Resources.resx create mode 100644 SharpCATForms/Properties/Settings.Designer.cs create mode 100644 SharpCATForms/Properties/Settings.settings create mode 100644 SharpCATForms/SharpCATForms.csproj diff --git a/SharpCAT.sln b/SharpCAT.sln index 082ccd9..0ad3c97 100644 --- a/SharpCAT.sln +++ b/SharpCAT.sln @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28307.421 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharpCAT", "SharpCAT.csproj", "{C3A9288A-CE33-46F7-83EA-9534B8DC4A31}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{3C050B74-ACBA-427C-B3F4-069D6E23BD67}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Radios", "Radios", "{7D1D7F1D-8AC1-4309-BBFB-D8B12363A347}" @@ -13,10 +11,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Yaesu", "Yaesu", "{4B0F6F9A EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FT818", "FT818", "{9657A3C4-B6F9-4E2D-A65E-DAE55A6DBEF2}" ProjectSection(SolutionItems) = preProject - Docs\Radios\Yaesu\FT818\Yaesu-FT-818nd-manual-FT818.pdf = Docs\Radios\Yaesu\FT818\Yaesu-FT-818nd-manual-FT818.pdf + SharpCAT\Docs\Radios\Yaesu\FT818\Yaesu-FT-818nd-manual-FT818.pdf = SharpCAT\Docs\Radios\Yaesu\FT818\Yaesu-FT-818nd-manual-FT818.pdf EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpCATForms", "..\SharpCATForms\SharpCATForms.csproj", "{3483B368-338A-4BE3-AEB9-460E374B2C99}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpCATForms", "SharpCATForms\SharpCATForms.csproj", "{3483B368-338A-4BE3-AEB9-460E374B2C99}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharpCAT", "SharpCAT\SharpCAT.csproj", "{DAD3E7BE-905A-4768-A695-0BCF96171E35}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -24,14 +24,14 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C3A9288A-CE33-46F7-83EA-9534B8DC4A31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C3A9288A-CE33-46F7-83EA-9534B8DC4A31}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3A9288A-CE33-46F7-83EA-9534B8DC4A31}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C3A9288A-CE33-46F7-83EA-9534B8DC4A31}.Release|Any CPU.Build.0 = Release|Any CPU {3483B368-338A-4BE3-AEB9-460E374B2C99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3483B368-338A-4BE3-AEB9-460E374B2C99}.Debug|Any CPU.Build.0 = Debug|Any CPU {3483B368-338A-4BE3-AEB9-460E374B2C99}.Release|Any CPU.ActiveCfg = Release|Any CPU {3483B368-338A-4BE3-AEB9-460E374B2C99}.Release|Any CPU.Build.0 = Release|Any CPU + {DAD3E7BE-905A-4768-A695-0BCF96171E35}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DAD3E7BE-905A-4768-A695-0BCF96171E35}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DAD3E7BE-905A-4768-A695-0BCF96171E35}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DAD3E7BE-905A-4768-A695-0BCF96171E35}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/CATCommand.cs b/SharpCAT/CATCommand.cs similarity index 100% rename from CATCommand.cs rename to SharpCAT/CATCommand.cs diff --git a/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf b/SharpCAT/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf similarity index 100% rename from Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf rename to SharpCAT/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf diff --git a/Serial.cs b/SharpCAT/Serial.cs similarity index 100% rename from Serial.cs rename to SharpCAT/Serial.cs diff --git a/SharpCAT.cs b/SharpCAT/SharpCAT.cs similarity index 100% rename from SharpCAT.cs rename to SharpCAT/SharpCAT.cs diff --git a/SharpCAT.csproj b/SharpCAT/SharpCAT.csproj similarity index 100% rename from SharpCAT.csproj rename to SharpCAT/SharpCAT.csproj diff --git a/Yaesu FT818.cs b/SharpCAT/Yaesu FT818.cs similarity index 100% rename from Yaesu FT818.cs rename to SharpCAT/Yaesu FT818.cs diff --git a/SharpCATForms/App.config b/SharpCATForms/App.config new file mode 100644 index 0000000..0f3b743 --- /dev/null +++ b/SharpCATForms/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/SharpCATForms/Form1.Designer.cs b/SharpCATForms/Form1.Designer.cs new file mode 100644 index 0000000..af3e729 --- /dev/null +++ b/SharpCATForms/Form1.Designer.cs @@ -0,0 +1,40 @@ +namespace SharpCATForms +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/SharpCATForms/Form1.cs b/SharpCATForms/Form1.cs new file mode 100644 index 0000000..10a3fc8 --- /dev/null +++ b/SharpCATForms/Form1.cs @@ -0,0 +1,12 @@ +using System.Windows.Forms; + +namespace SharpCATForms +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/SharpCATForms/Program.cs b/SharpCATForms/Program.cs new file mode 100644 index 0000000..bf0b362 --- /dev/null +++ b/SharpCATForms/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Windows.Forms; + +namespace SharpCATForms +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + private static void Main() + { + //SharpCAT sharpCAT = new SharpCAT(); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/SharpCATForms/Properties/AssemblyInfo.cs b/SharpCATForms/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7e1f3f3 --- /dev/null +++ b/SharpCATForms/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("SharpCATForms")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SharpCATForms")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("3483b368-338a-4be3-aeb9-460e374b2c99")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/SharpCATForms/Properties/Resources.Designer.cs b/SharpCATForms/Properties/Resources.Designer.cs new file mode 100644 index 0000000..f6f77d6 --- /dev/null +++ b/SharpCATForms/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SharpCATForms.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SharpCATForms.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/SharpCATForms/Properties/Resources.resx b/SharpCATForms/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/SharpCATForms/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SharpCATForms/Properties/Settings.Designer.cs b/SharpCATForms/Properties/Settings.Designer.cs new file mode 100644 index 0000000..c8be944 --- /dev/null +++ b/SharpCATForms/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SharpCATForms.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/SharpCATForms/Properties/Settings.settings b/SharpCATForms/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/SharpCATForms/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/SharpCATForms/SharpCATForms.csproj b/SharpCATForms/SharpCATForms.csproj new file mode 100644 index 0000000..df03c46 --- /dev/null +++ b/SharpCATForms/SharpCATForms.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {3483B368-338A-4BE3-AEB9-460E374B2C99} + WinExe + SharpCATForms + SharpCATForms + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + SharpCATForms.Program + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file