Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.Designer.cs @ 7270

Last change on this file since 7270 was 7270, checked in by spimming, 12 years ago

#1680:

  • merged changes from trunk into branch
File size: 26.5 KB
Line 
1namespace HeuristicLab.Clients.Hive.JobManager.Views {
2  partial class RefreshableHiveJobView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing) {
14        if (components != null) components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.tabControl = new System.Windows.Forms.TabControl();
28      this.tasksTabPage = new System.Windows.Forms.TabPage();
29      this.jobsTreeView = new HeuristicLab.Clients.Hive.Views.HiveTaskItemTreeView();
30      this.permissionTabPage = new System.Windows.Forms.TabPage();
31      this.refreshPermissionsButton = new System.Windows.Forms.Button();
32      this.hiveExperimentPermissionListView = new HeuristicLab.Clients.Hive.JobManager.Views.HiveJobPermissionListView();
33      this.runsTabPage = new System.Windows.Forms.TabPage();
34      this.runCollectionViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
35      this.stateTabPage = new System.Windows.Forms.TabPage();
36      this.stateLogViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
37      this.logTabPage = new System.Windows.Forms.TabPage();
38      this.logView = new HeuristicLab.Core.Views.LogView();
39      this.startButton = new System.Windows.Forms.Button();
40      this.stopButton = new System.Windows.Forms.Button();
41      this.resetButton = new System.Windows.Forms.Button();
42      this.executionTimeLabel = new System.Windows.Forms.Label();
43      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
44      this.pauseButton = new System.Windows.Forms.Button();
45      this.resourceIdsLabel = new System.Windows.Forms.Label();
46      this.resourceNamesTextBox = new System.Windows.Forms.TextBox();
47      this.nameLabel = new System.Windows.Forms.Label();
48      this.nameTextBox = new System.Windows.Forms.TextBox();
49      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
50      this.refreshButton = new System.Windows.Forms.Button();
51      this.isPrivilegedCheckBox = new System.Windows.Forms.CheckBox();
52      this.refreshAutomaticallyCheckBox = new System.Windows.Forms.CheckBox();
53      this.infoGroupBox = new System.Windows.Forms.GroupBox();
54      this.finishedTextBox = new System.Windows.Forms.TextBox();
55      this.calculatingTextBox = new System.Windows.Forms.TextBox();
56      this.jobsTextBox = new System.Windows.Forms.TextBox();
57      this.finishedLabel = new System.Windows.Forms.Label();
58      this.calculatingLabel = new System.Windows.Forms.Label();
59      this.jobsLabel = new System.Windows.Forms.Label();
60      this.tabControl.SuspendLayout();
61      this.tasksTabPage.SuspendLayout();
62      this.permissionTabPage.SuspendLayout();
63      this.runsTabPage.SuspendLayout();
64      this.stateTabPage.SuspendLayout();
65      this.logTabPage.SuspendLayout();
66      this.infoGroupBox.SuspendLayout();
67      this.SuspendLayout();
68      //
69      // tabControl
70      //
71      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
72                  | System.Windows.Forms.AnchorStyles.Left)
73                  | System.Windows.Forms.AnchorStyles.Right)));
74      this.tabControl.Controls.Add(this.tasksTabPage);
75      this.tabControl.Controls.Add(this.permissionTabPage);
76      this.tabControl.Controls.Add(this.runsTabPage);
77      this.tabControl.Controls.Add(this.stateTabPage);
78      this.tabControl.Controls.Add(this.logTabPage);
79      this.tabControl.Location = new System.Drawing.Point(0, 78);
80      this.tabControl.Name = "tabControl";
81      this.tabControl.SelectedIndex = 0;
82      this.tabControl.Size = new System.Drawing.Size(717, 452);
83      this.tabControl.TabIndex = 4;
84      this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
85      //
86      // tasksTabPage
87      //
88      this.tasksTabPage.Controls.Add(this.jobsTreeView);
89      this.tasksTabPage.Location = new System.Drawing.Point(4, 22);
90      this.tasksTabPage.Name = "tasksTabPage";
91      this.tasksTabPage.Size = new System.Drawing.Size(709, 426);
92      this.tasksTabPage.TabIndex = 5;
93      this.tasksTabPage.Text = "Tasks";
94      this.tasksTabPage.UseVisualStyleBackColor = true;
95      //
96      // jobsTreeView
97      //
98      this.jobsTreeView.AllowDrop = true;
99      this.jobsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
100                  | System.Windows.Forms.AnchorStyles.Left)
101                  | System.Windows.Forms.AnchorStyles.Right)));
102      this.jobsTreeView.Caption = "ItemTree View";
103      this.jobsTreeView.Content = null;
104      this.jobsTreeView.Location = new System.Drawing.Point(2, 3);
105      this.jobsTreeView.Name = "jobsTreeView";
106      this.jobsTreeView.ReadOnly = false;
107      this.jobsTreeView.Size = new System.Drawing.Size(704, 420);
108      this.jobsTreeView.TabIndex = 4;
109      this.jobsTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragDrop);
110      this.jobsTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragEnter);
111      this.jobsTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragOver);
112      //
113      // permissionTabPage
114      //
115      this.permissionTabPage.Controls.Add(this.refreshPermissionsButton);
116      this.permissionTabPage.Controls.Add(this.hiveExperimentPermissionListView);
117      this.permissionTabPage.Location = new System.Drawing.Point(4, 22);
118      this.permissionTabPage.Name = "permissionTabPage";
119      this.permissionTabPage.Size = new System.Drawing.Size(709, 426);
120      this.permissionTabPage.TabIndex = 7;
121      this.permissionTabPage.Text = "Permissions";
122      this.permissionTabPage.UseVisualStyleBackColor = true;
123      //
124      // refreshPermissionsButton
125      //
126      this.refreshPermissionsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
127      this.refreshPermissionsButton.Location = new System.Drawing.Point(3, 3);
128      this.refreshPermissionsButton.Name = "refreshPermissionsButton";
129      this.refreshPermissionsButton.Size = new System.Drawing.Size(24, 24);
130      this.refreshPermissionsButton.TabIndex = 23;
131      this.toolTip.SetToolTip(this.refreshPermissionsButton, "Refresh Data");
132      this.refreshPermissionsButton.UseVisualStyleBackColor = true;
133      this.refreshPermissionsButton.Click += new System.EventHandler(this.refreshPermissionsButton_Click);
134      //
135      // hiveExperimentPermissionListView
136      //
137      this.hiveExperimentPermissionListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
138                  | System.Windows.Forms.AnchorStyles.Left)
139                  | System.Windows.Forms.AnchorStyles.Right)));
140      this.hiveExperimentPermissionListView.Caption = "HiveExperimentPermissionList View";
141      this.hiveExperimentPermissionListView.Content = null;
142      this.hiveExperimentPermissionListView.HiveExperimentId = new System.Guid("00000000-0000-0000-0000-000000000000");
143      this.hiveExperimentPermissionListView.Location = new System.Drawing.Point(3, 33);
144      this.hiveExperimentPermissionListView.Name = "hiveExperimentPermissionListView";
145      this.hiveExperimentPermissionListView.ReadOnly = false;
146      this.hiveExperimentPermissionListView.ShowDetails = true;
147      this.hiveExperimentPermissionListView.Size = new System.Drawing.Size(703, 390);
148      this.hiveExperimentPermissionListView.TabIndex = 0;
149      //
150      // runsTabPage
151      //
152      this.runsTabPage.Controls.Add(this.runCollectionViewHost);
153      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
154      this.runsTabPage.Name = "runsTabPage";
155      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
156      this.runsTabPage.Size = new System.Drawing.Size(709, 426);
157      this.runsTabPage.TabIndex = 8;
158      this.runsTabPage.Text = "Runs";
159      this.runsTabPage.UseVisualStyleBackColor = true;
160      //
161      // runCollectionViewHost
162      //
163      this.runCollectionViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
164                  | System.Windows.Forms.AnchorStyles.Left)
165                  | System.Windows.Forms.AnchorStyles.Right)));
166      this.runCollectionViewHost.Caption = "View";
167      this.runCollectionViewHost.Content = null;
168      this.runCollectionViewHost.Enabled = false;
169      this.runCollectionViewHost.Location = new System.Drawing.Point(3, 3);
170      this.runCollectionViewHost.Name = "runCollectionViewHost";
171      this.runCollectionViewHost.ReadOnly = false;
172      this.runCollectionViewHost.Size = new System.Drawing.Size(703, 420);
173      this.runCollectionViewHost.TabIndex = 2;
174      this.runCollectionViewHost.ViewsLabelVisible = true;
175      this.runCollectionViewHost.ViewType = null;
176      //
177      // stateTabPage
178      //
179      this.stateTabPage.Controls.Add(this.stateLogViewHost);
180      this.stateTabPage.Location = new System.Drawing.Point(4, 22);
181      this.stateTabPage.Name = "stateTabPage";
182      this.stateTabPage.Size = new System.Drawing.Size(709, 426);
183      this.stateTabPage.TabIndex = 6;
184      this.stateTabPage.Text = "Execution History";
185      this.stateTabPage.UseVisualStyleBackColor = true;
186      //
187      // stateLogViewHost
188      //
189      this.stateLogViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
190                  | System.Windows.Forms.AnchorStyles.Left)
191                  | System.Windows.Forms.AnchorStyles.Right)));
192      this.stateLogViewHost.Caption = "StateLog View";
193      this.stateLogViewHost.Content = null;
194      this.stateLogViewHost.Enabled = false;
195      this.stateLogViewHost.Location = new System.Drawing.Point(3, 3);
196      this.stateLogViewHost.Name = "stateLogViewHost";
197      this.stateLogViewHost.ReadOnly = false;
198      this.stateLogViewHost.Size = new System.Drawing.Size(703, 420);
199      this.stateLogViewHost.TabIndex = 0;
200      this.stateLogViewHost.ViewsLabelVisible = true;
201      this.stateLogViewHost.ViewType = null;
202      //
203      // logTabPage
204      //
205      this.logTabPage.Controls.Add(this.logView);
206      this.logTabPage.Location = new System.Drawing.Point(4, 22);
207      this.logTabPage.Name = "logTabPage";
208      this.logTabPage.Size = new System.Drawing.Size(709, 426);
209      this.logTabPage.TabIndex = 3;
210      this.logTabPage.Text = "Log";
211      this.logTabPage.UseVisualStyleBackColor = true;
212      //
213      // logView
214      //
215      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
216                  | System.Windows.Forms.AnchorStyles.Left)
217                  | System.Windows.Forms.AnchorStyles.Right)));
218      this.logView.Caption = "Log View";
219      this.logView.Content = null;
220      this.logView.Location = new System.Drawing.Point(3, 3);
221      this.logView.Name = "logView";
222      this.logView.ReadOnly = false;
223      this.logView.Size = new System.Drawing.Size(703, 420);
224      this.logView.TabIndex = 0;
225      //
226      // startButton
227      //
228      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
229      this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
230      this.startButton.Location = new System.Drawing.Point(0, 536);
231      this.startButton.Name = "startButton";
232      this.startButton.Size = new System.Drawing.Size(24, 24);
233      this.startButton.TabIndex = 5;
234      this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
235      this.startButton.UseVisualStyleBackColor = true;
236      this.startButton.Click += new System.EventHandler(this.startButton_Click);
237      //
238      // stopButton
239      //
240      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
241      this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
242      this.stopButton.Location = new System.Drawing.Point(60, 536);
243      this.stopButton.Name = "stopButton";
244      this.stopButton.Size = new System.Drawing.Size(24, 24);
245      this.stopButton.TabIndex = 7;
246      this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
247      this.stopButton.UseVisualStyleBackColor = true;
248      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
249      //
250      // resetButton
251      //
252      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
253      this.resetButton.Enabled = false;
254      this.resetButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Restart;
255      this.resetButton.Location = new System.Drawing.Point(90, 536);
256      this.resetButton.Name = "resetButton";
257      this.resetButton.Size = new System.Drawing.Size(24, 24);
258      this.resetButton.TabIndex = 8;
259      this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
260      this.resetButton.UseVisualStyleBackColor = true;
261      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
262      //
263      // executionTimeLabel
264      //
265      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
266      this.executionTimeLabel.AutoSize = true;
267      this.executionTimeLabel.Location = new System.Drawing.Point(491, 543);
268      this.executionTimeLabel.Name = "executionTimeLabel";
269      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
270      this.executionTimeLabel.TabIndex = 9;
271      this.executionTimeLabel.Text = "&Execution Time:";
272      //
273      // executionTimeTextBox
274      //
275      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
276      this.executionTimeTextBox.Location = new System.Drawing.Point(580, 540);
277      this.executionTimeTextBox.Name = "executionTimeTextBox";
278      this.executionTimeTextBox.ReadOnly = true;
279      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
280      this.executionTimeTextBox.TabIndex = 10;
281      //
282      // pauseButton
283      //
284      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
285      this.pauseButton.Enabled = false;
286      this.pauseButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pause;
287      this.pauseButton.Location = new System.Drawing.Point(30, 536);
288      this.pauseButton.Name = "pauseButton";
289      this.pauseButton.Size = new System.Drawing.Size(24, 24);
290      this.pauseButton.TabIndex = 6;
291      this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
292      this.pauseButton.UseVisualStyleBackColor = true;
293      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
294      //
295      // resourceIdsLabel
296      //
297      this.resourceIdsLabel.AutoSize = true;
298      this.resourceIdsLabel.Location = new System.Drawing.Point(3, 56);
299      this.resourceIdsLabel.Name = "resourceIdsLabel";
300      this.resourceIdsLabel.Size = new System.Drawing.Size(61, 13);
301      this.resourceIdsLabel.TabIndex = 12;
302      this.resourceIdsLabel.Text = "Resources:";
303      //
304      // resourceNamesTextBox
305      //
306      this.resourceNamesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
307                  | System.Windows.Forms.AnchorStyles.Right)));
308      this.resourceNamesTextBox.Location = new System.Drawing.Point(70, 52);
309      this.resourceNamesTextBox.Name = "resourceNamesTextBox";
310      this.resourceNamesTextBox.Size = new System.Drawing.Size(415, 20);
311      this.resourceNamesTextBox.TabIndex = 2;
312      this.resourceNamesTextBox.Validated += new System.EventHandler(this.resourceNamesTextBox_Validated);
313      //
314      // nameLabel
315      //
316      this.nameLabel.AutoSize = true;
317      this.nameLabel.Location = new System.Drawing.Point(3, 30);
318      this.nameLabel.Name = "nameLabel";
319      this.nameLabel.Size = new System.Drawing.Size(38, 13);
320      this.nameLabel.TabIndex = 20;
321      this.nameLabel.Text = "Name:";
322      //
323      // nameTextBox
324      //
325      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
326                  | System.Windows.Forms.AnchorStyles.Right)));
327      this.nameTextBox.Location = new System.Drawing.Point(70, 27);
328      this.nameTextBox.Name = "nameTextBox";
329      this.nameTextBox.Size = new System.Drawing.Size(501, 20);
330      this.nameTextBox.TabIndex = 1;
331      this.nameTextBox.Validated += new System.EventHandler(this.nameTextBox_Validated);
332      //
333      // refreshButton
334      //
335      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
336      this.refreshButton.Location = new System.Drawing.Point(3, 0);
337      this.refreshButton.Name = "refreshButton";
338      this.refreshButton.Size = new System.Drawing.Size(24, 24);
339      this.refreshButton.TabIndex = 22;
340      this.toolTip.SetToolTip(this.refreshButton, "Refresh Data");
341      this.refreshButton.UseVisualStyleBackColor = true;
342      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
343      //
344      // isPrivilegedCheckBox
345      //
346      this.isPrivilegedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
347      this.isPrivilegedCheckBox.AutoSize = true;
348      this.isPrivilegedCheckBox.Location = new System.Drawing.Point(491, 53);
349      this.isPrivilegedCheckBox.Name = "isPrivilegedCheckBox";
350      this.isPrivilegedCheckBox.Size = new System.Drawing.Size(72, 17);
351      this.isPrivilegedCheckBox.TabIndex = 3;
352      this.isPrivilegedCheckBox.Text = "Privileged";
353      this.toolTip.SetToolTip(this.isPrivilegedCheckBox, "If checked, the task will be executed in a privileged sandbox on the slave.");
354      this.isPrivilegedCheckBox.UseVisualStyleBackColor = true;
355      this.isPrivilegedCheckBox.Validated += new System.EventHandler(this.isPrivilegedCheckBox_Validated);
356      //
357      // refreshAutomaticallyCheckBox
358      //
359      this.refreshAutomaticallyCheckBox.AutoSize = true;
360      this.refreshAutomaticallyCheckBox.Location = new System.Drawing.Point(30, 5);
361      this.refreshAutomaticallyCheckBox.Name = "refreshAutomaticallyCheckBox";
362      this.refreshAutomaticallyCheckBox.Size = new System.Drawing.Size(127, 17);
363      this.refreshAutomaticallyCheckBox.TabIndex = 24;
364      this.refreshAutomaticallyCheckBox.Text = "&Refresh automatically";
365      this.refreshAutomaticallyCheckBox.UseVisualStyleBackColor = true;
366      this.refreshAutomaticallyCheckBox.Validated += new System.EventHandler(this.refreshAutomaticallyCheckBox_Validated);
367      //
368      // infoGroupBox
369      //
370      this.infoGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
371      this.infoGroupBox.Controls.Add(this.finishedTextBox);
372      this.infoGroupBox.Controls.Add(this.calculatingTextBox);
373      this.infoGroupBox.Controls.Add(this.jobsTextBox);
374      this.infoGroupBox.Controls.Add(this.finishedLabel);
375      this.infoGroupBox.Controls.Add(this.calculatingLabel);
376      this.infoGroupBox.Controls.Add(this.jobsLabel);
377      this.infoGroupBox.Location = new System.Drawing.Point(580, 5);
378      this.infoGroupBox.Name = "infoGroupBox";
379      this.infoGroupBox.Size = new System.Drawing.Size(133, 89);
380      this.infoGroupBox.TabIndex = 25;
381      this.infoGroupBox.TabStop = false;
382      this.infoGroupBox.Text = "Tasks";
383      //
384      // finishedTextBox
385      //
386      this.finishedTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
387                  | System.Windows.Forms.AnchorStyles.Right)));
388      this.finishedTextBox.Location = new System.Drawing.Point(74, 64);
389      this.finishedTextBox.Name = "finishedTextBox";
390      this.finishedTextBox.Size = new System.Drawing.Size(53, 20);
391      this.finishedTextBox.TabIndex = 5;
392      //
393      // calculatingTextBox
394      //
395      this.calculatingTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
396                  | System.Windows.Forms.AnchorStyles.Right)));
397      this.calculatingTextBox.Location = new System.Drawing.Point(74, 40);
398      this.calculatingTextBox.Name = "calculatingTextBox";
399      this.calculatingTextBox.Size = new System.Drawing.Size(53, 20);
400      this.calculatingTextBox.TabIndex = 4;
401      //
402      // jobsTextBox
403      //
404      this.jobsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
405                  | System.Windows.Forms.AnchorStyles.Right)));
406      this.jobsTextBox.Location = new System.Drawing.Point(74, 16);
407      this.jobsTextBox.Name = "jobsTextBox";
408      this.jobsTextBox.Size = new System.Drawing.Size(53, 20);
409      this.jobsTextBox.TabIndex = 3;
410      //
411      // finishedLabel
412      //
413      this.finishedLabel.AutoSize = true;
414      this.finishedLabel.Location = new System.Drawing.Point(6, 67);
415      this.finishedLabel.Name = "finishedLabel";
416      this.finishedLabel.Size = new System.Drawing.Size(49, 13);
417      this.finishedLabel.TabIndex = 2;
418      this.finishedLabel.Text = "Finished:";
419      //
420      // calculatingLabel
421      //
422      this.calculatingLabel.AutoSize = true;
423      this.calculatingLabel.Location = new System.Drawing.Point(6, 43);
424      this.calculatingLabel.Name = "calculatingLabel";
425      this.calculatingLabel.Size = new System.Drawing.Size(62, 13);
426      this.calculatingLabel.TabIndex = 1;
427      this.calculatingLabel.Text = "Calculating:";
428      //
429      // jobsLabel
430      //
431      this.jobsLabel.AutoSize = true;
432      this.jobsLabel.Location = new System.Drawing.Point(6, 19);
433      this.jobsLabel.Name = "jobsLabel";
434      this.jobsLabel.Size = new System.Drawing.Size(46, 13);
435      this.jobsLabel.TabIndex = 0;
436      this.jobsLabel.Text = "Waiting:";
437      //
438      // RefreshableHiveJobView
439      //
440      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
441      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
442      this.Controls.Add(this.isPrivilegedCheckBox);
443      this.Controls.Add(this.infoGroupBox);
444      this.Controls.Add(this.refreshAutomaticallyCheckBox);
445      this.Controls.Add(this.refreshButton);
446      this.Controls.Add(this.nameTextBox);
447      this.Controls.Add(this.nameLabel);
448      this.Controls.Add(this.tabControl);
449      this.Controls.Add(this.startButton);
450      this.Controls.Add(this.executionTimeTextBox);
451      this.Controls.Add(this.executionTimeLabel);
452      this.Controls.Add(this.resourceNamesTextBox);
453      this.Controls.Add(this.pauseButton);
454      this.Controls.Add(this.resourceIdsLabel);
455      this.Controls.Add(this.stopButton);
456      this.Controls.Add(this.resetButton);
457      this.Name = "RefreshableHiveJobView";
458      this.Size = new System.Drawing.Size(717, 560);
459      this.tabControl.ResumeLayout(false);
460      this.tasksTabPage.ResumeLayout(false);
461      this.permissionTabPage.ResumeLayout(false);
462      this.runsTabPage.ResumeLayout(false);
463      this.stateTabPage.ResumeLayout(false);
464      this.logTabPage.ResumeLayout(false);
465      this.infoGroupBox.ResumeLayout(false);
466      this.infoGroupBox.PerformLayout();
467      this.ResumeLayout(false);
468      this.PerformLayout();
469
470    }
471    #endregion
472
473    private System.Windows.Forms.TabControl tabControl;
474    private System.Windows.Forms.Button startButton;
475    private System.Windows.Forms.Button stopButton;
476    private System.Windows.Forms.Button resetButton;
477    private System.Windows.Forms.Label executionTimeLabel;
478    private System.Windows.Forms.TextBox executionTimeTextBox;
479    private System.Windows.Forms.Button pauseButton;
480    private System.Windows.Forms.Label resourceIdsLabel;
481    private System.Windows.Forms.TextBox resourceNamesTextBox;
482    private System.Windows.Forms.TabPage logTabPage;
483    private Core.Views.LogView logView;
484    private System.Windows.Forms.TabPage tasksTabPage;
485    private HeuristicLab.Clients.Hive.Views.HiveTaskItemTreeView jobsTreeView;
486    private System.Windows.Forms.Label nameLabel;
487    private System.Windows.Forms.TextBox nameTextBox;
488    private System.Windows.Forms.ToolTip toolTip;
489    private System.Windows.Forms.Button refreshButton;
490    private System.Windows.Forms.CheckBox refreshAutomaticallyCheckBox;
491    private System.Windows.Forms.GroupBox infoGroupBox;
492    private System.Windows.Forms.TextBox finishedTextBox;
493    private System.Windows.Forms.TextBox calculatingTextBox;
494    private System.Windows.Forms.TextBox jobsTextBox;
495    private System.Windows.Forms.Label finishedLabel;
496    private System.Windows.Forms.Label calculatingLabel;
497    private System.Windows.Forms.Label jobsLabel;
498    private System.Windows.Forms.CheckBox isPrivilegedCheckBox;
499    private System.Windows.Forms.TabPage stateTabPage;
500    private HeuristicLab.MainForm.WindowsForms.ViewHost stateLogViewHost;
501    private System.Windows.Forms.TabPage permissionTabPage;
502    private HiveJobPermissionListView hiveExperimentPermissionListView;
503    private System.Windows.Forms.Button refreshPermissionsButton;
504    private System.Windows.Forms.TabPage runsTabPage;
505    private MainForm.WindowsForms.ViewHost runCollectionViewHost;
506
507  }
508}
Note: See TracBrowser for help on using the repository browser.