diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.Designer.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.Designer.cs new file mode 100644 index 00000000..e120f1ec --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.Designer.cs @@ -0,0 +1,37 @@ +namespace UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.Editors +{ + partial class FixtureEditor + { + /// + /// 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 Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + } + + #endregion + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.cs new file mode 100644 index 00000000..b92f9ce8 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/FixtureEditor.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.Editors +{ + public partial class FixtureEditor : UserControl + { + public FixtureEditor() + { + InitializeComponent(); + } + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.Designer.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.Designer.cs new file mode 100644 index 00000000..89305423 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.Designer.cs @@ -0,0 +1,37 @@ +namespace UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.Editors +{ + partial class LightingScriptEditor + { + /// + /// 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 Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + } + + #endregion + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.cs new file mode 100644 index 00000000..445baf22 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Editors/LightingScriptEditor.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.Editors +{ + public partial class LightingScriptEditor : UserControl + { + public LightingScriptEditor() + { + InitializeComponent(); + } + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Properties/AssemblyInfo.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..5bf0e085 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +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("UniversalEditor.Plugins.Auraluminous.UserInterface.WinForms")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("City of Orlando")] +[assembly: AssemblyProduct("UniversalEditor.Plugins.Auraluminous.UserInterface.WinForms")] +[assembly: AssemblyCopyright("Copyright © City of Orlando 2014")] +[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("9b99390d-0e59-4262-b41a-98356efa6af5")] + +// 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")] diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.csproj b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.csproj new file mode 100644 index 00000000..e0009ceb --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms/UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms.csproj @@ -0,0 +1,112 @@ + + + + + Debug + AnyCPU + {15E460DD-7256-4645-ADFC-254FDE1B377A} + Library + Properties + UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms + UniversalEditor.Plugins.Auraluminous.UserInterface.WindowsForms + v3.5 + 512 + + + + true + full + false + ..\..\..\..\Output\Debug\Plugins\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\..\..\Output\Release\Plugins\ + TRACE + prompt + 4 + + + + + + + + + + UserControl + + + FixtureEditor.cs + + + UserControl + + + LightingScriptEditor.cs + + + + + + {88676fe6-d6c0-4480-bea0-a649d14cb1bd} + Auraluminous.Engine + + + {ef886e1a-d553-43da-857c-29da0d6e0dae} + UniversalEditor.Plugins.Auraluminous + + + {617d9eb5-ca93-45d6-aa6b-5a012b7698ac} + AwesomeControls + + + {0936544e-e909-4e70-870c-2f60acba480e} + Enttec.OpenDMX + + + {e735d457-50d8-4958-b68c-79617595b023} + FTD2XX + + + {ddc1ce36-60e0-4b09-a288-cb14ace252dd} + MonoMidi + + + {e0897b7b-617a-4709-a4c6-fc0f6b441b2a} + Surodoine + + + {3f664673-7e22-4486-9ad0-fc81861d0b78} + UniversalEditor.Compression + + + {2d4737e6-6d95-408a-90db-8dff38147e85} + UniversalEditor.Core + + + {8622ebc4-8e20-476e-b284-33d472081f5c} + UniversalEditor.UserInterface + + + {30467e5c-05bc-4856-aadc-13906ef4cadd} + UniversalEditor.Essential + + + {bcbb72bd-0ecb-4ff2-8d91-e466361fb6f9} + UniversalEditor.UserInterface.WindowsForms + + + + + \ No newline at end of file