1 | using HeuristicLab.Optimization.Views;
|
---|
2 | namespace HeuristicLab.OKB.AlgorithmHost {
|
---|
3 | partial class AlgorithmHostView {
|
---|
4 | /// <summary>
|
---|
5 | /// Required designer variable.
|
---|
6 | /// </summary>
|
---|
7 | private System.ComponentModel.IContainer components = null;
|
---|
8 |
|
---|
9 | /// <summary>
|
---|
10 | /// Clean up any resources being used.
|
---|
11 | /// </summary>
|
---|
12 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
13 | protected override void Dispose(bool disposing) {
|
---|
14 | if (disposing) {
|
---|
15 | if (components != null) components.Dispose();
|
---|
16 | }
|
---|
17 | base.Dispose(disposing);
|
---|
18 | }
|
---|
19 |
|
---|
20 | #region Component Designer generated code
|
---|
21 |
|
---|
22 | /// <summary>
|
---|
23 | /// Required method for Designer support - do not modify
|
---|
24 | /// the contents of this method with the code editor.
|
---|
25 | /// </summary>
|
---|
26 | private void InitializeComponent() {
|
---|
27 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlgorithmHostView));
|
---|
28 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
29 | this.okbTabPage = new System.Windows.Forms.TabPage();
|
---|
30 | this.problemLabel = new System.Windows.Forms.Label();
|
---|
31 | this.algorithmLabel = new System.Windows.Forms.Label();
|
---|
32 | this.viewProblemButton = new System.Windows.Forms.Button();
|
---|
33 | this.viewAlgorithmButton = new System.Windows.Forms.Button();
|
---|
34 | this.connectButton = new System.Windows.Forms.Button();
|
---|
35 | this.progressBar = new System.Windows.Forms.ProgressBar();
|
---|
36 | this.statusStrip = new System.Windows.Forms.StatusStrip();
|
---|
37 | this.openAlgorithmButton = new System.Windows.Forms.Button();
|
---|
38 | this.openProblemButton = new System.Windows.Forms.Button();
|
---|
39 | this.algorithmParametersTabPage = new System.Windows.Forms.TabPage();
|
---|
40 | this.algorithmParameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
41 | this.problemParametersTabPage = new System.Windows.Forms.TabPage();
|
---|
42 | this.problemParameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
43 | this.resultsTabPage = new System.Windows.Forms.TabPage();
|
---|
44 | this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
|
---|
45 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
46 | this.submitButton = new System.Windows.Forms.Button();
|
---|
47 | this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
48 | this.startButton = new System.Windows.Forms.Button();
|
---|
49 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
50 | this.resetButton = new System.Windows.Forms.Button();
|
---|
51 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
52 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
53 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
54 | this.stopButton = new System.Windows.Forms.Button();
|
---|
55 | this.autoSubmitCheckBox = new System.Windows.Forms.CheckBox();
|
---|
56 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
57 | this.tabControl.SuspendLayout();
|
---|
58 | this.okbTabPage.SuspendLayout();
|
---|
59 | this.algorithmParametersTabPage.SuspendLayout();
|
---|
60 | this.problemParametersTabPage.SuspendLayout();
|
---|
61 | this.resultsTabPage.SuspendLayout();
|
---|
62 | this.runsTabPage.SuspendLayout();
|
---|
63 | this.SuspendLayout();
|
---|
64 | //
|
---|
65 | // nameTextBox
|
---|
66 | //
|
---|
67 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
68 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
69 | this.nameTextBox.Size = new System.Drawing.Size(568, 20);
|
---|
70 | //
|
---|
71 | // descriptionTextBox
|
---|
72 | //
|
---|
73 | this.descriptionTextBox.Size = new System.Drawing.Size(568, 20);
|
---|
74 | //
|
---|
75 | // tabControl
|
---|
76 | //
|
---|
77 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
78 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
79 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
80 | this.tabControl.Controls.Add(this.okbTabPage);
|
---|
81 | this.tabControl.Controls.Add(this.algorithmParametersTabPage);
|
---|
82 | this.tabControl.Controls.Add(this.problemParametersTabPage);
|
---|
83 | this.tabControl.Controls.Add(this.resultsTabPage);
|
---|
84 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
85 | this.tabControl.Location = new System.Drawing.Point(3, 52);
|
---|
86 | this.tabControl.Name = "tabControl";
|
---|
87 | this.tabControl.SelectedIndex = 0;
|
---|
88 | this.tabControl.Size = new System.Drawing.Size(634, 398);
|
---|
89 | this.tabControl.TabIndex = 4;
|
---|
90 | //
|
---|
91 | // okbTabPage
|
---|
92 | //
|
---|
93 | this.okbTabPage.Controls.Add(this.problemLabel);
|
---|
94 | this.okbTabPage.Controls.Add(this.algorithmLabel);
|
---|
95 | this.okbTabPage.Controls.Add(this.viewProblemButton);
|
---|
96 | this.okbTabPage.Controls.Add(this.viewAlgorithmButton);
|
---|
97 | this.okbTabPage.Controls.Add(this.connectButton);
|
---|
98 | this.okbTabPage.Controls.Add(this.progressBar);
|
---|
99 | this.okbTabPage.Controls.Add(this.statusStrip);
|
---|
100 | this.okbTabPage.Controls.Add(this.openAlgorithmButton);
|
---|
101 | this.okbTabPage.Controls.Add(this.openProblemButton);
|
---|
102 | this.okbTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
103 | this.okbTabPage.Name = "okbTabPage";
|
---|
104 | this.okbTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
105 | this.okbTabPage.Size = new System.Drawing.Size(626, 372);
|
---|
106 | this.okbTabPage.TabIndex = 6;
|
---|
107 | this.okbTabPage.Text = "OKB";
|
---|
108 | this.okbTabPage.UseVisualStyleBackColor = true;
|
---|
109 | //
|
---|
110 | // problemLabel
|
---|
111 | //
|
---|
112 | this.problemLabel.AutoSize = true;
|
---|
113 | this.problemLabel.Location = new System.Drawing.Point(6, 72);
|
---|
114 | this.problemLabel.Name = "problemLabel";
|
---|
115 | this.problemLabel.Size = new System.Drawing.Size(45, 13);
|
---|
116 | this.problemLabel.TabIndex = 19;
|
---|
117 | this.problemLabel.Text = "Problem";
|
---|
118 | //
|
---|
119 | // algorithmLabel
|
---|
120 | //
|
---|
121 | this.algorithmLabel.AutoSize = true;
|
---|
122 | this.algorithmLabel.Location = new System.Drawing.Point(6, 42);
|
---|
123 | this.algorithmLabel.Name = "algorithmLabel";
|
---|
124 | this.algorithmLabel.Size = new System.Drawing.Size(50, 13);
|
---|
125 | this.algorithmLabel.TabIndex = 18;
|
---|
126 | this.algorithmLabel.Text = "Algorithm";
|
---|
127 | //
|
---|
128 | // viewProblemButton
|
---|
129 | //
|
---|
130 | this.viewProblemButton.Image = ((System.Drawing.Image)(resources.GetObject("viewProblemButton.Image")));
|
---|
131 | this.viewProblemButton.Location = new System.Drawing.Point(92, 66);
|
---|
132 | this.viewProblemButton.Name = "viewProblemButton";
|
---|
133 | this.viewProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
134 | this.viewProblemButton.TabIndex = 17;
|
---|
135 | this.viewProblemButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
136 | this.toolTip.SetToolTip(this.viewProblemButton, "View Problem");
|
---|
137 | this.viewProblemButton.UseVisualStyleBackColor = true;
|
---|
138 | this.viewProblemButton.Click += new System.EventHandler(this.viewProblemButton_Click);
|
---|
139 | //
|
---|
140 | // viewAlgorithmButton
|
---|
141 | //
|
---|
142 | this.viewAlgorithmButton.Image = ((System.Drawing.Image)(resources.GetObject("viewAlgorithmButton.Image")));
|
---|
143 | this.viewAlgorithmButton.Location = new System.Drawing.Point(92, 36);
|
---|
144 | this.viewAlgorithmButton.Name = "viewAlgorithmButton";
|
---|
145 | this.viewAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
146 | this.viewAlgorithmButton.TabIndex = 16;
|
---|
147 | this.viewAlgorithmButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
148 | this.toolTip.SetToolTip(this.viewAlgorithmButton, "View Algorithm");
|
---|
149 | this.viewAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
150 | this.viewAlgorithmButton.Click += new System.EventHandler(this.viewAlgorithmButton_Click);
|
---|
151 | //
|
---|
152 | // connectButton
|
---|
153 | //
|
---|
154 | this.connectButton.Image = ((System.Drawing.Image)(resources.GetObject("connectButton.Image")));
|
---|
155 | this.connectButton.Location = new System.Drawing.Point(6, 6);
|
---|
156 | this.connectButton.Name = "connectButton";
|
---|
157 | this.connectButton.Size = new System.Drawing.Size(24, 24);
|
---|
158 | this.connectButton.TabIndex = 13;
|
---|
159 | this.connectButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
160 | this.toolTip.SetToolTip(this.connectButton, "Connect to the OKB and (re)download starter kit");
|
---|
161 | this.connectButton.UseVisualStyleBackColor = true;
|
---|
162 | this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
|
---|
163 | //
|
---|
164 | // progressBar
|
---|
165 | //
|
---|
166 | this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
167 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
168 | this.progressBar.Location = new System.Drawing.Point(36, 6);
|
---|
169 | this.progressBar.MarqueeAnimationSpeed = 1;
|
---|
170 | this.progressBar.Name = "progressBar";
|
---|
171 | this.progressBar.Size = new System.Drawing.Size(584, 23);
|
---|
172 | this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
---|
173 | this.progressBar.TabIndex = 15;
|
---|
174 | this.progressBar.Visible = false;
|
---|
175 | //
|
---|
176 | // statusStrip
|
---|
177 | //
|
---|
178 | this.statusStrip.Location = new System.Drawing.Point(3, 347);
|
---|
179 | this.statusStrip.Name = "statusStrip";
|
---|
180 | this.statusStrip.Size = new System.Drawing.Size(620, 22);
|
---|
181 | this.statusStrip.TabIndex = 14;
|
---|
182 | this.statusStrip.Text = "statusStrip";
|
---|
183 | //
|
---|
184 | // openAlgorithmButton
|
---|
185 | //
|
---|
186 | this.openAlgorithmButton.Image = ((System.Drawing.Image)(resources.GetObject("openAlgorithmButton.Image")));
|
---|
187 | this.openAlgorithmButton.Location = new System.Drawing.Point(62, 36);
|
---|
188 | this.openAlgorithmButton.Name = "openAlgorithmButton";
|
---|
189 | this.openAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
190 | this.openAlgorithmButton.TabIndex = 2;
|
---|
191 | this.openAlgorithmButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
192 | this.toolTip.SetToolTip(this.openAlgorithmButton, "Open Algorithm");
|
---|
193 | this.openAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
194 | this.openAlgorithmButton.Click += new System.EventHandler(this.openAlgorithmButton_Click);
|
---|
195 | //
|
---|
196 | // openProblemButton
|
---|
197 | //
|
---|
198 | this.openProblemButton.Image = ((System.Drawing.Image)(resources.GetObject("openProblemButton.Image")));
|
---|
199 | this.openProblemButton.Location = new System.Drawing.Point(62, 66);
|
---|
200 | this.openProblemButton.Name = "openProblemButton";
|
---|
201 | this.openProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
202 | this.openProblemButton.TabIndex = 1;
|
---|
203 | this.openProblemButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
204 | this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
|
---|
205 | this.openProblemButton.UseVisualStyleBackColor = true;
|
---|
206 | this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
|
---|
207 | //
|
---|
208 | // algorithmParametersTabPage
|
---|
209 | //
|
---|
210 | this.algorithmParametersTabPage.Controls.Add(this.algorithmParameterCollectionView);
|
---|
211 | this.algorithmParametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
212 | this.algorithmParametersTabPage.Name = "algorithmParametersTabPage";
|
---|
213 | this.algorithmParametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
214 | this.algorithmParametersTabPage.Size = new System.Drawing.Size(626, 372);
|
---|
215 | this.algorithmParametersTabPage.TabIndex = 1;
|
---|
216 | this.algorithmParametersTabPage.Text = "Algorithm Parameters";
|
---|
217 | this.algorithmParametersTabPage.UseVisualStyleBackColor = true;
|
---|
218 | //
|
---|
219 | // algorithmParameterCollectionView
|
---|
220 | //
|
---|
221 | this.algorithmParameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
222 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
223 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
224 | this.algorithmParameterCollectionView.Caption = "ParameterCollection View";
|
---|
225 | this.algorithmParameterCollectionView.Content = null;
|
---|
226 | this.algorithmParameterCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
227 | this.algorithmParameterCollectionView.Name = "algorithmParameterCollectionView";
|
---|
228 | this.algorithmParameterCollectionView.ReadOnly = false;
|
---|
229 | this.algorithmParameterCollectionView.Size = new System.Drawing.Size(614, 360);
|
---|
230 | this.algorithmParameterCollectionView.TabIndex = 0;
|
---|
231 | //
|
---|
232 | // problemParametersTabPage
|
---|
233 | //
|
---|
234 | this.problemParametersTabPage.Controls.Add(this.problemParameterCollectionView);
|
---|
235 | this.problemParametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
236 | this.problemParametersTabPage.Name = "problemParametersTabPage";
|
---|
237 | this.problemParametersTabPage.Size = new System.Drawing.Size(626, 372);
|
---|
238 | this.problemParametersTabPage.TabIndex = 5;
|
---|
239 | this.problemParametersTabPage.Text = "Problem Parameters";
|
---|
240 | this.problemParametersTabPage.UseVisualStyleBackColor = true;
|
---|
241 | //
|
---|
242 | // problemParameterCollectionView
|
---|
243 | //
|
---|
244 | this.problemParameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
245 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
246 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
247 | this.problemParameterCollectionView.Caption = "ParameterCollection View";
|
---|
248 | this.problemParameterCollectionView.Content = null;
|
---|
249 | this.problemParameterCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
250 | this.problemParameterCollectionView.Name = "problemParameterCollectionView";
|
---|
251 | this.problemParameterCollectionView.ReadOnly = false;
|
---|
252 | this.problemParameterCollectionView.Size = new System.Drawing.Size(614, 360);
|
---|
253 | this.problemParameterCollectionView.TabIndex = 0;
|
---|
254 | //
|
---|
255 | // resultsTabPage
|
---|
256 | //
|
---|
257 | this.resultsTabPage.Controls.Add(this.resultsView);
|
---|
258 | this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
259 | this.resultsTabPage.Name = "resultsTabPage";
|
---|
260 | this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
261 | this.resultsTabPage.Size = new System.Drawing.Size(626, 372);
|
---|
262 | this.resultsTabPage.TabIndex = 2;
|
---|
263 | this.resultsTabPage.Text = "Results";
|
---|
264 | this.resultsTabPage.UseVisualStyleBackColor = true;
|
---|
265 | //
|
---|
266 | // resultsView
|
---|
267 | //
|
---|
268 | this.resultsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
269 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
270 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
271 | this.resultsView.Caption = "ResultCollection View";
|
---|
272 | this.resultsView.Content = null;
|
---|
273 | this.resultsView.Location = new System.Drawing.Point(6, 6);
|
---|
274 | this.resultsView.Name = "resultsView";
|
---|
275 | this.resultsView.ReadOnly = true;
|
---|
276 | this.resultsView.Size = new System.Drawing.Size(614, 360);
|
---|
277 | this.resultsView.TabIndex = 0;
|
---|
278 | //
|
---|
279 | // runsTabPage
|
---|
280 | //
|
---|
281 | this.runsTabPage.Controls.Add(this.autoSubmitCheckBox);
|
---|
282 | this.runsTabPage.Controls.Add(this.submitButton);
|
---|
283 | this.runsTabPage.Controls.Add(this.runsView);
|
---|
284 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
285 | this.runsTabPage.Name = "runsTabPage";
|
---|
286 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
287 | this.runsTabPage.Size = new System.Drawing.Size(626, 372);
|
---|
288 | this.runsTabPage.TabIndex = 3;
|
---|
289 | this.runsTabPage.Text = "Runs";
|
---|
290 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
291 | //
|
---|
292 | // submitButton
|
---|
293 | //
|
---|
294 | this.submitButton.Enabled = false;
|
---|
295 | this.submitButton.Image = ((System.Drawing.Image)(resources.GetObject("submitButton.Image")));
|
---|
296 | this.submitButton.Location = new System.Drawing.Point(6, 6);
|
---|
297 | this.submitButton.Name = "submitButton";
|
---|
298 | this.submitButton.Size = new System.Drawing.Size(64, 24);
|
---|
299 | this.submitButton.TabIndex = 2;
|
---|
300 | this.submitButton.Text = "&Submit";
|
---|
301 | this.submitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
302 | this.toolTip.SetToolTip(this.submitButton, "Submit runs to the OKB");
|
---|
303 | this.submitButton.UseVisualStyleBackColor = true;
|
---|
304 | this.submitButton.Click += new System.EventHandler(this.submitButton_Click);
|
---|
305 | //
|
---|
306 | // runsView
|
---|
307 | //
|
---|
308 | this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
309 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
310 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
311 | this.runsView.Caption = "RunCollection View";
|
---|
312 | this.runsView.Content = null;
|
---|
313 | this.runsView.Location = new System.Drawing.Point(6, 36);
|
---|
314 | this.runsView.Name = "runsView";
|
---|
315 | this.runsView.ReadOnly = false;
|
---|
316 | this.runsView.Size = new System.Drawing.Size(614, 330);
|
---|
317 | this.runsView.TabIndex = 0;
|
---|
318 | //
|
---|
319 | // startButton
|
---|
320 | //
|
---|
321 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
322 | this.startButton.Image = ((System.Drawing.Image)(resources.GetObject("startButton.Image")));
|
---|
323 | this.startButton.Location = new System.Drawing.Point(3, 453);
|
---|
324 | this.startButton.Name = "startButton";
|
---|
325 | this.startButton.Size = new System.Drawing.Size(24, 24);
|
---|
326 | this.startButton.TabIndex = 5;
|
---|
327 | this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
|
---|
328 | this.startButton.UseVisualStyleBackColor = true;
|
---|
329 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
330 | //
|
---|
331 | // pauseButton
|
---|
332 | //
|
---|
333 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
334 | this.pauseButton.Image = ((System.Drawing.Image)(resources.GetObject("pauseButton.Image")));
|
---|
335 | this.pauseButton.Location = new System.Drawing.Point(33, 453);
|
---|
336 | this.pauseButton.Name = "pauseButton";
|
---|
337 | this.pauseButton.Size = new System.Drawing.Size(24, 24);
|
---|
338 | this.pauseButton.TabIndex = 6;
|
---|
339 | this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
|
---|
340 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
341 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
342 | //
|
---|
343 | // resetButton
|
---|
344 | //
|
---|
345 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
346 | this.resetButton.Image = ((System.Drawing.Image)(resources.GetObject("resetButton.Image")));
|
---|
347 | this.resetButton.Location = new System.Drawing.Point(93, 453);
|
---|
348 | this.resetButton.Name = "resetButton";
|
---|
349 | this.resetButton.Size = new System.Drawing.Size(24, 24);
|
---|
350 | this.resetButton.TabIndex = 8;
|
---|
351 | this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
|
---|
352 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
353 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
354 | //
|
---|
355 | // executionTimeLabel
|
---|
356 | //
|
---|
357 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
358 | this.executionTimeLabel.AutoSize = true;
|
---|
359 | this.executionTimeLabel.Location = new System.Drawing.Point(411, 459);
|
---|
360 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
361 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
362 | this.executionTimeLabel.TabIndex = 9;
|
---|
363 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
364 | //
|
---|
365 | // executionTimeTextBox
|
---|
366 | //
|
---|
367 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
368 | this.executionTimeTextBox.Location = new System.Drawing.Point(500, 456);
|
---|
369 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
370 | this.executionTimeTextBox.ReadOnly = true;
|
---|
371 | this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
372 | this.executionTimeTextBox.TabIndex = 10;
|
---|
373 | //
|
---|
374 | // openFileDialog
|
---|
375 | //
|
---|
376 | this.openFileDialog.DefaultExt = "hl";
|
---|
377 | this.openFileDialog.FileName = "Problem";
|
---|
378 | this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
|
---|
379 | this.openFileDialog.Title = "Open Problem";
|
---|
380 | //
|
---|
381 | // stopButton
|
---|
382 | //
|
---|
383 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
384 | this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
|
---|
385 | this.stopButton.Location = new System.Drawing.Point(63, 453);
|
---|
386 | this.stopButton.Name = "stopButton";
|
---|
387 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
388 | this.stopButton.TabIndex = 7;
|
---|
389 | this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
|
---|
390 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
391 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
392 | //
|
---|
393 | // autoSubmitCheckBox
|
---|
394 | //
|
---|
395 | this.autoSubmitCheckBox.AutoSize = true;
|
---|
396 | this.autoSubmitCheckBox.Location = new System.Drawing.Point(76, 11);
|
---|
397 | this.autoSubmitCheckBox.Name = "autoSubmitCheckBox";
|
---|
398 | this.autoSubmitCheckBox.Size = new System.Drawing.Size(83, 17);
|
---|
399 | this.autoSubmitCheckBox.TabIndex = 3;
|
---|
400 | this.autoSubmitCheckBox.Text = "&Auto Submit";
|
---|
401 | this.toolTip.SetToolTip(this.autoSubmitCheckBox, "Automatically submit new runs to the OKB without confirmation");
|
---|
402 | this.autoSubmitCheckBox.UseVisualStyleBackColor = true;
|
---|
403 | //
|
---|
404 | // AlgorithmHostView
|
---|
405 | //
|
---|
406 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
407 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
408 | this.Controls.Add(this.tabControl);
|
---|
409 | this.Controls.Add(this.startButton);
|
---|
410 | this.Controls.Add(this.pauseButton);
|
---|
411 | this.Controls.Add(this.stopButton);
|
---|
412 | this.Controls.Add(this.executionTimeTextBox);
|
---|
413 | this.Controls.Add(this.executionTimeLabel);
|
---|
414 | this.Controls.Add(this.resetButton);
|
---|
415 | this.Name = "AlgorithmHostView";
|
---|
416 | this.Size = new System.Drawing.Size(640, 480);
|
---|
417 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
418 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
419 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
420 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
421 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
422 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
423 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
424 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
425 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
426 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
427 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
428 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
429 | this.tabControl.ResumeLayout(false);
|
---|
430 | this.okbTabPage.ResumeLayout(false);
|
---|
431 | this.okbTabPage.PerformLayout();
|
---|
432 | this.algorithmParametersTabPage.ResumeLayout(false);
|
---|
433 | this.problemParametersTabPage.ResumeLayout(false);
|
---|
434 | this.resultsTabPage.ResumeLayout(false);
|
---|
435 | this.runsTabPage.ResumeLayout(false);
|
---|
436 | this.runsTabPage.PerformLayout();
|
---|
437 | this.ResumeLayout(false);
|
---|
438 | this.PerformLayout();
|
---|
439 |
|
---|
440 | }
|
---|
441 |
|
---|
442 | #endregion
|
---|
443 |
|
---|
444 | protected System.Windows.Forms.TabControl tabControl;
|
---|
445 | protected System.Windows.Forms.TabPage algorithmParametersTabPage;
|
---|
446 | protected HeuristicLab.Core.Views.ParameterCollectionView algorithmParameterCollectionView;
|
---|
447 | protected System.Windows.Forms.Button openProblemButton;
|
---|
448 | protected System.Windows.Forms.Button startButton;
|
---|
449 | protected System.Windows.Forms.Button pauseButton;
|
---|
450 | protected System.Windows.Forms.Button resetButton;
|
---|
451 | protected System.Windows.Forms.Label executionTimeLabel;
|
---|
452 | protected System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
453 | protected System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
454 | protected System.Windows.Forms.TabPage resultsTabPage;
|
---|
455 | protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView;
|
---|
456 | protected System.Windows.Forms.Button stopButton;
|
---|
457 | protected System.Windows.Forms.TabPage runsTabPage;
|
---|
458 | protected RunCollectionView runsView;
|
---|
459 | protected System.Windows.Forms.Button openAlgorithmButton;
|
---|
460 | private System.Windows.Forms.Button connectButton;
|
---|
461 | private System.Windows.Forms.StatusStrip statusStrip;
|
---|
462 | private System.Windows.Forms.ProgressBar progressBar;
|
---|
463 | private System.Windows.Forms.TabPage problemParametersTabPage;
|
---|
464 | private HeuristicLab.Core.Views.ParameterCollectionView problemParameterCollectionView;
|
---|
465 | private System.Windows.Forms.Button submitButton;
|
---|
466 | private System.Windows.Forms.TabPage okbTabPage;
|
---|
467 | private System.Windows.Forms.Label problemLabel;
|
---|
468 | private System.Windows.Forms.Label algorithmLabel;
|
---|
469 | private System.Windows.Forms.Button viewProblemButton;
|
---|
470 | private System.Windows.Forms.Button viewAlgorithmButton;
|
---|
471 | private System.Windows.Forms.CheckBox autoSubmitCheckBox;
|
---|
472 | }
|
---|
473 | }
|
---|