From e0207b748f58b357f401bebf390c0c6d0072309c Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 15 Nov 2014 15:02:52 +0000 Subject: [PATCH] Tastudio - remove some user controls that do nothing that I've decided won't be used --- .../BizHawk.Client.EmuHawk.csproj | 27 ---- .../tools/TAStudio/LuaBox.Designer.cs | 89 ------------ .../tools/TAStudio/LuaBox.cs | 19 --- .../tools/TAStudio/LuaBox.resx | 120 ---------------- .../TAStudio/MarkerControlsBox.Designer.cs | 94 ------------- .../tools/TAStudio/MarkerControlsBox.cs | 19 --- .../tools/TAStudio/MarkerControlsBox.resx | 120 ---------------- .../tools/TAStudio/RecorderBox.Designer.cs | 131 ------------------ .../tools/TAStudio/RecorderBox.cs | 19 --- .../tools/TAStudio/RecorderBox.resx | 120 ---------------- 10 files changed, 758 deletions(-) delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.Designer.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.resx delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.Designer.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.resx delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.Designer.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.cs delete mode 100644 BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.resx diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index 80f46a9ec4..0272469fbc 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -878,12 +878,6 @@ Component - - UserControl - - - LuaBox.cs - TAStudio.cs Form @@ -898,24 +892,12 @@ MarkerControl.cs - - UserControl - - - MarkerControlsBox.cs - UserControl PlaybackBox.cs - - UserControl - - - RecorderBox.cs - Form @@ -1321,21 +1303,12 @@ HistoryBox.cs - - LuaBox.cs - MarkerControl.cs - - MarkerControlsBox.cs - PlaybackBox.cs - - RecorderBox.cs - TAStudio.cs diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.Designer.cs deleted file mode 100644 index 1ae640836c..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.Designer.cs +++ /dev/null @@ -1,89 +0,0 @@ -namespace BizHawk.Client.EmuHawk -{ - partial class LuaBox - { - /// - /// 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.LuaGroupBox = new System.Windows.Forms.GroupBox(); - this.RunLuaFunctionButton = new System.Windows.Forms.Button(); - this.LuaAutoFunctionCheckbox = new System.Windows.Forms.CheckBox(); - this.LuaGroupBox.SuspendLayout(); - this.SuspendLayout(); - // - // LuaGroupBox - // - this.LuaGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.LuaGroupBox.Controls.Add(this.LuaAutoFunctionCheckbox); - this.LuaGroupBox.Controls.Add(this.RunLuaFunctionButton); - this.LuaGroupBox.Location = new System.Drawing.Point(3, 3); - this.LuaGroupBox.Name = "LuaGroupBox"; - this.LuaGroupBox.Size = new System.Drawing.Size(198, 52); - this.LuaGroupBox.TabIndex = 0; - this.LuaGroupBox.TabStop = false; - this.LuaGroupBox.Text = "Lua"; - // - // RunLuaFunctionButton - // - this.RunLuaFunctionButton.Location = new System.Drawing.Point(6, 19); - this.RunLuaFunctionButton.Name = "RunLuaFunctionButton"; - this.RunLuaFunctionButton.Size = new System.Drawing.Size(86, 23); - this.RunLuaFunctionButton.TabIndex = 0; - this.RunLuaFunctionButton.Text = "Run function"; - this.RunLuaFunctionButton.UseVisualStyleBackColor = true; - // - // LuaAutoFunctionCheckbox - // - this.LuaAutoFunctionCheckbox.AutoSize = true; - this.LuaAutoFunctionCheckbox.Location = new System.Drawing.Point(98, 23); - this.LuaAutoFunctionCheckbox.Name = "LuaAutoFunctionCheckbox"; - this.LuaAutoFunctionCheckbox.Size = new System.Drawing.Size(89, 17); - this.LuaAutoFunctionCheckbox.TabIndex = 1; - this.LuaAutoFunctionCheckbox.Text = "Auto function"; - this.LuaAutoFunctionCheckbox.UseVisualStyleBackColor = true; - // - // LuaBox - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.LuaGroupBox); - this.Name = "LuaBox"; - this.Size = new System.Drawing.Size(204, 58); - this.LuaGroupBox.ResumeLayout(false); - this.LuaGroupBox.PerformLayout(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.GroupBox LuaGroupBox; - private System.Windows.Forms.Button RunLuaFunctionButton; - private System.Windows.Forms.CheckBox LuaAutoFunctionCheckbox; - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.cs deleted file mode 100644 index 22e611e8d3..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace BizHawk.Client.EmuHawk -{ - public partial class LuaBox : UserControl - { - public LuaBox() - { - InitializeComponent(); - } - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.resx b/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.resx deleted file mode 100644 index 29dcb1b3a3..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/LuaBox.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.Designer.cs deleted file mode 100644 index 1cfd2bcf9f..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.Designer.cs +++ /dev/null @@ -1,94 +0,0 @@ -namespace BizHawk.Client.EmuHawk.tools.TAStudio -{ - partial class MarkerControlsBox - { - /// - /// 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.SelectionPreviousMarkerButton = new System.Windows.Forms.Button(); - this.SelectionSimilarMarkerButton = new System.Windows.Forms.Button(); - this.SelectionMoreButton = new System.Windows.Forms.Button(); - this.SelectionNextMarker = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // SelectionPreviousMarkerButton - // - this.SelectionPreviousMarkerButton.Location = new System.Drawing.Point(13, 3); - this.SelectionPreviousMarkerButton.Name = "SelectionPreviousMarkerButton"; - this.SelectionPreviousMarkerButton.Size = new System.Drawing.Size(38, 23); - this.SelectionPreviousMarkerButton.TabIndex = 0; - this.SelectionPreviousMarkerButton.Text = "<<"; - this.SelectionPreviousMarkerButton.UseVisualStyleBackColor = true; - // - // SelectionSimilarMarkerButton - // - this.SelectionSimilarMarkerButton.Location = new System.Drawing.Point(51, 3); - this.SelectionSimilarMarkerButton.Name = "SelectionSimilarMarkerButton"; - this.SelectionSimilarMarkerButton.Size = new System.Drawing.Size(50, 23); - this.SelectionSimilarMarkerButton.TabIndex = 1; - this.SelectionSimilarMarkerButton.Text = "Similar"; - this.SelectionSimilarMarkerButton.UseVisualStyleBackColor = true; - // - // SelectionMoreButton - // - this.SelectionMoreButton.Location = new System.Drawing.Point(101, 3); - this.SelectionMoreButton.Name = "SelectionMoreButton"; - this.SelectionMoreButton.Size = new System.Drawing.Size(50, 23); - this.SelectionMoreButton.TabIndex = 2; - this.SelectionMoreButton.Text = "More"; - this.SelectionMoreButton.UseVisualStyleBackColor = true; - // - // SelectionNextMarker - // - this.SelectionNextMarker.Location = new System.Drawing.Point(151, 3); - this.SelectionNextMarker.Name = "SelectionNextMarker"; - this.SelectionNextMarker.Size = new System.Drawing.Size(38, 23); - this.SelectionNextMarker.TabIndex = 3; - this.SelectionNextMarker.Text = ">>"; - this.SelectionNextMarker.UseVisualStyleBackColor = true; - // - // MarkerControlsBox - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.SelectionNextMarker); - this.Controls.Add(this.SelectionMoreButton); - this.Controls.Add(this.SelectionSimilarMarkerButton); - this.Controls.Add(this.SelectionPreviousMarkerButton); - this.Name = "MarkerControlsBox"; - this.Size = new System.Drawing.Size(204, 30); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Button SelectionPreviousMarkerButton; - private System.Windows.Forms.Button SelectionSimilarMarkerButton; - private System.Windows.Forms.Button SelectionMoreButton; - private System.Windows.Forms.Button SelectionNextMarker; - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.cs deleted file mode 100644 index 54714f33b4..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace BizHawk.Client.EmuHawk.tools.TAStudio -{ - public partial class MarkerControlsBox : UserControl - { - public MarkerControlsBox() - { - InitializeComponent(); - } - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.resx b/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.resx deleted file mode 100644 index 29dcb1b3a3..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/MarkerControlsBox.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.Designer.cs deleted file mode 100644 index 1c202cc896..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.Designer.cs +++ /dev/null @@ -1,131 +0,0 @@ -namespace BizHawk.Client.EmuHawk -{ - partial class RecorderBox - { - /// - /// 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.RecorderGroupBox = new System.Windows.Forms.GroupBox(); - this.Player1Radio = new System.Windows.Forms.RadioButton(); - this.AllRadio = new System.Windows.Forms.RadioButton(); - this.RecordingCheckbox = new System.Windows.Forms.CheckBox(); - this.SuperimposeCheckbox = new System.Windows.Forms.CheckBox(); - this.UsePatterncheckbox = new System.Windows.Forms.CheckBox(); - this.RecorderGroupBox.SuspendLayout(); - this.SuspendLayout(); - // - // RecorderGroupBox - // - this.RecorderGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.RecorderGroupBox.Controls.Add(this.UsePatterncheckbox); - this.RecorderGroupBox.Controls.Add(this.SuperimposeCheckbox); - this.RecorderGroupBox.Controls.Add(this.Player1Radio); - this.RecorderGroupBox.Controls.Add(this.AllRadio); - this.RecorderGroupBox.Controls.Add(this.RecordingCheckbox); - this.RecorderGroupBox.Location = new System.Drawing.Point(0, 0); - this.RecorderGroupBox.Name = "RecorderGroupBox"; - this.RecorderGroupBox.Size = new System.Drawing.Size(201, 96); - this.RecorderGroupBox.TabIndex = 0; - this.RecorderGroupBox.TabStop = false; - this.RecorderGroupBox.Text = "Recorder"; - // - // Player1Radio - // - this.Player1Radio.AutoSize = true; - this.Player1Radio.Location = new System.Drawing.Point(6, 42); - this.Player1Radio.Name = "Player1Radio"; - this.Player1Radio.Size = new System.Drawing.Size(38, 17); - this.Player1Radio.TabIndex = 2; - this.Player1Radio.TabStop = true; - this.Player1Radio.Text = "1P"; - this.Player1Radio.UseVisualStyleBackColor = true; - // - // AllRadio - // - this.AllRadio.AutoSize = true; - this.AllRadio.Location = new System.Drawing.Point(156, 19); - this.AllRadio.Name = "AllRadio"; - this.AllRadio.Size = new System.Drawing.Size(36, 17); - this.AllRadio.TabIndex = 1; - this.AllRadio.TabStop = true; - this.AllRadio.Text = "All"; - this.AllRadio.UseVisualStyleBackColor = true; - // - // RecordingCheckbox - // - this.RecordingCheckbox.AutoSize = true; - this.RecordingCheckbox.Location = new System.Drawing.Point(6, 19); - this.RecordingCheckbox.Name = "RecordingCheckbox"; - this.RecordingCheckbox.Size = new System.Drawing.Size(75, 17); - this.RecordingCheckbox.TabIndex = 0; - this.RecordingCheckbox.Text = "Recording"; - this.RecordingCheckbox.UseVisualStyleBackColor = true; - // - // SuperimposeCheckbox - // - this.SuperimposeCheckbox.AutoSize = true; - this.SuperimposeCheckbox.Location = new System.Drawing.Point(6, 65); - this.SuperimposeCheckbox.Name = "SuperimposeCheckbox"; - this.SuperimposeCheckbox.Size = new System.Drawing.Size(87, 17); - this.SuperimposeCheckbox.TabIndex = 3; - this.SuperimposeCheckbox.Text = "Superimpose"; - this.SuperimposeCheckbox.UseVisualStyleBackColor = true; - // - // UsePatterncheckbox - // - this.UsePatterncheckbox.AutoSize = true; - this.UsePatterncheckbox.Location = new System.Drawing.Point(99, 65); - this.UsePatterncheckbox.Name = "UsePatterncheckbox"; - this.UsePatterncheckbox.Size = new System.Drawing.Size(81, 17); - this.UsePatterncheckbox.TabIndex = 4; - this.UsePatterncheckbox.Text = "Use pattern"; - this.UsePatterncheckbox.UseVisualStyleBackColor = true; - // - // RecorderBox - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.RecorderGroupBox); - this.Name = "RecorderBox"; - this.Size = new System.Drawing.Size(204, 99); - this.RecorderGroupBox.ResumeLayout(false); - this.RecorderGroupBox.PerformLayout(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.GroupBox RecorderGroupBox; - private System.Windows.Forms.RadioButton AllRadio; - private System.Windows.Forms.CheckBox RecordingCheckbox; - private System.Windows.Forms.RadioButton Player1Radio; - private System.Windows.Forms.CheckBox UsePatterncheckbox; - private System.Windows.Forms.CheckBox SuperimposeCheckbox; - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.cs deleted file mode 100644 index 0cb714b918..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace BizHawk.Client.EmuHawk -{ - public partial class RecorderBox : UserControl - { - public RecorderBox() - { - InitializeComponent(); - } - } -} diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.resx b/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.resx deleted file mode 100644 index 29dcb1b3a3..0000000000 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/RecorderBox.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file