1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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.Operators.Programmable {
|
---|
23 | partial class ProgrammableOperatorView {
|
---|
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 Component 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 | System.Windows.Forms.TabPage tabPage2;
|
---|
48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProgrammableOperatorView));
|
---|
49 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
50 | this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
---|
51 | this.assembliesBox = new System.Windows.Forms.GroupBox();
|
---|
52 | this.assembliesTreeView = new System.Windows.Forms.TreeView();
|
---|
53 | this.namespacesBox = new System.Windows.Forms.GroupBox();
|
---|
54 | this.namespacesTreeView = new System.Windows.Forms.TreeView();
|
---|
55 | this.showCodeButton = new System.Windows.Forms.Button();
|
---|
56 | this.compileButton = new System.Windows.Forms.Button();
|
---|
57 | this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
|
---|
58 | this.tabControl1 = new System.Windows.Forms.TabControl();
|
---|
59 | this.tabPage1 = new System.Windows.Forms.TabPage();
|
---|
60 | this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
61 | tabPage2 = new System.Windows.Forms.TabPage();
|
---|
62 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
63 | tabPage2.SuspendLayout();
|
---|
64 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
65 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
66 | this.splitContainer1.SuspendLayout();
|
---|
67 | this.splitContainer2.Panel1.SuspendLayout();
|
---|
68 | this.splitContainer2.Panel2.SuspendLayout();
|
---|
69 | this.splitContainer2.SuspendLayout();
|
---|
70 | this.assembliesBox.SuspendLayout();
|
---|
71 | this.namespacesBox.SuspendLayout();
|
---|
72 | this.tabControl1.SuspendLayout();
|
---|
73 | this.tabPage1.SuspendLayout();
|
---|
74 | this.SuspendLayout();
|
---|
75 | //
|
---|
76 | // nameTextBox
|
---|
77 | //
|
---|
78 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
79 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
80 | this.nameTextBox.Size = new System.Drawing.Size(913, 20);
|
---|
81 | //
|
---|
82 | // descriptionTextBox
|
---|
83 | //
|
---|
84 | this.descriptionTextBox.Size = new System.Drawing.Size(913, 20);
|
---|
85 | //
|
---|
86 | // tabPage2
|
---|
87 | //
|
---|
88 | tabPage2.Controls.Add(this.splitContainer1);
|
---|
89 | tabPage2.Location = new System.Drawing.Point(4, 22);
|
---|
90 | tabPage2.Name = "tabPage2";
|
---|
91 | tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
---|
92 | tabPage2.Size = new System.Drawing.Size(977, 619);
|
---|
93 | tabPage2.TabIndex = 1;
|
---|
94 | tabPage2.Text = "Code";
|
---|
95 | tabPage2.UseVisualStyleBackColor = true;
|
---|
96 | //
|
---|
97 | // splitContainer1
|
---|
98 | //
|
---|
99 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
100 | this.splitContainer1.Location = new System.Drawing.Point(3, 3);
|
---|
101 | this.splitContainer1.Name = "splitContainer1";
|
---|
102 | //
|
---|
103 | // splitContainer1.Panel1
|
---|
104 | //
|
---|
105 | this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
|
---|
106 | this.splitContainer1.Panel1.Controls.Add(this.showCodeButton);
|
---|
107 | this.splitContainer1.Panel1.Controls.Add(this.compileButton);
|
---|
108 | //
|
---|
109 | // splitContainer1.Panel2
|
---|
110 | //
|
---|
111 | this.splitContainer1.Panel2.Controls.Add(this.codeEditor);
|
---|
112 | this.splitContainer1.Size = new System.Drawing.Size(971, 613);
|
---|
113 | this.splitContainer1.SplitterDistance = 244;
|
---|
114 | this.splitContainer1.TabIndex = 0;
|
---|
115 | //
|
---|
116 | // splitContainer2
|
---|
117 | //
|
---|
118 | this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
119 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
120 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
121 | this.splitContainer2.Location = new System.Drawing.Point(0, 33);
|
---|
122 | this.splitContainer2.Name = "splitContainer2";
|
---|
123 | this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
124 | //
|
---|
125 | // splitContainer2.Panel1
|
---|
126 | //
|
---|
127 | this.splitContainer2.Panel1.Controls.Add(this.assembliesBox);
|
---|
128 | //
|
---|
129 | // splitContainer2.Panel2
|
---|
130 | //
|
---|
131 | this.splitContainer2.Panel2.Controls.Add(this.namespacesBox);
|
---|
132 | this.splitContainer2.Size = new System.Drawing.Size(242, 583);
|
---|
133 | this.splitContainer2.SplitterDistance = 290;
|
---|
134 | this.splitContainer2.TabIndex = 2;
|
---|
135 | //
|
---|
136 | // assembliesBox
|
---|
137 | //
|
---|
138 | this.assembliesBox.Controls.Add(this.assembliesTreeView);
|
---|
139 | this.assembliesBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
140 | this.assembliesBox.Location = new System.Drawing.Point(0, 0);
|
---|
141 | this.assembliesBox.Name = "assembliesBox";
|
---|
142 | this.assembliesBox.Size = new System.Drawing.Size(242, 290);
|
---|
143 | this.assembliesBox.TabIndex = 1;
|
---|
144 | this.assembliesBox.TabStop = false;
|
---|
145 | this.assembliesBox.Text = "Assemblies";
|
---|
146 | //
|
---|
147 | // assembliesTreeView
|
---|
148 | //
|
---|
149 | this.assembliesTreeView.CheckBoxes = true;
|
---|
150 | this.assembliesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
151 | this.assembliesTreeView.Location = new System.Drawing.Point(3, 16);
|
---|
152 | this.assembliesTreeView.Name = "assembliesTreeView";
|
---|
153 | this.assembliesTreeView.Size = new System.Drawing.Size(236, 271);
|
---|
154 | this.assembliesTreeView.TabIndex = 0;
|
---|
155 | this.assembliesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.assembliesTreeView_AfterCheck);
|
---|
156 | //
|
---|
157 | // namespacesBox
|
---|
158 | //
|
---|
159 | this.namespacesBox.Controls.Add(this.namespacesTreeView);
|
---|
160 | this.namespacesBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
161 | this.namespacesBox.Location = new System.Drawing.Point(0, 0);
|
---|
162 | this.namespacesBox.Name = "namespacesBox";
|
---|
163 | this.namespacesBox.Size = new System.Drawing.Size(242, 289);
|
---|
164 | this.namespacesBox.TabIndex = 1;
|
---|
165 | this.namespacesBox.TabStop = false;
|
---|
166 | this.namespacesBox.Text = "Namespaces";
|
---|
167 | //
|
---|
168 | // namespacesTreeView
|
---|
169 | //
|
---|
170 | this.namespacesTreeView.CheckBoxes = true;
|
---|
171 | this.namespacesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
172 | this.namespacesTreeView.Location = new System.Drawing.Point(3, 16);
|
---|
173 | this.namespacesTreeView.Name = "namespacesTreeView";
|
---|
174 | this.namespacesTreeView.PathSeparator = ".";
|
---|
175 | this.namespacesTreeView.Size = new System.Drawing.Size(236, 270);
|
---|
176 | this.namespacesTreeView.TabIndex = 0;
|
---|
177 | this.namespacesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.namespacesTreeView_AfterCheck);
|
---|
178 | //
|
---|
179 | // showCodeButton
|
---|
180 | //
|
---|
181 | this.showCodeButton.Image = ((System.Drawing.Image)(resources.GetObject("showCodeButton.Image")));
|
---|
182 | this.showCodeButton.Location = new System.Drawing.Point(33, 3);
|
---|
183 | this.showCodeButton.Name = "showCodeButton";
|
---|
184 | this.showCodeButton.Size = new System.Drawing.Size(24, 24);
|
---|
185 | this.showCodeButton.TabIndex = 0;
|
---|
186 | this.showCodeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
187 | this.toolTip.SetToolTip(this.showCodeButton, "Show generated code");
|
---|
188 | this.showCodeButton.UseVisualStyleBackColor = false;
|
---|
189 | this.showCodeButton.Click += new System.EventHandler(this.showCodeButton_Click);
|
---|
190 | //
|
---|
191 | // compileButton
|
---|
192 | //
|
---|
193 | this.compileButton.Image = ((System.Drawing.Image)(resources.GetObject("compileButton.Image")));
|
---|
194 | this.compileButton.Location = new System.Drawing.Point(3, 3);
|
---|
195 | this.compileButton.Name = "compileButton";
|
---|
196 | this.compileButton.Size = new System.Drawing.Size(24, 24);
|
---|
197 | this.compileButton.TabIndex = 1;
|
---|
198 | this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
199 | this.toolTip.SetToolTip(this.compileButton, "Compile");
|
---|
200 | this.compileButton.UseVisualStyleBackColor = true;
|
---|
201 | this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
|
---|
202 | //
|
---|
203 | // codeEditor
|
---|
204 | //
|
---|
205 | this.codeEditor.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
206 | this.codeEditor.Location = new System.Drawing.Point(0, 0);
|
---|
207 | this.codeEditor.Name = "codeEditor";
|
---|
208 | this.codeEditor.Prefix = "";
|
---|
209 | this.codeEditor.Size = new System.Drawing.Size(723, 613);
|
---|
210 | this.codeEditor.Suffix = "";
|
---|
211 | this.codeEditor.TabIndex = 0;
|
---|
212 | this.codeEditor.UserCode = "";
|
---|
213 | this.codeEditor.Validated += new System.EventHandler(this.codeEditor_Validated);
|
---|
214 | //
|
---|
215 | // tabControl1
|
---|
216 | //
|
---|
217 | this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
218 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
219 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
220 | this.tabControl1.Controls.Add(this.tabPage1);
|
---|
221 | this.tabControl1.Controls.Add(tabPage2);
|
---|
222 | this.tabControl1.Location = new System.Drawing.Point(0, 52);
|
---|
223 | this.tabControl1.Name = "tabControl1";
|
---|
224 | this.tabControl1.SelectedIndex = 0;
|
---|
225 | this.tabControl1.Size = new System.Drawing.Size(985, 645);
|
---|
226 | this.tabControl1.TabIndex = 7;
|
---|
227 | //
|
---|
228 | // tabPage1
|
---|
229 | //
|
---|
230 | this.tabPage1.Controls.Add(this.parameterCollectionView);
|
---|
231 | this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
---|
232 | this.tabPage1.Name = "tabPage1";
|
---|
233 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
---|
234 | this.tabPage1.Size = new System.Drawing.Size(977, 619);
|
---|
235 | this.tabPage1.TabIndex = 0;
|
---|
236 | this.tabPage1.Text = "Parameters";
|
---|
237 | this.tabPage1.UseVisualStyleBackColor = true;
|
---|
238 | //
|
---|
239 | // parameterCollectionView
|
---|
240 | //
|
---|
241 | this.parameterCollectionView.Caption = "ParameterCollection View";
|
---|
242 | this.parameterCollectionView.Content = null;
|
---|
243 | this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
244 | this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
245 | this.parameterCollectionView.Name = "parameterCollectionView";
|
---|
246 | this.parameterCollectionView.ReadOnly = false;
|
---|
247 | this.parameterCollectionView.Size = new System.Drawing.Size(971, 613);
|
---|
248 | this.parameterCollectionView.TabIndex = 0;
|
---|
249 | //
|
---|
250 | // ProgrammableOperatorView
|
---|
251 | //
|
---|
252 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
253 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
254 | this.Controls.Add(this.tabControl1);
|
---|
255 | this.Name = "ProgrammableOperatorView";
|
---|
256 | this.Size = new System.Drawing.Size(985, 697);
|
---|
257 | this.Controls.SetChildIndex(this.tabControl1, 0);
|
---|
258 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
259 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
260 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
261 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
262 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
263 | tabPage2.ResumeLayout(false);
|
---|
264 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
265 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
266 | this.splitContainer1.ResumeLayout(false);
|
---|
267 | this.splitContainer2.Panel1.ResumeLayout(false);
|
---|
268 | this.splitContainer2.Panel2.ResumeLayout(false);
|
---|
269 | this.splitContainer2.ResumeLayout(false);
|
---|
270 | this.assembliesBox.ResumeLayout(false);
|
---|
271 | this.namespacesBox.ResumeLayout(false);
|
---|
272 | this.tabControl1.ResumeLayout(false);
|
---|
273 | this.tabPage1.ResumeLayout(false);
|
---|
274 | this.ResumeLayout(false);
|
---|
275 | this.PerformLayout();
|
---|
276 |
|
---|
277 | }
|
---|
278 |
|
---|
279 | #endregion
|
---|
280 |
|
---|
281 | private System.Windows.Forms.TabControl tabControl1;
|
---|
282 | private System.Windows.Forms.TabPage tabPage1;
|
---|
283 | private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
|
---|
284 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
285 | private HeuristicLab.CodeEditor.CodeEditor codeEditor;
|
---|
286 | private System.Windows.Forms.Button compileButton;
|
---|
287 | private System.Windows.Forms.Button showCodeButton;
|
---|
288 | private System.Windows.Forms.SplitContainer splitContainer2;
|
---|
289 | private System.Windows.Forms.TreeView assembliesTreeView;
|
---|
290 | private System.Windows.Forms.TreeView namespacesTreeView;
|
---|
291 | private System.Windows.Forms.GroupBox assembliesBox;
|
---|
292 | private System.Windows.Forms.GroupBox namespacesBox;
|
---|
293 | }
|
---|
294 | }
|
---|