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.Hive.Experiment.Views {
|
---|
23 | partial class HiveExperimentView {
|
---|
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) {
|
---|
35 | if (components != null) 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveExperimentView));
|
---|
48 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
49 | this.experimentTabPage = new System.Windows.Forms.TabPage();
|
---|
50 | this.openExperimentButton = new System.Windows.Forms.Button();
|
---|
51 | this.newExperimentButton = new System.Windows.Forms.Button();
|
---|
52 | this.experimentNamedItemView = new HeuristicLab.Core.Views.NamedItemView();
|
---|
53 | this.viewExperimentButton = new System.Windows.Forms.Button();
|
---|
54 | this.hiveStatusTabPage = new System.Windows.Forms.TabPage();
|
---|
55 | this.jobListView = new HeuristicLab.Hive.Experiment.Views.JobItemListView();
|
---|
56 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
57 | this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
58 | this.logTabPage = new System.Windows.Forms.TabPage();
|
---|
59 | this.logView = new HeuristicLab.Core.Views.LogView();
|
---|
60 | this.startButton = new System.Windows.Forms.Button();
|
---|
61 | this.stopButton = new System.Windows.Forms.Button();
|
---|
62 | this.resetButton = new System.Windows.Forms.Button();
|
---|
63 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
64 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
65 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
66 | this.ServerUrlLabel = new System.Windows.Forms.Label();
|
---|
67 | this.resourceIdsLabel = new System.Windows.Forms.Label();
|
---|
68 | this.serverUrlTextBox = new System.Windows.Forms.TextBox();
|
---|
69 | this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
|
---|
70 | this.disconnectButton = new System.Windows.Forms.Button();
|
---|
71 | this.reconnectButton = new System.Windows.Forms.Button();
|
---|
72 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
73 | this.tabControl.SuspendLayout();
|
---|
74 | this.experimentTabPage.SuspendLayout();
|
---|
75 | this.hiveStatusTabPage.SuspendLayout();
|
---|
76 | this.runsTabPage.SuspendLayout();
|
---|
77 | this.logTabPage.SuspendLayout();
|
---|
78 | this.SuspendLayout();
|
---|
79 | //
|
---|
80 | // nameTextBox
|
---|
81 | //
|
---|
82 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
83 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
84 | this.nameTextBox.Size = new System.Drawing.Size(663, 20);
|
---|
85 | //
|
---|
86 | // descriptionTextBox
|
---|
87 | //
|
---|
88 | this.descriptionTextBox.Size = new System.Drawing.Size(663, 20);
|
---|
89 | //
|
---|
90 | // tabControl
|
---|
91 | //
|
---|
92 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
93 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
94 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
95 | this.tabControl.Controls.Add(this.experimentTabPage);
|
---|
96 | this.tabControl.Controls.Add(this.hiveStatusTabPage);
|
---|
97 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
98 | this.tabControl.Controls.Add(this.logTabPage);
|
---|
99 | this.tabControl.Location = new System.Drawing.Point(0, 99);
|
---|
100 | this.tabControl.Name = "tabControl";
|
---|
101 | this.tabControl.SelectedIndex = 0;
|
---|
102 | this.tabControl.Size = new System.Drawing.Size(735, 395);
|
---|
103 | this.tabControl.TabIndex = 4;
|
---|
104 | //
|
---|
105 | // experimentTabPage
|
---|
106 | //
|
---|
107 | this.experimentTabPage.Controls.Add(this.openExperimentButton);
|
---|
108 | this.experimentTabPage.Controls.Add(this.newExperimentButton);
|
---|
109 | this.experimentTabPage.Controls.Add(this.experimentNamedItemView);
|
---|
110 | this.experimentTabPage.Controls.Add(this.viewExperimentButton);
|
---|
111 | this.experimentTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
112 | this.experimentTabPage.Name = "experimentTabPage";
|
---|
113 | this.experimentTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
114 | this.experimentTabPage.Size = new System.Drawing.Size(727, 369);
|
---|
115 | this.experimentTabPage.TabIndex = 1;
|
---|
116 | this.experimentTabPage.Text = "Experiment";
|
---|
117 | this.experimentTabPage.UseVisualStyleBackColor = true;
|
---|
118 | //
|
---|
119 | // openExperimentButton
|
---|
120 | //
|
---|
121 | this.openExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("openExperimentButton.Image")));
|
---|
122 | this.openExperimentButton.Location = new System.Drawing.Point(36, 6);
|
---|
123 | this.openExperimentButton.Name = "openExperimentButton";
|
---|
124 | this.openExperimentButton.Size = new System.Drawing.Size(24, 24);
|
---|
125 | this.openExperimentButton.TabIndex = 5;
|
---|
126 | this.toolTip.SetToolTip(this.openExperimentButton, "Open Experiment");
|
---|
127 | this.openExperimentButton.UseVisualStyleBackColor = true;
|
---|
128 | this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click);
|
---|
129 | //
|
---|
130 | // newExperimentButton
|
---|
131 | //
|
---|
132 | this.newExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("newExperimentButton.Image")));
|
---|
133 | this.newExperimentButton.Location = new System.Drawing.Point(6, 6);
|
---|
134 | this.newExperimentButton.Name = "newExperimentButton";
|
---|
135 | this.newExperimentButton.Size = new System.Drawing.Size(24, 24);
|
---|
136 | this.newExperimentButton.TabIndex = 4;
|
---|
137 | this.toolTip.SetToolTip(this.newExperimentButton, "New Experiment");
|
---|
138 | this.newExperimentButton.UseVisualStyleBackColor = true;
|
---|
139 | this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click);
|
---|
140 | //
|
---|
141 | // experimentNamedItemView
|
---|
142 | //
|
---|
143 | this.experimentNamedItemView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
144 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
145 | this.experimentNamedItemView.Caption = "NamedItem View";
|
---|
146 | this.experimentNamedItemView.Content = null;
|
---|
147 | this.experimentNamedItemView.Location = new System.Drawing.Point(3, 36);
|
---|
148 | this.experimentNamedItemView.Name = "experimentNamedItemView";
|
---|
149 | this.experimentNamedItemView.ReadOnly = false;
|
---|
150 | this.experimentNamedItemView.Size = new System.Drawing.Size(721, 52);
|
---|
151 | this.experimentNamedItemView.TabIndex = 3;
|
---|
152 | //
|
---|
153 | // viewExperimentButton
|
---|
154 | //
|
---|
155 | this.viewExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
156 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
157 | this.viewExperimentButton.Location = new System.Drawing.Point(0, 94);
|
---|
158 | this.viewExperimentButton.Name = "viewExperimentButton";
|
---|
159 | this.viewExperimentButton.Size = new System.Drawing.Size(727, 23);
|
---|
160 | this.viewExperimentButton.TabIndex = 1;
|
---|
161 | this.viewExperimentButton.Text = "&Show Experiment";
|
---|
162 | this.viewExperimentButton.UseVisualStyleBackColor = true;
|
---|
163 | this.viewExperimentButton.Click += new System.EventHandler(this.showExperimentButton_Click);
|
---|
164 | //
|
---|
165 | // hiveStatusTabPage
|
---|
166 | //
|
---|
167 | this.hiveStatusTabPage.Controls.Add(this.jobListView);
|
---|
168 | this.hiveStatusTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
169 | this.hiveStatusTabPage.Name = "hiveStatusTabPage";
|
---|
170 | this.hiveStatusTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
171 | this.hiveStatusTabPage.Size = new System.Drawing.Size(727, 369);
|
---|
172 | this.hiveStatusTabPage.TabIndex = 2;
|
---|
173 | this.hiveStatusTabPage.Text = "HiveStatus";
|
---|
174 | this.hiveStatusTabPage.UseVisualStyleBackColor = true;
|
---|
175 | //
|
---|
176 | // jobListView
|
---|
177 | //
|
---|
178 | this.jobListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
179 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
180 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
181 | this.jobListView.Caption = "JobList View";
|
---|
182 | this.jobListView.Content = null;
|
---|
183 | this.jobListView.Location = new System.Drawing.Point(3, 6);
|
---|
184 | this.jobListView.Name = "jobListView";
|
---|
185 | this.jobListView.ReadOnly = false;
|
---|
186 | this.jobListView.Size = new System.Drawing.Size(721, 360);
|
---|
187 | this.jobListView.TabIndex = 0;
|
---|
188 | //
|
---|
189 | // runsTabPage
|
---|
190 | //
|
---|
191 | this.runsTabPage.Controls.Add(this.runCollectionView);
|
---|
192 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
193 | this.runsTabPage.Name = "runsTabPage";
|
---|
194 | this.runsTabPage.Size = new System.Drawing.Size(727, 369);
|
---|
195 | this.runsTabPage.TabIndex = 4;
|
---|
196 | this.runsTabPage.Text = "Runs";
|
---|
197 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
198 | //
|
---|
199 | // runCollectionView
|
---|
200 | //
|
---|
201 | this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
202 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
203 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
204 | this.runCollectionView.Caption = "RunCollection View";
|
---|
205 | this.runCollectionView.Content = null;
|
---|
206 | this.runCollectionView.Location = new System.Drawing.Point(0, 3);
|
---|
207 | this.runCollectionView.Name = "runCollectionView";
|
---|
208 | this.runCollectionView.ReadOnly = false;
|
---|
209 | this.runCollectionView.Size = new System.Drawing.Size(727, 366);
|
---|
210 | this.runCollectionView.TabIndex = 0;
|
---|
211 | //
|
---|
212 | // logTabPage
|
---|
213 | //
|
---|
214 | this.logTabPage.Controls.Add(this.logView);
|
---|
215 | this.logTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
216 | this.logTabPage.Name = "logTabPage";
|
---|
217 | this.logTabPage.Size = new System.Drawing.Size(727, 369);
|
---|
218 | this.logTabPage.TabIndex = 3;
|
---|
219 | this.logTabPage.Text = "Log";
|
---|
220 | this.logTabPage.UseVisualStyleBackColor = true;
|
---|
221 | //
|
---|
222 | // logView
|
---|
223 | //
|
---|
224 | this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
225 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
226 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
227 | this.logView.Caption = "Log View";
|
---|
228 | this.logView.Content = null;
|
---|
229 | this.logView.Location = new System.Drawing.Point(3, 4);
|
---|
230 | this.logView.Name = "logView";
|
---|
231 | this.logView.ReadOnly = false;
|
---|
232 | this.logView.Size = new System.Drawing.Size(721, 362);
|
---|
233 | this.logView.TabIndex = 0;
|
---|
234 | //
|
---|
235 | // startButton
|
---|
236 | //
|
---|
237 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
238 | this.startButton.Image = ((System.Drawing.Image)(resources.GetObject("startButton.Image")));
|
---|
239 | this.startButton.Location = new System.Drawing.Point(0, 500);
|
---|
240 | this.startButton.Name = "startButton";
|
---|
241 | this.startButton.Size = new System.Drawing.Size(24, 24);
|
---|
242 | this.startButton.TabIndex = 5;
|
---|
243 | this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
|
---|
244 | this.startButton.UseVisualStyleBackColor = true;
|
---|
245 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
246 | //
|
---|
247 | // stopButton
|
---|
248 | //
|
---|
249 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
250 | this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
|
---|
251 | this.stopButton.Location = new System.Drawing.Point(60, 500);
|
---|
252 | this.stopButton.Name = "stopButton";
|
---|
253 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
254 | this.stopButton.TabIndex = 7;
|
---|
255 | this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
|
---|
256 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
257 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
258 | //
|
---|
259 | // resetButton
|
---|
260 | //
|
---|
261 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
262 | this.resetButton.Enabled = false;
|
---|
263 | this.resetButton.Image = ((System.Drawing.Image)(resources.GetObject("resetButton.Image")));
|
---|
264 | this.resetButton.Location = new System.Drawing.Point(90, 500);
|
---|
265 | this.resetButton.Name = "resetButton";
|
---|
266 | this.resetButton.Size = new System.Drawing.Size(24, 24);
|
---|
267 | this.resetButton.TabIndex = 8;
|
---|
268 | this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
|
---|
269 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
270 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
271 | //
|
---|
272 | // executionTimeLabel
|
---|
273 | //
|
---|
274 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
275 | this.executionTimeLabel.AutoSize = true;
|
---|
276 | this.executionTimeLabel.Location = new System.Drawing.Point(509, 507);
|
---|
277 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
278 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
279 | this.executionTimeLabel.TabIndex = 9;
|
---|
280 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
281 | //
|
---|
282 | // executionTimeTextBox
|
---|
283 | //
|
---|
284 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
285 | this.executionTimeTextBox.Location = new System.Drawing.Point(598, 504);
|
---|
286 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
287 | this.executionTimeTextBox.ReadOnly = true;
|
---|
288 | this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
289 | this.executionTimeTextBox.TabIndex = 10;
|
---|
290 | //
|
---|
291 | // pauseButton
|
---|
292 | //
|
---|
293 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
294 | this.pauseButton.Enabled = false;
|
---|
295 | this.pauseButton.Image = ((System.Drawing.Image)(resources.GetObject("pauseButton.Image")));
|
---|
296 | this.pauseButton.Location = new System.Drawing.Point(30, 500);
|
---|
297 | this.pauseButton.Name = "pauseButton";
|
---|
298 | this.pauseButton.Size = new System.Drawing.Size(24, 24);
|
---|
299 | this.pauseButton.TabIndex = 6;
|
---|
300 | this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
|
---|
301 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
302 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
303 | //
|
---|
304 | // ServerUrlLabel
|
---|
305 | //
|
---|
306 | this.ServerUrlLabel.AutoSize = true;
|
---|
307 | this.ServerUrlLabel.Location = new System.Drawing.Point(1, 53);
|
---|
308 | this.ServerUrlLabel.Name = "ServerUrlLabel";
|
---|
309 | this.ServerUrlLabel.Size = new System.Drawing.Size(51, 13);
|
---|
310 | this.ServerUrlLabel.TabIndex = 11;
|
---|
311 | this.ServerUrlLabel.Text = "ServerUrl";
|
---|
312 | //
|
---|
313 | // resourceIdsLabel
|
---|
314 | //
|
---|
315 | this.resourceIdsLabel.AutoSize = true;
|
---|
316 | this.resourceIdsLabel.Location = new System.Drawing.Point(3, 76);
|
---|
317 | this.resourceIdsLabel.Name = "resourceIdsLabel";
|
---|
318 | this.resourceIdsLabel.Size = new System.Drawing.Size(67, 13);
|
---|
319 | this.resourceIdsLabel.TabIndex = 12;
|
---|
320 | this.resourceIdsLabel.Text = "ResourceIds";
|
---|
321 | //
|
---|
322 | // serverUrlTextBox
|
---|
323 | //
|
---|
324 | this.serverUrlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
325 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
326 | this.serverUrlTextBox.Location = new System.Drawing.Point(72, 50);
|
---|
327 | this.serverUrlTextBox.Name = "serverUrlTextBox";
|
---|
328 | this.serverUrlTextBox.Size = new System.Drawing.Size(663, 20);
|
---|
329 | this.serverUrlTextBox.TabIndex = 13;
|
---|
330 | this.serverUrlTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.serverUrlTextBox_Validating);
|
---|
331 | this.serverUrlTextBox.Validated += new System.EventHandler(this.serverUrlTextBox_Validated);
|
---|
332 | //
|
---|
333 | // resourceIdsTextBox
|
---|
334 | //
|
---|
335 | this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
336 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
337 | this.resourceIdsTextBox.Location = new System.Drawing.Point(72, 73);
|
---|
338 | this.resourceIdsTextBox.Name = "resourceIdsTextBox";
|
---|
339 | this.resourceIdsTextBox.Size = new System.Drawing.Size(663, 20);
|
---|
340 | this.resourceIdsTextBox.TabIndex = 14;
|
---|
341 | this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
|
---|
342 | //
|
---|
343 | // disconnectButton
|
---|
344 | //
|
---|
345 | this.disconnectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
346 | this.disconnectButton.Enabled = false;
|
---|
347 | this.disconnectButton.Location = new System.Drawing.Point(131, 500);
|
---|
348 | this.disconnectButton.Name = "disconnectButton";
|
---|
349 | this.disconnectButton.Size = new System.Drawing.Size(120, 24);
|
---|
350 | this.disconnectButton.TabIndex = 15;
|
---|
351 | this.disconnectButton.Text = "Disconnect from Hive";
|
---|
352 | this.toolTip.SetToolTip(this.disconnectButton, "Disconnect from Hive (Jobs will be continue to be calculated)");
|
---|
353 | this.disconnectButton.UseVisualStyleBackColor = true;
|
---|
354 | this.disconnectButton.Click += new System.EventHandler(this.disconnectButton_Click);
|
---|
355 | //
|
---|
356 | // reconnectButton
|
---|
357 | //
|
---|
358 | this.reconnectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
359 | this.reconnectButton.Enabled = false;
|
---|
360 | this.reconnectButton.Location = new System.Drawing.Point(257, 500);
|
---|
361 | this.reconnectButton.Name = "reconnectButton";
|
---|
362 | this.reconnectButton.Size = new System.Drawing.Size(77, 24);
|
---|
363 | this.reconnectButton.TabIndex = 16;
|
---|
364 | this.reconnectButton.Text = "Reconnect";
|
---|
365 | this.toolTip.SetToolTip(this.reconnectButton, "Reconnect to Hive");
|
---|
366 | this.reconnectButton.UseVisualStyleBackColor = true;
|
---|
367 | this.reconnectButton.Click += new System.EventHandler(this.reconnectButton_Click);
|
---|
368 | //
|
---|
369 | // HiveExperimentView
|
---|
370 | //
|
---|
371 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
372 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
373 | this.Controls.Add(this.resourceIdsTextBox);
|
---|
374 | this.Controls.Add(this.serverUrlTextBox);
|
---|
375 | this.Controls.Add(this.resourceIdsLabel);
|
---|
376 | this.Controls.Add(this.tabControl);
|
---|
377 | this.Controls.Add(this.disconnectButton);
|
---|
378 | this.Controls.Add(this.startButton);
|
---|
379 | this.Controls.Add(this.executionTimeTextBox);
|
---|
380 | this.Controls.Add(this.executionTimeLabel);
|
---|
381 | this.Controls.Add(this.ServerUrlLabel);
|
---|
382 | this.Controls.Add(this.pauseButton);
|
---|
383 | this.Controls.Add(this.stopButton);
|
---|
384 | this.Controls.Add(this.resetButton);
|
---|
385 | this.Controls.Add(this.reconnectButton);
|
---|
386 | this.Name = "HiveExperimentView";
|
---|
387 | this.Size = new System.Drawing.Size(735, 524);
|
---|
388 | this.Controls.SetChildIndex(this.reconnectButton, 0);
|
---|
389 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
390 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
391 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
392 | this.Controls.SetChildIndex(this.ServerUrlLabel, 0);
|
---|
393 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
394 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
395 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
396 | this.Controls.SetChildIndex(this.disconnectButton, 0);
|
---|
397 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
398 | this.Controls.SetChildIndex(this.resourceIdsLabel, 0);
|
---|
399 | this.Controls.SetChildIndex(this.serverUrlTextBox, 0);
|
---|
400 | this.Controls.SetChildIndex(this.resourceIdsTextBox, 0);
|
---|
401 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
402 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
403 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
404 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
405 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
406 | this.tabControl.ResumeLayout(false);
|
---|
407 | this.experimentTabPage.ResumeLayout(false);
|
---|
408 | this.hiveStatusTabPage.ResumeLayout(false);
|
---|
409 | this.runsTabPage.ResumeLayout(false);
|
---|
410 | this.logTabPage.ResumeLayout(false);
|
---|
411 | this.ResumeLayout(false);
|
---|
412 | this.PerformLayout();
|
---|
413 |
|
---|
414 | }
|
---|
415 | #endregion
|
---|
416 |
|
---|
417 | private System.Windows.Forms.TabControl tabControl;
|
---|
418 | private System.Windows.Forms.TabPage experimentTabPage;
|
---|
419 | private System.Windows.Forms.Button startButton;
|
---|
420 | private System.Windows.Forms.Button stopButton;
|
---|
421 | private System.Windows.Forms.Button resetButton;
|
---|
422 | private System.Windows.Forms.Label executionTimeLabel;
|
---|
423 | private System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
424 | private System.Windows.Forms.Button pauseButton;
|
---|
425 | private System.Windows.Forms.TabPage hiveStatusTabPage;
|
---|
426 | private System.Windows.Forms.Label ServerUrlLabel;
|
---|
427 | private System.Windows.Forms.Label resourceIdsLabel;
|
---|
428 | private System.Windows.Forms.TextBox serverUrlTextBox;
|
---|
429 | private System.Windows.Forms.TextBox resourceIdsTextBox;
|
---|
430 | private System.Windows.Forms.Button viewExperimentButton;
|
---|
431 | private Core.Views.NamedItemView experimentNamedItemView;
|
---|
432 | private System.Windows.Forms.TabPage logTabPage;
|
---|
433 | private Core.Views.LogView logView;
|
---|
434 | private JobItemListView jobListView;
|
---|
435 | private System.Windows.Forms.Button disconnectButton;
|
---|
436 | private System.Windows.Forms.Button reconnectButton;
|
---|
437 | protected System.Windows.Forms.Button openExperimentButton;
|
---|
438 | protected System.Windows.Forms.Button newExperimentButton;
|
---|
439 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
440 | private Optimization.Views.RunCollectionView runCollectionView;
|
---|
441 |
|
---|
442 | }
|
---|
443 | }
|
---|