1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | namespace HeuristicLab.Scripting.Views {
|
---|
23 | partial class ProgrammableItemView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Windows Form Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.components = new System.ComponentModel.Container();
|
---|
48 | this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
---|
49 | this.codeGroupBox = new System.Windows.Forms.GroupBox();
|
---|
50 | this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
|
---|
51 | this.errorsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
52 | this.errorsListView = new System.Windows.Forms.ListView();
|
---|
53 | this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
54 | this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
55 | this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
56 | this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
57 | this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
58 | this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
59 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
60 | this.compileButton = new System.Windows.Forms.Button();
|
---|
61 | this.compilationLabel = new System.Windows.Forms.Label();
|
---|
62 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
63 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
64 | this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView();
|
---|
65 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
---|
66 | this.splitContainer2.Panel1.SuspendLayout();
|
---|
67 | this.splitContainer2.Panel2.SuspendLayout();
|
---|
68 | this.splitContainer2.SuspendLayout();
|
---|
69 | this.codeGroupBox.SuspendLayout();
|
---|
70 | this.errorsGroupBox.SuspendLayout();
|
---|
71 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
---|
72 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
73 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
74 | this.splitContainer1.SuspendLayout();
|
---|
75 | this.SuspendLayout();
|
---|
76 | //
|
---|
77 | // splitContainer2
|
---|
78 | //
|
---|
79 | this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
80 | this.splitContainer2.Location = new System.Drawing.Point(0, 0);
|
---|
81 | this.splitContainer2.Name = "splitContainer2";
|
---|
82 | this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
83 | //
|
---|
84 | // splitContainer2.Panel1
|
---|
85 | //
|
---|
86 | this.splitContainer2.Panel1.Controls.Add(this.codeGroupBox);
|
---|
87 | //
|
---|
88 | // splitContainer2.Panel2
|
---|
89 | //
|
---|
90 | this.splitContainer2.Panel2.Controls.Add(this.errorsGroupBox);
|
---|
91 | this.splitContainer2.Size = new System.Drawing.Size(357, 454);
|
---|
92 | this.splitContainer2.SplitterDistance = 382;
|
---|
93 | this.splitContainer2.TabIndex = 3;
|
---|
94 | //
|
---|
95 | // codeGroupBox
|
---|
96 | //
|
---|
97 | this.codeGroupBox.Controls.Add(this.codeEditor);
|
---|
98 | this.codeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
99 | this.codeGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
100 | this.codeGroupBox.Name = "codeGroupBox";
|
---|
101 | this.codeGroupBox.Size = new System.Drawing.Size(357, 382);
|
---|
102 | this.codeGroupBox.TabIndex = 0;
|
---|
103 | this.codeGroupBox.TabStop = false;
|
---|
104 | this.codeGroupBox.Text = "Code";
|
---|
105 | //
|
---|
106 | // codeEditor
|
---|
107 | //
|
---|
108 | this.codeEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
109 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
110 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
111 | this.codeEditor.Location = new System.Drawing.Point(6, 19);
|
---|
112 | this.codeEditor.Name = "codeEditor";
|
---|
113 | this.codeEditor.Prefix = "";
|
---|
114 | this.codeEditor.ReadOnly = false;
|
---|
115 | this.codeEditor.Size = new System.Drawing.Size(345, 357);
|
---|
116 | this.codeEditor.Suffix = "";
|
---|
117 | this.codeEditor.TabIndex = 0;
|
---|
118 | this.codeEditor.UserCode = "";
|
---|
119 | this.codeEditor.Validated += new System.EventHandler(this.codeEditor_Validated);
|
---|
120 | //
|
---|
121 | // errorsGroupBox
|
---|
122 | //
|
---|
123 | this.errorsGroupBox.Controls.Add(this.errorsListView);
|
---|
124 | this.errorsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
125 | this.errorsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
126 | this.errorsGroupBox.Name = "errorsGroupBox";
|
---|
127 | this.errorsGroupBox.Size = new System.Drawing.Size(357, 68);
|
---|
128 | this.errorsGroupBox.TabIndex = 0;
|
---|
129 | this.errorsGroupBox.TabStop = false;
|
---|
130 | this.errorsGroupBox.Text = "Errors";
|
---|
131 | //
|
---|
132 | // errorsListView
|
---|
133 | //
|
---|
134 | this.errorsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
135 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
136 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
137 | this.errorsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
138 | this.iconColumnHeader,
|
---|
139 | this.categoryColumnHeader,
|
---|
140 | this.errorNumberColumnHeader,
|
---|
141 | this.lineColumnHeader,
|
---|
142 | this.columnColumnHeader,
|
---|
143 | this.descriptionColumnHeader});
|
---|
144 | this.errorsListView.FullRowSelect = true;
|
---|
145 | this.errorsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
---|
146 | this.errorsListView.HideSelection = false;
|
---|
147 | this.errorsListView.Location = new System.Drawing.Point(6, 19);
|
---|
148 | this.errorsListView.Name = "errorsListView";
|
---|
149 | this.errorsListView.Size = new System.Drawing.Size(345, 43);
|
---|
150 | this.errorsListView.SmallImageList = this.imageList;
|
---|
151 | this.errorsListView.TabIndex = 0;
|
---|
152 | this.errorsListView.UseCompatibleStateImageBehavior = false;
|
---|
153 | this.errorsListView.View = System.Windows.Forms.View.Details;
|
---|
154 | this.errorsListView.DoubleClick += new System.EventHandler(this.errorsListView_DoubleClick);
|
---|
155 | //
|
---|
156 | // iconColumnHeader
|
---|
157 | //
|
---|
158 | this.iconColumnHeader.Text = "";
|
---|
159 | //
|
---|
160 | // categoryColumnHeader
|
---|
161 | //
|
---|
162 | this.categoryColumnHeader.Text = "Category";
|
---|
163 | //
|
---|
164 | // errorNumberColumnHeader
|
---|
165 | //
|
---|
166 | this.errorNumberColumnHeader.Text = "Error Number";
|
---|
167 | //
|
---|
168 | // lineColumnHeader
|
---|
169 | //
|
---|
170 | this.lineColumnHeader.Text = "Line";
|
---|
171 | //
|
---|
172 | // columnColumnHeader
|
---|
173 | //
|
---|
174 | this.columnColumnHeader.Text = "Column";
|
---|
175 | //
|
---|
176 | // descriptionColumnHeader
|
---|
177 | //
|
---|
178 | this.descriptionColumnHeader.Text = "Description";
|
---|
179 | //
|
---|
180 | // imageList
|
---|
181 | //
|
---|
182 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
183 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
184 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
185 | //
|
---|
186 | // compileButton
|
---|
187 | //
|
---|
188 | this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
|
---|
189 | this.compileButton.Location = new System.Drawing.Point(3, 3);
|
---|
190 | this.compileButton.Name = "compileButton";
|
---|
191 | this.compileButton.Size = new System.Drawing.Size(24, 24);
|
---|
192 | this.compileButton.TabIndex = 0;
|
---|
193 | this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
|
---|
194 | this.compileButton.UseVisualStyleBackColor = true;
|
---|
195 | this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
|
---|
196 | //
|
---|
197 | // compilationLabel
|
---|
198 | //
|
---|
199 | this.compilationLabel.AutoSize = true;
|
---|
200 | this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
|
---|
201 | this.compilationLabel.Location = new System.Drawing.Point(66, 9);
|
---|
202 | this.compilationLabel.Name = "compilationLabel";
|
---|
203 | this.compilationLabel.Size = new System.Drawing.Size(69, 13);
|
---|
204 | this.compilationLabel.TabIndex = 1;
|
---|
205 | this.compilationLabel.Text = "Not compiled";
|
---|
206 | //
|
---|
207 | // splitContainer1
|
---|
208 | //
|
---|
209 | this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
210 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
211 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
212 | this.splitContainer1.Location = new System.Drawing.Point(0, 33);
|
---|
213 | this.splitContainer1.Name = "splitContainer1";
|
---|
214 | //
|
---|
215 | // splitContainer1.Panel1
|
---|
216 | //
|
---|
217 | this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
|
---|
218 | //
|
---|
219 | // splitContainer1.Panel2
|
---|
220 | //
|
---|
221 | this.splitContainer1.Panel2.Controls.Add(this.variableStoreView);
|
---|
222 | this.splitContainer1.Size = new System.Drawing.Size(486, 454);
|
---|
223 | this.splitContainer1.SplitterDistance = 357;
|
---|
224 | this.splitContainer1.TabIndex = 4;
|
---|
225 | //
|
---|
226 | // variableStoreView
|
---|
227 | //
|
---|
228 | this.variableStoreView.Caption = "ItemCollection View";
|
---|
229 | this.variableStoreView.Content = null;
|
---|
230 | this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
231 | this.variableStoreView.Location = new System.Drawing.Point(0, 0);
|
---|
232 | this.variableStoreView.Name = "variableStoreView";
|
---|
233 | this.variableStoreView.ReadOnly = false;
|
---|
234 | this.variableStoreView.Size = new System.Drawing.Size(125, 454);
|
---|
235 | this.variableStoreView.TabIndex = 0;
|
---|
236 | //
|
---|
237 | // ProgrammableItemView
|
---|
238 | //
|
---|
239 | this.Controls.Add(this.splitContainer1);
|
---|
240 | this.Controls.Add(this.compilationLabel);
|
---|
241 | this.Controls.Add(this.compileButton);
|
---|
242 | this.Name = "ProgrammableItemView";
|
---|
243 | this.Size = new System.Drawing.Size(486, 487);
|
---|
244 | this.splitContainer2.Panel1.ResumeLayout(false);
|
---|
245 | this.splitContainer2.Panel2.ResumeLayout(false);
|
---|
246 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
---|
247 | this.splitContainer2.ResumeLayout(false);
|
---|
248 | this.codeGroupBox.ResumeLayout(false);
|
---|
249 | this.errorsGroupBox.ResumeLayout(false);
|
---|
250 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
251 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
252 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
---|
253 | this.splitContainer1.ResumeLayout(false);
|
---|
254 | this.ResumeLayout(false);
|
---|
255 | this.PerformLayout();
|
---|
256 |
|
---|
257 | }
|
---|
258 |
|
---|
259 | #endregion
|
---|
260 |
|
---|
261 | protected System.Windows.Forms.SplitContainer splitContainer2;
|
---|
262 | protected System.Windows.Forms.GroupBox errorsGroupBox;
|
---|
263 | protected System.Windows.Forms.Button compileButton;
|
---|
264 | protected CodeEditor.CodeEditor codeEditor;
|
---|
265 | protected System.Windows.Forms.ListView errorsListView;
|
---|
266 | protected System.Windows.Forms.ColumnHeader iconColumnHeader;
|
---|
267 | protected System.Windows.Forms.ColumnHeader categoryColumnHeader;
|
---|
268 | protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
|
---|
269 | protected System.Windows.Forms.ColumnHeader lineColumnHeader;
|
---|
270 | protected System.Windows.Forms.ColumnHeader columnColumnHeader;
|
---|
271 | protected System.Windows.Forms.ColumnHeader descriptionColumnHeader;
|
---|
272 | protected System.Windows.Forms.Label compilationLabel;
|
---|
273 | protected System.Windows.Forms.ImageList imageList;
|
---|
274 | protected System.Windows.Forms.GroupBox codeGroupBox;
|
---|
275 | protected System.Windows.Forms.ToolTip toolTip;
|
---|
276 | protected System.Windows.Forms.SplitContainer splitContainer1;
|
---|
277 | protected VariableStoreView variableStoreView;
|
---|
278 |
|
---|
279 | }
|
---|
280 | }
|
---|