summaryrefslogtreecommitdiff
path: root/script-editor/MainForm.Designer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'script-editor/MainForm.Designer.cs')
-rw-r--r--script-editor/MainForm.Designer.cs504
1 files changed, 504 insertions, 0 deletions
diff --git a/script-editor/MainForm.Designer.cs b/script-editor/MainForm.Designer.cs
new file mode 100644
index 0000000..ee72599
--- /dev/null
+++ b/script-editor/MainForm.Designer.cs
@@ -0,0 +1,504 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Diagnostics;
+using System.Windows.Forms;
+namespace VPScriptEditor
+{
+ partial class VPScriptEditor : Form
+ {
+ [ System.Diagnostics.DebuggerNonUserCode() ]
+ protected override void Dispose( bool disposing )
+ {
+ try
+ {
+ if ( disposing && components != null )
+ {
+ components.Dispose();
+ }
+ }
+ finally
+ {
+ base.Dispose( disposing );
+ }
+ }
+
+ private System.ComponentModel.IContainer components;
+
+ [ System.Diagnostics.DebuggerStepThrough() ]
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VPScriptEditor));
+ this.lblPointerNumber = new System.Windows.Forms.Label();
+ this.txtbxRoom = new System.Windows.Forms.TextBox();
+ this.lblRoom = new System.Windows.Forms.Label();
+ this.txtbxPointerNumber = new System.Windows.Forms.TextBox();
+ this.bttnPrevious = new System.Windows.Forms.Button();
+ this.bttnNext = new System.Windows.Forms.Button();
+ this.txtbxInputPtr = new System.Windows.Forms.TextBox();
+ this.grpbxInput = new System.Windows.Forms.GroupBox();
+ this.txtbxInputHeight = new System.Windows.Forms.TextBox();
+ this.lblInputHeight = new System.Windows.Forms.Label();
+ this.txtbxInputWidth = new System.Windows.Forms.TextBox();
+ this.lblInputWidth = new System.Windows.Forms.Label();
+ this.txtbxInputY = new System.Windows.Forms.TextBox();
+ this.lblInputY = new System.Windows.Forms.Label();
+ this.txtbxInputX = new System.Windows.Forms.TextBox();
+ this.lblInputX = new System.Windows.Forms.Label();
+ this.grpbxOutput = new System.Windows.Forms.GroupBox();
+ this.bttnResize = new System.Windows.Forms.Button();
+ this.bttnReset = new System.Windows.Forms.Button();
+ this.txtbxOutputHeight = new System.Windows.Forms.TextBox();
+ this.txtbxOutputPtr = new System.Windows.Forms.TextBox();
+ this.lblOutputHeight = new System.Windows.Forms.Label();
+ this.txtbxOutputWidth = new System.Windows.Forms.TextBox();
+ this.txtbxOutputY = new System.Windows.Forms.TextBox();
+ this.lblOutputX = new System.Windows.Forms.Label();
+ this.lblOutputWidth = new System.Windows.Forms.Label();
+ this.txtbxOutputX = new System.Windows.Forms.TextBox();
+ this.lblOutputY = new System.Windows.Forms.Label();
+ this.tsmiTest = new System.Windows.Forms.ToolStripMenuItem();
+ this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.menu = new System.Windows.Forms.MenuStrip();
+ this.pnlOutput = new CustomControl.MyPanel();
+ this.pnlInput = new CustomControl.MyPanel();
+ this.grpbxInput.SuspendLayout();
+ this.grpbxOutput.SuspendLayout();
+ this.menu.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // lblPointerNumber
+ //
+ this.lblPointerNumber.AutoSize = true;
+ this.lblPointerNumber.Location = new System.Drawing.Point(6, 16);
+ this.lblPointerNumber.Name = "lblPointerNumber";
+ this.lblPointerNumber.Size = new System.Drawing.Size(46, 13);
+ this.lblPointerNumber.TabIndex = 1;
+ this.lblPointerNumber.Text = "Pointer :";
+ //
+ // txtbxRoom
+ //
+ this.txtbxRoom.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxRoom.Location = new System.Drawing.Point(371, 40);
+ this.txtbxRoom.Name = "txtbxRoom";
+ this.txtbxRoom.ReadOnly = true;
+ this.txtbxRoom.Size = new System.Drawing.Size(100, 20);
+ this.txtbxRoom.TabIndex = 7;
+ //
+ // lblRoom
+ //
+ this.lblRoom.AutoSize = true;
+ this.lblRoom.Location = new System.Drawing.Point(324, 43);
+ this.lblRoom.Name = "lblRoom";
+ this.lblRoom.Size = new System.Drawing.Size(41, 13);
+ this.lblRoom.TabIndex = 3;
+ this.lblRoom.Text = "Room :";
+ //
+ // txtbxPointerNumber
+ //
+ this.txtbxPointerNumber.Enabled = false;
+ this.txtbxPointerNumber.Location = new System.Drawing.Point(58, 13);
+ this.txtbxPointerNumber.MaxLength = 4;
+ this.txtbxPointerNumber.Name = "txtbxPointerNumber";
+ this.txtbxPointerNumber.Size = new System.Drawing.Size(37, 20);
+ this.txtbxPointerNumber.TabIndex = 0;
+ this.txtbxPointerNumber.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtbxPointerNumber_KeyPress);
+ //
+ // bttnPrevious
+ //
+ this.bttnPrevious.Enabled = false;
+ this.bttnPrevious.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.bttnPrevious.Location = new System.Drawing.Point(118, 13);
+ this.bttnPrevious.Name = "bttnPrevious";
+ this.bttnPrevious.Size = new System.Drawing.Size(30, 20);
+ this.bttnPrevious.TabIndex = 1;
+ this.bttnPrevious.Text = "←";
+ this.bttnPrevious.UseVisualStyleBackColor = true;
+ this.bttnPrevious.Click += new System.EventHandler(this.bttnPrevious_Click);
+ //
+ // bttnNext
+ //
+ this.bttnNext.Enabled = false;
+ this.bttnNext.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.bttnNext.Location = new System.Drawing.Point(157, 13);
+ this.bttnNext.Name = "bttnNext";
+ this.bttnNext.Size = new System.Drawing.Size(30, 20);
+ this.bttnNext.TabIndex = 2;
+ this.bttnNext.Text = "→";
+ this.bttnNext.UseVisualStyleBackColor = true;
+ this.bttnNext.Click += new System.EventHandler(this.bttnNext_Click);
+ //
+ // txtbxInputPtr
+ //
+ this.txtbxInputPtr.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxInputPtr.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.txtbxInputPtr.Location = new System.Drawing.Point(9, 66);
+ this.txtbxInputPtr.Multiline = true;
+ this.txtbxInputPtr.Name = "txtbxInputPtr";
+ this.txtbxInputPtr.ReadOnly = true;
+ this.txtbxInputPtr.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.txtbxInputPtr.Size = new System.Drawing.Size(593, 174);
+ this.txtbxInputPtr.TabIndex = 8;
+ //
+ // grpbxInput
+ //
+ this.grpbxInput.Controls.Add(this.txtbxInputHeight);
+ this.grpbxInput.Controls.Add(this.lblInputHeight);
+ this.grpbxInput.Controls.Add(this.txtbxInputWidth);
+ this.grpbxInput.Controls.Add(this.lblInputWidth);
+ this.grpbxInput.Controls.Add(this.txtbxInputY);
+ this.grpbxInput.Controls.Add(this.lblInputY);
+ this.grpbxInput.Controls.Add(this.txtbxInputX);
+ this.grpbxInput.Controls.Add(this.lblInputX);
+ this.grpbxInput.Controls.Add(this.lblRoom);
+ this.grpbxInput.Controls.Add(this.txtbxInputPtr);
+ this.grpbxInput.Controls.Add(this.lblPointerNumber);
+ this.grpbxInput.Controls.Add(this.bttnNext);
+ this.grpbxInput.Controls.Add(this.txtbxPointerNumber);
+ this.grpbxInput.Controls.Add(this.bttnPrevious);
+ this.grpbxInput.Controls.Add(this.txtbxRoom);
+ this.grpbxInput.Location = new System.Drawing.Point(12, 27);
+ this.grpbxInput.Name = "grpbxInput";
+ this.grpbxInput.Size = new System.Drawing.Size(608, 246);
+ this.grpbxInput.TabIndex = 1;
+ this.grpbxInput.TabStop = false;
+ this.grpbxInput.Text = "Original text";
+ //
+ // txtbxInputHeight
+ //
+ this.txtbxInputHeight.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxInputHeight.Location = new System.Drawing.Point(287, 40);
+ this.txtbxInputHeight.Name = "txtbxInputHeight";
+ this.txtbxInputHeight.ReadOnly = true;
+ this.txtbxInputHeight.Size = new System.Drawing.Size(30, 20);
+ this.txtbxInputHeight.TabIndex = 6;
+ //
+ // lblInputHeight
+ //
+ this.lblInputHeight.AutoSize = true;
+ this.lblInputHeight.Location = new System.Drawing.Point(237, 43);
+ this.lblInputHeight.Name = "lblInputHeight";
+ this.lblInputHeight.Size = new System.Drawing.Size(44, 13);
+ this.lblInputHeight.TabIndex = 15;
+ this.lblInputHeight.Text = "Height :";
+ //
+ // txtbxInputWidth
+ //
+ this.txtbxInputWidth.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxInputWidth.Location = new System.Drawing.Point(201, 40);
+ this.txtbxInputWidth.Name = "txtbxInputWidth";
+ this.txtbxInputWidth.ReadOnly = true;
+ this.txtbxInputWidth.Size = new System.Drawing.Size(30, 20);
+ this.txtbxInputWidth.TabIndex = 5;
+ //
+ // lblInputWidth
+ //
+ this.lblInputWidth.AutoSize = true;
+ this.lblInputWidth.Location = new System.Drawing.Point(154, 43);
+ this.lblInputWidth.Name = "lblInputWidth";
+ this.lblInputWidth.Size = new System.Drawing.Size(41, 13);
+ this.lblInputWidth.TabIndex = 13;
+ this.lblInputWidth.Text = "Width :";
+ //
+ // txtbxInputY
+ //
+ this.txtbxInputY.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxInputY.Location = new System.Drawing.Point(118, 40);
+ this.txtbxInputY.Name = "txtbxInputY";
+ this.txtbxInputY.ReadOnly = true;
+ this.txtbxInputY.Size = new System.Drawing.Size(30, 20);
+ this.txtbxInputY.TabIndex = 4;
+ //
+ // lblInputY
+ //
+ this.lblInputY.AutoSize = true;
+ this.lblInputY.Location = new System.Drawing.Point(94, 43);
+ this.lblInputY.Name = "lblInputY";
+ this.lblInputY.Size = new System.Drawing.Size(20, 13);
+ this.lblInputY.TabIndex = 11;
+ this.lblInputY.Text = "Y :";
+ //
+ // txtbxInputX
+ //
+ this.txtbxInputX.BackColor = System.Drawing.SystemColors.Window;
+ this.txtbxInputX.Location = new System.Drawing.Point(58, 40);
+ this.txtbxInputX.Name = "txtbxInputX";
+ this.txtbxInputX.ReadOnly = true;
+ this.txtbxInputX.Size = new System.Drawing.Size(30, 20);
+ this.txtbxInputX.TabIndex = 3;
+ //
+ // lblInputX
+ //
+ this.lblInputX.AutoSize = true;
+ this.lblInputX.Location = new System.Drawing.Point(34, 43);
+ this.lblInputX.Name = "lblInputX";
+ this.lblInputX.Size = new System.Drawing.Size(20, 13);
+ this.lblInputX.TabIndex = 9;
+ this.lblInputX.Text = "X :";
+ //
+ // grpbxOutput
+ //
+ this.grpbxOutput.Controls.Add(this.bttnResize);
+ this.grpbxOutput.Controls.Add(this.bttnReset);
+ this.grpbxOutput.Controls.Add(this.txtbxOutputHeight);
+ this.grpbxOutput.Controls.Add(this.txtbxOutputPtr);
+ this.grpbxOutput.Controls.Add(this.lblOutputHeight);
+ this.grpbxOutput.Controls.Add(this.txtbxOutputWidth);
+ this.grpbxOutput.Controls.Add(this.txtbxOutputY);
+ this.grpbxOutput.Controls.Add(this.lblOutputX);
+ this.grpbxOutput.Controls.Add(this.lblOutputWidth);
+ this.grpbxOutput.Controls.Add(this.txtbxOutputX);
+ this.grpbxOutput.Controls.Add(this.lblOutputY);
+ this.grpbxOutput.Location = new System.Drawing.Point(12, 279);
+ this.grpbxOutput.Name = "grpbxOutput";
+ this.grpbxOutput.Size = new System.Drawing.Size(608, 246);
+ this.grpbxOutput.TabIndex = 0;
+ this.grpbxOutput.TabStop = false;
+ this.grpbxOutput.Text = "Translated text";
+ //
+ // bttnResize
+ //
+ this.bttnResize.Enabled = false;
+ this.bttnResize.Location = new System.Drawing.Point(397, 13);
+ this.bttnResize.Name = "bttnResize";
+ this.bttnResize.Size = new System.Drawing.Size(96, 20);
+ this.bttnResize.TabIndex = 5;
+ this.bttnResize.Text = "Resize window";
+ this.bttnResize.UseVisualStyleBackColor = true;
+ this.bttnResize.Click += new System.EventHandler(this.bttnResize_Click);
+ //
+ // bttnReset
+ //
+ this.bttnReset.Enabled = false;
+ this.bttnReset.Location = new System.Drawing.Point(304, 13);
+ this.bttnReset.Name = "bttnReset";
+ this.bttnReset.Size = new System.Drawing.Size(87, 20);
+ this.bttnReset.TabIndex = 4;
+ this.bttnReset.Text = "Reset pointer";
+ this.bttnReset.UseVisualStyleBackColor = true;
+ this.bttnReset.Click += new System.EventHandler(this.bttnReset_Click);
+ //
+ // txtbxOutputHeight
+ //
+ this.txtbxOutputHeight.Location = new System.Drawing.Point(268, 13);
+ this.txtbxOutputHeight.Name = "txtbxOutputHeight";
+ this.txtbxOutputHeight.Size = new System.Drawing.Size(30, 20);
+ this.txtbxOutputHeight.TabIndex = 3;
+ this.txtbxOutputHeight.TextChanged += new System.EventHandler(this.txtbxOutput_TextChanged);
+ //
+ // txtbxOutputPtr
+ //
+ this.txtbxOutputPtr.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.txtbxOutputPtr.Location = new System.Drawing.Point(9, 39);
+ this.txtbxOutputPtr.MaxLength = 5000;
+ this.txtbxOutputPtr.Multiline = true;
+ this.txtbxOutputPtr.Name = "txtbxOutputPtr";
+ this.txtbxOutputPtr.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.txtbxOutputPtr.Size = new System.Drawing.Size(593, 201);
+ this.txtbxOutputPtr.TabIndex = 8;
+ this.txtbxOutputPtr.TextChanged += new System.EventHandler(this.txtbxOutput_TextChanged);
+ this.txtbxOutputPtr.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtbxOutputPtr_KeyPress);
+ //
+ // lblOutputHeight
+ //
+ this.lblOutputHeight.AutoSize = true;
+ this.lblOutputHeight.Location = new System.Drawing.Point(218, 16);
+ this.lblOutputHeight.Name = "lblOutputHeight";
+ this.lblOutputHeight.Size = new System.Drawing.Size(44, 13);
+ this.lblOutputHeight.TabIndex = 23;
+ this.lblOutputHeight.Text = "Height :";
+ //
+ // txtbxOutputWidth
+ //
+ this.txtbxOutputWidth.Location = new System.Drawing.Point(182, 13);
+ this.txtbxOutputWidth.Name = "txtbxOutputWidth";
+ this.txtbxOutputWidth.Size = new System.Drawing.Size(30, 20);
+ this.txtbxOutputWidth.TabIndex = 2;
+ this.txtbxOutputWidth.TextChanged += new System.EventHandler(this.txtbxOutput_TextChanged);
+ //
+ // txtbxOutputY
+ //
+ this.txtbxOutputY.Location = new System.Drawing.Point(99, 13);
+ this.txtbxOutputY.Name = "txtbxOutputY";
+ this.txtbxOutputY.Size = new System.Drawing.Size(30, 20);
+ this.txtbxOutputY.TabIndex = 1;
+ this.txtbxOutputY.TextChanged += new System.EventHandler(this.txtbxOutput_TextChanged);
+ //
+ // lblOutputX
+ //
+ this.lblOutputX.AutoSize = true;
+ this.lblOutputX.Location = new System.Drawing.Point(11, 16);
+ this.lblOutputX.Name = "lblOutputX";
+ this.lblOutputX.Size = new System.Drawing.Size(20, 13);
+ this.lblOutputX.TabIndex = 17;
+ this.lblOutputX.Text = "X :";
+ //
+ // lblOutputWidth
+ //
+ this.lblOutputWidth.AutoSize = true;
+ this.lblOutputWidth.Location = new System.Drawing.Point(135, 16);
+ this.lblOutputWidth.Name = "lblOutputWidth";
+ this.lblOutputWidth.Size = new System.Drawing.Size(41, 13);
+ this.lblOutputWidth.TabIndex = 21;
+ this.lblOutputWidth.Text = "Width :";
+ //
+ // txtbxOutputX
+ //
+ this.txtbxOutputX.Location = new System.Drawing.Point(37, 13);
+ this.txtbxOutputX.Name = "txtbxOutputX";
+ this.txtbxOutputX.Size = new System.Drawing.Size(30, 20);
+ this.txtbxOutputX.TabIndex = 0;
+ this.txtbxOutputX.TextChanged += new System.EventHandler(this.txtbxOutput_TextChanged);
+ //
+ // lblOutputY
+ //
+ this.lblOutputY.AutoSize = true;
+ this.lblOutputY.Location = new System.Drawing.Point(73, 16);
+ this.lblOutputY.Name = "lblOutputY";
+ this.lblOutputY.Size = new System.Drawing.Size(20, 13);
+ this.lblOutputY.TabIndex = 19;
+ this.lblOutputY.Text = "Y :";
+ //
+ // tsmiTest
+ //
+ this.tsmiTest.AutoToolTip = true;
+ this.tsmiTest.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.tsmiTest.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.OpenMenuItem,
+ this.SaveMenuItem,
+ this.SaveAsMenuItem,
+ this.ExitMenuItem});
+ this.tsmiTest.Name = "tsmiTest";
+ this.tsmiTest.ShortcutKeyDisplayString = "";
+ this.tsmiTest.Size = new System.Drawing.Size(37, 20);
+ this.tsmiTest.Text = "&File";
+ //
+ // OpenMenuItem
+ //
+ this.OpenMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.OpenMenuItem.Name = "OpenMenuItem";
+ this.OpenMenuItem.ShortcutKeyDisplayString = "";
+ this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
+ this.OpenMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.OpenMenuItem.Text = "&Open";
+ this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
+ //
+ // SaveMenuItem
+ //
+ this.SaveMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.SaveMenuItem.Enabled = false;
+ this.SaveMenuItem.Name = "SaveMenuItem";
+ this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
+ this.SaveMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.SaveMenuItem.Text = "&Save";
+ this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
+ //
+ // SaveAsMenuItem
+ //
+ this.SaveAsMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.SaveAsMenuItem.Enabled = false;
+ this.SaveAsMenuItem.Name = "SaveAsMenuItem";
+ this.SaveAsMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.SaveAsMenuItem.Text = "S&ave as";
+ this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
+ //
+ // ExitMenuItem
+ //
+ this.ExitMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.ExitMenuItem.Name = "ExitMenuItem";
+ this.ExitMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.ExitMenuItem.Text = "E&xit";
+ this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
+ //
+ // menu
+ //
+ this.menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.tsmiTest});
+ this.menu.Location = new System.Drawing.Point(0, 0);
+ this.menu.Name = "menu";
+ this.menu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
+ this.menu.Size = new System.Drawing.Size(961, 24);
+ this.menu.TabIndex = 5;
+ this.menu.Text = "MenuStrip1";
+ //
+ // pnlOutput
+ //
+ this.pnlOutput.Location = new System.Drawing.Point(632, 284);
+ this.pnlOutput.Name = "pnlOutput";
+ this.pnlOutput.Size = new System.Drawing.Size(320, 240);
+ this.pnlOutput.TabIndex = 16;
+ this.pnlOutput.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlOutput_Paint);
+ //
+ // pnlInput
+ //
+ this.pnlInput.Location = new System.Drawing.Point(632, 33);
+ this.pnlInput.Name = "pnlInput";
+ this.pnlInput.Size = new System.Drawing.Size(320, 240);
+ this.pnlInput.TabIndex = 15;
+ this.pnlInput.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlInput_Paint);
+ //
+ // VPScriptEditor
+ //
+ this.ClientSize = new System.Drawing.Size(961, 536);
+ this.Controls.Add(this.pnlOutput);
+ this.Controls.Add(this.pnlInput);
+ this.Controls.Add(this.grpbxOutput);
+ this.Controls.Add(this.grpbxInput);
+ this.Controls.Add(this.menu);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MainMenuStrip = this.menu;
+ this.Name = "VPScriptEditor";
+ this.Text = "VPScriptEditor";
+ this.grpbxInput.ResumeLayout(false);
+ this.grpbxInput.PerformLayout();
+ this.grpbxOutput.ResumeLayout(false);
+ this.grpbxOutput.PerformLayout();
+ this.menu.ResumeLayout(false);
+ this.menu.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+ private Label lblPointerNumber;
+ private TextBox txtbxRoom;
+ private Label lblRoom;
+ private TextBox txtbxPointerNumber;
+ private Button bttnPrevious;
+ private Button bttnNext;
+ private TextBox txtbxInputPtr;
+ private GroupBox grpbxInput;
+ private GroupBox grpbxOutput;
+ private TextBox txtbxOutputPtr;
+ private Label lblInputX;
+ private TextBox txtbxInputX;
+ private TextBox txtbxInputY;
+ private Label lblInputY;
+ private TextBox txtbxInputHeight;
+ private Label lblInputHeight;
+ private TextBox txtbxInputWidth;
+ private Label lblInputWidth;
+ private TextBox txtbxOutputHeight;
+ private Label lblOutputHeight;
+ private TextBox txtbxOutputWidth;
+ private TextBox txtbxOutputY;
+ private Label lblOutputX;
+ private Label lblOutputWidth;
+ private TextBox txtbxOutputX;
+ private Label lblOutputY;
+ private Button bttnReset;
+ private Button bttnResize;
+ private CustomControl.MyPanel pnlInput;
+ private CustomControl.MyPanel pnlOutput;
+ private ToolStripMenuItem tsmiTest;
+ private ToolStripMenuItem OpenMenuItem;
+ private ToolStripMenuItem SaveMenuItem;
+ private ToolStripMenuItem ExitMenuItem;
+ private MenuStrip menu;
+ private ToolStripMenuItem SaveAsMenuItem;
+
+ }
+}