1 namespace GKUI.Forms
2 {
3 	partial class ScriptEditWin
4 	{
5 		private System.Windows.Forms.ToolStrip ToolBar1;
6 		private System.Windows.Forms.ToolStripButton tbLoadScript;
7 		private System.Windows.Forms.ToolStripSeparator ToolButton2;
8 		private System.Windows.Forms.ToolStripButton tbRun;
9 		private System.Windows.Forms.TextBox txtDebugOutput;
10 		private System.Windows.Forms.TextBox txtScriptText;
11 		private System.Windows.Forms.ToolStripButton tbSaveScript;
12 		private System.Windows.Forms.ToolStripButton tbNewScript;
13 		private System.Windows.Forms.SplitContainer splitContainer1;
14 
InitializeComponent()15 		private void InitializeComponent()
16 		{
17 		    this.ToolBar1 = new System.Windows.Forms.ToolStrip();
18 		    this.tbNewScript = new System.Windows.Forms.ToolStripButton();
19 		    this.tbLoadScript = new System.Windows.Forms.ToolStripButton();
20 		    this.tbSaveScript = new System.Windows.Forms.ToolStripButton();
21 		    this.ToolButton2 = new System.Windows.Forms.ToolStripSeparator();
22 		    this.tbRun = new System.Windows.Forms.ToolStripButton();
23 		    this.splitContainer1 = new System.Windows.Forms.SplitContainer();
24 		    this.txtScriptText = new System.Windows.Forms.TextBox();
25 		    this.txtDebugOutput = new System.Windows.Forms.TextBox();
26 		    this.ToolBar1.SuspendLayout();
27 		    this.splitContainer1.Panel1.SuspendLayout();
28 		    this.splitContainer1.Panel2.SuspendLayout();
29 		    this.splitContainer1.SuspendLayout();
30 		    this.SuspendLayout();
31 		    //
32 		    // ToolBar1
33 		    //
34 		    this.ToolBar1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
35 		    this.ToolBar1.ImageScalingSize = new System.Drawing.Size(20, 20);
36 		    this.ToolBar1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
37 		    		    		    this.tbNewScript,
38 		    		    		    this.tbLoadScript,
39 		    		    		    this.tbSaveScript,
40 		    		    		    this.ToolButton2,
41 		    		    		    this.tbRun});
42 		    this.ToolBar1.Location = new System.Drawing.Point(0, 0);
43 		    this.ToolBar1.Name = "ToolBar1";
44 		    this.ToolBar1.Size = new System.Drawing.Size(712, 25);
45 		    this.ToolBar1.TabIndex = 0;
46 		    //
47 		    // tbNewScript
48 		    //
49 		    this.tbNewScript.Name = "tbNewScript";
50 		    this.tbNewScript.Size = new System.Drawing.Size(23, 22);
51 		    this.tbNewScript.Click += new System.EventHandler(this.tbNewScript_Click);
52 		    //
53 		    // tbLoadScript
54 		    //
55 		    this.tbLoadScript.Name = "tbLoadScript";
56 		    this.tbLoadScript.Size = new System.Drawing.Size(23, 22);
57 		    this.tbLoadScript.Click += new System.EventHandler(this.tbLoadScript_Click);
58 		    //
59 		    // tbSaveScript
60 		    //
61 		    this.tbSaveScript.Name = "tbSaveScript";
62 		    this.tbSaveScript.Size = new System.Drawing.Size(23, 22);
63 		    this.tbSaveScript.Click += new System.EventHandler(this.tbSaveScript_Click);
64 		    //
65 		    // ToolButton2
66 		    //
67 		    this.ToolButton2.Name = "ToolButton2";
68 		    this.ToolButton2.Size = new System.Drawing.Size(6, 25);
69 		    //
70 		    // tbRun
71 		    //
72 		    this.tbRun.Name = "tbRun";
73 		    this.tbRun.Size = new System.Drawing.Size(23, 22);
74 		    this.tbRun.Click += new System.EventHandler(this.tbRun_Click);
75 		    //
76 		    // splitContainer1
77 		    //
78 		    this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
79 		    this.splitContainer1.Location = new System.Drawing.Point(0, 25);
80 		    this.splitContainer1.Name = "splitContainer1";
81 		    this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
82 		    //
83 		    // splitContainer1.Panel1
84 		    //
85 		    this.splitContainer1.Panel1.Controls.Add(this.txtScriptText);
86 		    //
87 		    // splitContainer1.Panel2
88 		    //
89 		    this.splitContainer1.Panel2.Controls.Add(this.txtDebugOutput);
90 		    this.splitContainer1.Size = new System.Drawing.Size(712, 409);
91 		    this.splitContainer1.SplitterDistance = 240;
92 		    this.splitContainer1.TabIndex = 3;
93 		    //
94 		    // txtScriptText
95 		    //
96 		    this.txtScriptText.Dock = System.Windows.Forms.DockStyle.Fill;
97 		    this.txtScriptText.Location = new System.Drawing.Point(0, 0);
98 		    this.txtScriptText.Multiline = true;
99 		    this.txtScriptText.Name = "txtScriptText";
100 		    this.txtScriptText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
101 		    this.txtScriptText.Size = new System.Drawing.Size(712, 240);
102 		    this.txtScriptText.TabIndex = 2;
103 		    //
104 		    // txtDebugOutput
105 		    //
106 		    this.txtDebugOutput.Dock = System.Windows.Forms.DockStyle.Fill;
107 		    this.txtDebugOutput.Location = new System.Drawing.Point(0, 0);
108 		    this.txtDebugOutput.Multiline = true;
109 		    this.txtDebugOutput.Name = "txtDebugOutput";
110 		    this.txtDebugOutput.ReadOnly = true;
111 		    this.txtDebugOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
112 		    this.txtDebugOutput.Size = new System.Drawing.Size(712, 165);
113 		    this.txtDebugOutput.TabIndex = 3;
114 		    //
115 		    // ScriptEditWin
116 		    //
117 		    this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
118 		    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
119 		    this.ClientSize = new System.Drawing.Size(712, 434);
120 		    this.Controls.Add(this.splitContainer1);
121 		    this.Controls.Add(this.ToolBar1);
122 		    this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
123 		    this.KeyPreview = true;
124 		    this.Name = "ScriptEditWin";
125 		    this.ShowInTaskbar = false;
126 		    this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
127 		    this.Text = "ScriptEditWin";
128 		    this.Closing += new System.ComponentModel.CancelEventHandler(this.ScriptEditWin_Closing);
129 		    this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ScriptEditWin_KeyDown);
130 		    this.ToolBar1.ResumeLayout(false);
131 		    this.ToolBar1.PerformLayout();
132 		    this.splitContainer1.Panel1.ResumeLayout(false);
133 		    this.splitContainer1.Panel1.PerformLayout();
134 		    this.splitContainer1.Panel2.ResumeLayout(false);
135 		    this.splitContainer1.Panel2.PerformLayout();
136 		    this.splitContainer1.ResumeLayout(false);
137 		    this.ResumeLayout(false);
138 		    this.PerformLayout();
139 		}
140 	}
141 }