From 83035902f96a04f023fded24b5228ad20d38e083 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Fri, 17 Apr 2015 17:29:06 -0400 Subject: [PATCH] Reorganized paths --- .../InstallationScriptEditor.Designer.cs | 57 --------- .../InstallationScriptEditor.cs | 47 ------- .../InstallationScriptEditor.resx | 120 ------------------ .../Properties/AssemblyInfo.cs | 36 ------ ...Software.UserInterface.WindowsForms.csproj | 54 -------- 5 files changed, 314 deletions(-) delete mode 100644 CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.Designer.cs delete mode 100644 CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.cs delete mode 100644 CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.resx delete mode 100644 CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Properties/AssemblyInfo.cs delete mode 100644 CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms.csproj diff --git a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.Designer.cs b/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.Designer.cs deleted file mode 100644 index 8ac30e25..00000000 --- a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.Designer.cs +++ /dev/null @@ -1,57 +0,0 @@ -namespace UniversalEditor.Editors.RebelSoftware.InstallationScript -{ - partial class InstallationScriptEditor - { - /// - /// 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() - { - this.tvExplorer = new System.Windows.Forms.TreeView(); - this.SuspendLayout(); - // - // tvExplorer - // - this.tvExplorer.Dock = System.Windows.Forms.DockStyle.Fill; - this.tvExplorer.Location = new System.Drawing.Point(0, 0); - this.tvExplorer.Name = "tvExplorer"; - this.tvExplorer.Size = new System.Drawing.Size(544, 400); - this.tvExplorer.TabIndex = 0; - // - // InstallationScriptEditor - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.tvExplorer); - this.Name = "InstallationScriptEditor"; - this.Size = new System.Drawing.Size(544, 400); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.TreeView tvExplorer; - } -} diff --git a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.cs b/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.cs deleted file mode 100644 index 1f1ab7e3..00000000 --- a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Text; -using System.Windows.Forms; - -using UniversalEditor.UserInterface.WindowsForms; - -using UniversalEditor.Plugins.RebelSoftware.ObjectModels.InstallationScript; -using UniversalEditor.ObjectModels.RebelSoftware.InstallationScript.Dialogs; - -namespace UniversalEditor.Editors.RebelSoftware.InstallationScript -{ - public partial class InstallationScriptEditor : Editor - { - public InstallationScriptEditor() - { - InitializeComponent(); - } - - protected override void OnObjectModelChanged(EventArgs e) - { - base.OnObjectModelChanged(e); - - tvExplorer.Nodes.Clear(); - - InstallationScriptObjectModel script = (ObjectModel as InstallationScriptObjectModel); - if (script == null) return; - - TreeNode nodeDialogs = new TreeNode("Dialogs"); - - foreach (Dialog dialog in script.Dialogs) - { - TreeNode tn = new TreeNode(); - if (dialog is WelcomeDialog) - { - tn.Text = "Welcome"; - } - nodeDialogs.Nodes.Add(tn); - } - - tvExplorer.Nodes.Add(nodeDialogs); - - } - } -} diff --git a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.resx b/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.resx deleted file mode 100644 index 7080a7d1..00000000 --- a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Editors/RebelSoftware/InstallationScript/InstallationScriptEditor.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Properties/AssemblyInfo.cs b/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Properties/AssemblyInfo.cs deleted file mode 100644 index ac78a5b0..00000000 --- a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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.RebelSoftware.UserInterface.WindowsForms")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("City of Orlando")] -[assembly: AssemblyProduct("UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms")] -[assembly: AssemblyCopyright("Copyright © City of Orlando 2015")] -[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("a8f10fb1-daf0-42ba-be16-65243f8159c5")] - -// 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/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms.csproj b/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms.csproj deleted file mode 100644 index 7e31ce85..00000000 --- a/CSharp/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms/UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms.csproj +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Debug - AnyCPU - {D804B16F-289B-4846-AE4A-6070F84389F6} - Library - Properties - UniversalEditor - UniversalEditor.Plugins.RebelSoftware.UserInterface.WindowsForms - v3.5 - 512 - - - - true - full - false - ..\..\..\Output\Debug\Plugins\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Output\Release\Plugins\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - \ No newline at end of file