Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.Designer.cs @ 15913

Last change on this file since 15913 was 15642, checked in by jzenisek, 6 years ago

#2839

  • adapted handling of cascading revocations of project-user permissions and project-resource assignments: from deleting all AssignedJobResource (formerly) to deleting only entries which are effected by the previously mentioned revocations (now)
  • implemented job update (client side)
  • corrected & improved stateful project/resource selection dialog
  • corrected resource statistic calculation in project/resource selection dialog
File size: 27.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22namespace HeuristicLab.Clients.Hive.JobManager.Views {
23  partial class RefreshableHiveJobView {
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      this.components = new System.ComponentModel.Container();
48      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
49      this.tasksTabPage = new System.Windows.Forms.TabPage();
50      this.jobsTreeView = new HeuristicLab.Clients.Hive.Views.HiveTaskItemTreeView();
51      this.permissionTabPage = new System.Windows.Forms.TabPage();
52      this.refreshPermissionsButton = new System.Windows.Forms.Button();
53      this.runsTabPage = new System.Windows.Forms.TabPage();
54      this.runCollectionViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
55      this.stateTabPage = new System.Windows.Forms.TabPage();
56      this.stateLogViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
57      this.logTabPage = new System.Windows.Forms.TabPage();
58      this.logView = new HeuristicLab.Core.Views.LogView();
59      this.startButton = new System.Windows.Forms.Button();
60      this.stopButton = new System.Windows.Forms.Button();
61      this.executionTimeLabel = new System.Windows.Forms.Label();
62      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
63      this.pauseButton = new System.Windows.Forms.Button();
64      this.projectLabel = new System.Windows.Forms.Label();
65      this.projectNameTextBox = new System.Windows.Forms.TextBox();
66      this.nameLabel = new System.Windows.Forms.Label();
67      this.nameTextBox = new System.Windows.Forms.TextBox();
68      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
69      this.refreshButton = new System.Windows.Forms.Button();
70      this.updateButton = new System.Windows.Forms.Button();
71      this.UnloadButton = new System.Windows.Forms.Button();
72      this.refreshAutomaticallyCheckBox = new System.Windows.Forms.CheckBox();
73      this.infoGroupBox = new System.Windows.Forms.GroupBox();
74      this.finishedTextBox = new System.Windows.Forms.TextBox();
75      this.calculatingTextBox = new System.Windows.Forms.TextBox();
76      this.jobsTextBox = new System.Windows.Forms.TextBox();
77      this.finishedLabel = new System.Windows.Forms.Label();
78      this.calculatingLabel = new System.Windows.Forms.Label();
79      this.jobsLabel = new System.Windows.Forms.Label();
80      this.searchButton = new System.Windows.Forms.Button();
81      this.hiveExperimentPermissionListView = new HeuristicLab.Clients.Hive.JobManager.Views.HiveJobPermissionListView();
82      this.tabControl.SuspendLayout();
83      this.tasksTabPage.SuspendLayout();
84      this.permissionTabPage.SuspendLayout();
85      this.runsTabPage.SuspendLayout();
86      this.stateTabPage.SuspendLayout();
87      this.logTabPage.SuspendLayout();
88      this.infoGroupBox.SuspendLayout();
89      this.SuspendLayout();
90      //
91      // tabControl
92      //
93      this.tabControl.AllowDrop = true;
94      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
95            | System.Windows.Forms.AnchorStyles.Left)
96            | System.Windows.Forms.AnchorStyles.Right)));
97      this.tabControl.Controls.Add(this.tasksTabPage);
98      this.tabControl.Controls.Add(this.permissionTabPage);
99      this.tabControl.Controls.Add(this.runsTabPage);
100      this.tabControl.Controls.Add(this.stateTabPage);
101      this.tabControl.Controls.Add(this.logTabPage);
102      this.tabControl.Location = new System.Drawing.Point(0, 78);
103      this.tabControl.Name = "tabControl";
104      this.tabControl.SelectedIndex = 0;
105      this.tabControl.Size = new System.Drawing.Size(717, 452);
106      this.tabControl.TabIndex = 4;
107      this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
108      //
109      // tasksTabPage
110      //
111      this.tasksTabPage.Controls.Add(this.jobsTreeView);
112      this.tasksTabPage.Location = new System.Drawing.Point(4, 22);
113      this.tasksTabPage.Name = "tasksTabPage";
114      this.tasksTabPage.Size = new System.Drawing.Size(709, 426);
115      this.tasksTabPage.TabIndex = 5;
116      this.tasksTabPage.Text = "Tasks";
117      this.tasksTabPage.UseVisualStyleBackColor = true;
118      //
119      // jobsTreeView
120      //
121      this.jobsTreeView.AllowDrop = true;
122      this.jobsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
123            | System.Windows.Forms.AnchorStyles.Left)
124            | System.Windows.Forms.AnchorStyles.Right)));
125      this.jobsTreeView.Caption = "ItemTree View";
126      this.jobsTreeView.Content = null;
127      this.jobsTreeView.Location = new System.Drawing.Point(2, 3);
128      this.jobsTreeView.Name = "jobsTreeView";
129      this.jobsTreeView.ReadOnly = false;
130      this.jobsTreeView.Size = new System.Drawing.Size(704, 420);
131      this.jobsTreeView.TabIndex = 4;
132      this.jobsTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragDrop);
133      this.jobsTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragEnter);
134      this.jobsTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragOver);
135      //
136      // permissionTabPage
137      //
138      this.permissionTabPage.Controls.Add(this.refreshPermissionsButton);
139      this.permissionTabPage.Controls.Add(this.hiveExperimentPermissionListView);
140      this.permissionTabPage.Location = new System.Drawing.Point(4, 22);
141      this.permissionTabPage.Name = "permissionTabPage";
142      this.permissionTabPage.Size = new System.Drawing.Size(709, 426);
143      this.permissionTabPage.TabIndex = 7;
144      this.permissionTabPage.Text = "Permissions";
145      this.permissionTabPage.UseVisualStyleBackColor = true;
146      //
147      // refreshPermissionsButton
148      //
149      this.refreshPermissionsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
150      this.refreshPermissionsButton.Location = new System.Drawing.Point(3, 3);
151      this.refreshPermissionsButton.Name = "refreshPermissionsButton";
152      this.refreshPermissionsButton.Size = new System.Drawing.Size(24, 24);
153      this.refreshPermissionsButton.TabIndex = 23;
154      this.toolTip.SetToolTip(this.refreshPermissionsButton, "Refresh Data");
155      this.refreshPermissionsButton.UseVisualStyleBackColor = true;
156      this.refreshPermissionsButton.Click += new System.EventHandler(this.refreshPermissionsButton_Click);
157      //
158      // runsTabPage
159      //
160      this.runsTabPage.Controls.Add(this.runCollectionViewHost);
161      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
162      this.runsTabPage.Name = "runsTabPage";
163      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
164      this.runsTabPage.Size = new System.Drawing.Size(709, 426);
165      this.runsTabPage.TabIndex = 8;
166      this.runsTabPage.Text = "Runs";
167      this.runsTabPage.UseVisualStyleBackColor = true;
168      //
169      // runCollectionViewHost
170      //
171      this.runCollectionViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
172            | System.Windows.Forms.AnchorStyles.Left)
173            | System.Windows.Forms.AnchorStyles.Right)));
174      this.runCollectionViewHost.Caption = "View";
175      this.runCollectionViewHost.Content = null;
176      this.runCollectionViewHost.Enabled = false;
177      this.runCollectionViewHost.Location = new System.Drawing.Point(3, 3);
178      this.runCollectionViewHost.Name = "runCollectionViewHost";
179      this.runCollectionViewHost.ReadOnly = false;
180      this.runCollectionViewHost.Size = new System.Drawing.Size(703, 420);
181      this.runCollectionViewHost.TabIndex = 2;
182      this.runCollectionViewHost.ViewsLabelVisible = true;
183      this.runCollectionViewHost.ViewType = null;
184      //
185      // stateTabPage
186      //
187      this.stateTabPage.Controls.Add(this.stateLogViewHost);
188      this.stateTabPage.Location = new System.Drawing.Point(4, 22);
189      this.stateTabPage.Name = "stateTabPage";
190      this.stateTabPage.Size = new System.Drawing.Size(709, 426);
191      this.stateTabPage.TabIndex = 6;
192      this.stateTabPage.Text = "Execution History";
193      this.stateTabPage.UseVisualStyleBackColor = true;
194      //
195      // stateLogViewHost
196      //
197      this.stateLogViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
198            | System.Windows.Forms.AnchorStyles.Left)
199            | System.Windows.Forms.AnchorStyles.Right)));
200      this.stateLogViewHost.Caption = "StateLog View";
201      this.stateLogViewHost.Content = null;
202      this.stateLogViewHost.Enabled = false;
203      this.stateLogViewHost.Location = new System.Drawing.Point(3, 3);
204      this.stateLogViewHost.Name = "stateLogViewHost";
205      this.stateLogViewHost.ReadOnly = false;
206      this.stateLogViewHost.Size = new System.Drawing.Size(703, 420);
207      this.stateLogViewHost.TabIndex = 0;
208      this.stateLogViewHost.ViewsLabelVisible = true;
209      this.stateLogViewHost.ViewType = null;
210      //
211      // logTabPage
212      //
213      this.logTabPage.Controls.Add(this.logView);
214      this.logTabPage.Location = new System.Drawing.Point(4, 22);
215      this.logTabPage.Name = "logTabPage";
216      this.logTabPage.Size = new System.Drawing.Size(709, 426);
217      this.logTabPage.TabIndex = 3;
218      this.logTabPage.Text = "Log";
219      this.logTabPage.UseVisualStyleBackColor = true;
220      //
221      // logView
222      //
223      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
224            | System.Windows.Forms.AnchorStyles.Left)
225            | System.Windows.Forms.AnchorStyles.Right)));
226      this.logView.Caption = "Log View";
227      this.logView.Content = null;
228      this.logView.Location = new System.Drawing.Point(3, 3);
229      this.logView.Name = "logView";
230      this.logView.ReadOnly = false;
231      this.logView.Size = new System.Drawing.Size(703, 420);
232      this.logView.TabIndex = 0;
233      //
234      // startButton
235      //
236      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
237      this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
238      this.startButton.Location = new System.Drawing.Point(0, 536);
239      this.startButton.Name = "startButton";
240      this.startButton.Size = new System.Drawing.Size(24, 24);
241      this.startButton.TabIndex = 5;
242      this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
243      this.startButton.UseVisualStyleBackColor = true;
244      this.startButton.Click += new System.EventHandler(this.startButton_Click);
245      //
246      // stopButton
247      //
248      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
249      this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
250      this.stopButton.Location = new System.Drawing.Point(60, 536);
251      this.stopButton.Name = "stopButton";
252      this.stopButton.Size = new System.Drawing.Size(24, 24);
253      this.stopButton.TabIndex = 7;
254      this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
255      this.stopButton.UseVisualStyleBackColor = true;
256      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
257      //
258      // executionTimeLabel
259      //
260      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
261      this.executionTimeLabel.AutoSize = true;
262      this.executionTimeLabel.Location = new System.Drawing.Point(491, 543);
263      this.executionTimeLabel.Name = "executionTimeLabel";
264      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
265      this.executionTimeLabel.TabIndex = 9;
266      this.executionTimeLabel.Text = "&Execution Time:";
267      //
268      // executionTimeTextBox
269      //
270      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
271      this.executionTimeTextBox.Location = new System.Drawing.Point(580, 540);
272      this.executionTimeTextBox.Name = "executionTimeTextBox";
273      this.executionTimeTextBox.ReadOnly = true;
274      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
275      this.executionTimeTextBox.TabIndex = 10;
276      //
277      // pauseButton
278      //
279      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
280      this.pauseButton.Enabled = false;
281      this.pauseButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pause;
282      this.pauseButton.Location = new System.Drawing.Point(30, 536);
283      this.pauseButton.Name = "pauseButton";
284      this.pauseButton.Size = new System.Drawing.Size(24, 24);
285      this.pauseButton.TabIndex = 6;
286      this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
287      this.pauseButton.UseVisualStyleBackColor = true;
288      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
289      //
290      // projectLabel
291      //
292      this.projectLabel.AutoSize = true;
293      this.projectLabel.Location = new System.Drawing.Point(3, 56);
294      this.projectLabel.Name = "projectLabel";
295      this.projectLabel.Size = new System.Drawing.Size(43, 13);
296      this.projectLabel.TabIndex = 12;
297      this.projectLabel.Text = "Project:";
298      //
299      // projectNameTextBox
300      //
301      this.projectNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
302            | System.Windows.Forms.AnchorStyles.Right)));
303      this.projectNameTextBox.Location = new System.Drawing.Point(82, 52);
304      this.projectNameTextBox.Name = "projectNameTextBox";
305      this.projectNameTextBox.ReadOnly = true;
306      this.projectNameTextBox.Size = new System.Drawing.Size(489, 20);
307      this.projectNameTextBox.TabIndex = 2;
308      this.projectNameTextBox.Validated += new System.EventHandler(this.resourceNamesTextBox_Validated);
309      //
310      // nameLabel
311      //
312      this.nameLabel.AutoSize = true;
313      this.nameLabel.Location = new System.Drawing.Point(3, 30);
314      this.nameLabel.Name = "nameLabel";
315      this.nameLabel.Size = new System.Drawing.Size(38, 13);
316      this.nameLabel.TabIndex = 20;
317      this.nameLabel.Text = "Name:";
318      //
319      // nameTextBox
320      //
321      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
322            | System.Windows.Forms.AnchorStyles.Right)));
323      this.nameTextBox.Location = new System.Drawing.Point(52, 27);
324      this.nameTextBox.Name = "nameTextBox";
325      this.nameTextBox.Size = new System.Drawing.Size(519, 20);
326      this.nameTextBox.TabIndex = 1;
327      this.nameTextBox.Validated += new System.EventHandler(this.nameTextBox_Validated);
328      //
329      // refreshButton
330      //
331      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
332      this.refreshButton.Location = new System.Drawing.Point(3, 0);
333      this.refreshButton.Name = "refreshButton";
334      this.refreshButton.Size = new System.Drawing.Size(24, 24);
335      this.refreshButton.TabIndex = 22;
336      this.toolTip.SetToolTip(this.refreshButton, "Refresh Data");
337      this.refreshButton.UseVisualStyleBackColor = true;
338      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
339      //
340      // updateButton
341      //
342      this.updateButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
343      this.updateButton.Location = new System.Drawing.Point(30, 0);
344      this.updateButton.Name = "updateButton";
345      this.updateButton.Size = new System.Drawing.Size(24, 24);
346      this.updateButton.TabIndex = 23;
347      this.toolTip.SetToolTip(this.updateButton, "Update Job (Name, Project, Resources)");
348      this.updateButton.UseVisualStyleBackColor = true;
349      this.updateButton.Click += new System.EventHandler(this.updateButton_Click);
350      //
351      // UnloadButton
352      //
353      this.UnloadButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Disconnect;
354      this.UnloadButton.Location = new System.Drawing.Point(57, 0);
355      this.UnloadButton.Name = "UnloadButton";
356      this.UnloadButton.Size = new System.Drawing.Size(24, 24);
357      this.UnloadButton.TabIndex = 27;
358      this.toolTip.SetToolTip(this.UnloadButton, "Unload Job");
359      this.UnloadButton.UseVisualStyleBackColor = true;
360      this.UnloadButton.Click += new System.EventHandler(this.UnloadButton_Click);
361      //
362      // refreshAutomaticallyCheckBox
363      //
364      this.refreshAutomaticallyCheckBox.AutoSize = true;
365      this.refreshAutomaticallyCheckBox.Location = new System.Drawing.Point(100, 3);
366      this.refreshAutomaticallyCheckBox.Name = "refreshAutomaticallyCheckBox";
367      this.refreshAutomaticallyCheckBox.Size = new System.Drawing.Size(127, 17);
368      this.refreshAutomaticallyCheckBox.TabIndex = 24;
369      this.refreshAutomaticallyCheckBox.Text = "&Refresh automatically";
370      this.refreshAutomaticallyCheckBox.UseVisualStyleBackColor = true;
371      this.refreshAutomaticallyCheckBox.CheckedChanged += new System.EventHandler(this.refreshAutomaticallyCheckBox_CheckedChanged);
372      //
373      // infoGroupBox
374      //
375      this.infoGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
376      this.infoGroupBox.Controls.Add(this.finishedTextBox);
377      this.infoGroupBox.Controls.Add(this.calculatingTextBox);
378      this.infoGroupBox.Controls.Add(this.jobsTextBox);
379      this.infoGroupBox.Controls.Add(this.finishedLabel);
380      this.infoGroupBox.Controls.Add(this.calculatingLabel);
381      this.infoGroupBox.Controls.Add(this.jobsLabel);
382      this.infoGroupBox.Location = new System.Drawing.Point(580, 5);
383      this.infoGroupBox.Name = "infoGroupBox";
384      this.infoGroupBox.Size = new System.Drawing.Size(133, 89);
385      this.infoGroupBox.TabIndex = 25;
386      this.infoGroupBox.TabStop = false;
387      this.infoGroupBox.Text = "Tasks";
388      //
389      // finishedTextBox
390      //
391      this.finishedTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
392            | System.Windows.Forms.AnchorStyles.Right)));
393      this.finishedTextBox.Location = new System.Drawing.Point(74, 64);
394      this.finishedTextBox.Name = "finishedTextBox";
395      this.finishedTextBox.Size = new System.Drawing.Size(53, 20);
396      this.finishedTextBox.TabIndex = 5;
397      //
398      // calculatingTextBox
399      //
400      this.calculatingTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
401            | System.Windows.Forms.AnchorStyles.Right)));
402      this.calculatingTextBox.Location = new System.Drawing.Point(74, 40);
403      this.calculatingTextBox.Name = "calculatingTextBox";
404      this.calculatingTextBox.Size = new System.Drawing.Size(53, 20);
405      this.calculatingTextBox.TabIndex = 4;
406      //
407      // jobsTextBox
408      //
409      this.jobsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
410            | System.Windows.Forms.AnchorStyles.Right)));
411      this.jobsTextBox.Location = new System.Drawing.Point(74, 16);
412      this.jobsTextBox.Name = "jobsTextBox";
413      this.jobsTextBox.Size = new System.Drawing.Size(53, 20);
414      this.jobsTextBox.TabIndex = 3;
415      //
416      // finishedLabel
417      //
418      this.finishedLabel.AutoSize = true;
419      this.finishedLabel.Location = new System.Drawing.Point(6, 67);
420      this.finishedLabel.Name = "finishedLabel";
421      this.finishedLabel.Size = new System.Drawing.Size(49, 13);
422      this.finishedLabel.TabIndex = 2;
423      this.finishedLabel.Text = "Finished:";
424      //
425      // calculatingLabel
426      //
427      this.calculatingLabel.AutoSize = true;
428      this.calculatingLabel.Location = new System.Drawing.Point(6, 43);
429      this.calculatingLabel.Name = "calculatingLabel";
430      this.calculatingLabel.Size = new System.Drawing.Size(62, 13);
431      this.calculatingLabel.TabIndex = 1;
432      this.calculatingLabel.Text = "Calculating:";
433      //
434      // jobsLabel
435      //
436      this.jobsLabel.AutoSize = true;
437      this.jobsLabel.Location = new System.Drawing.Point(6, 19);
438      this.jobsLabel.Name = "jobsLabel";
439      this.jobsLabel.Size = new System.Drawing.Size(46, 13);
440      this.jobsLabel.TabIndex = 0;
441      this.jobsLabel.Text = "Waiting:";
442      //
443      // searchButton
444      //
445      this.searchButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
446      this.searchButton.Location = new System.Drawing.Point(52, 50);
447      this.searchButton.Name = "searchButton";
448      this.searchButton.Size = new System.Drawing.Size(24, 24);
449      this.searchButton.TabIndex = 26;
450      this.searchButton.UseVisualStyleBackColor = true;
451      this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
452      //
453      // hiveExperimentPermissionListView
454      //
455      this.hiveExperimentPermissionListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
456            | System.Windows.Forms.AnchorStyles.Left)
457            | System.Windows.Forms.AnchorStyles.Right)));
458      this.hiveExperimentPermissionListView.Caption = "HiveExperimentPermissionList View";
459      this.hiveExperimentPermissionListView.Content = null;
460      this.hiveExperimentPermissionListView.HiveExperimentId = new System.Guid("00000000-0000-0000-0000-000000000000");
461      this.hiveExperimentPermissionListView.Location = new System.Drawing.Point(3, 33);
462      this.hiveExperimentPermissionListView.Name = "hiveExperimentPermissionListView";
463      this.hiveExperimentPermissionListView.ReadOnly = false;
464      this.hiveExperimentPermissionListView.ShowDetails = true;
465      this.hiveExperimentPermissionListView.Size = new System.Drawing.Size(703, 390);
466      this.hiveExperimentPermissionListView.TabIndex = 0;
467      //
468      // RefreshableHiveJobView
469      //
470      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
471      this.Controls.Add(this.searchButton);
472      this.Controls.Add(this.infoGroupBox);
473      this.Controls.Add(this.refreshAutomaticallyCheckBox);
474      this.Controls.Add(this.refreshButton);
475      this.Controls.Add(this.updateButton);
476      this.Controls.Add(this.UnloadButton);
477      this.Controls.Add(this.nameTextBox);
478      this.Controls.Add(this.nameLabel);
479      this.Controls.Add(this.tabControl);
480      this.Controls.Add(this.startButton);
481      this.Controls.Add(this.executionTimeTextBox);
482      this.Controls.Add(this.executionTimeLabel);
483      this.Controls.Add(this.projectNameTextBox);
484      this.Controls.Add(this.pauseButton);
485      this.Controls.Add(this.projectLabel);
486      this.Controls.Add(this.stopButton);
487      this.Name = "RefreshableHiveJobView";
488      this.Size = new System.Drawing.Size(717, 560);
489      this.tabControl.ResumeLayout(false);
490      this.tasksTabPage.ResumeLayout(false);
491      this.permissionTabPage.ResumeLayout(false);
492      this.runsTabPage.ResumeLayout(false);
493      this.stateTabPage.ResumeLayout(false);
494      this.logTabPage.ResumeLayout(false);
495      this.infoGroupBox.ResumeLayout(false);
496      this.infoGroupBox.PerformLayout();
497      this.ResumeLayout(false);
498      this.PerformLayout();
499
500    }
501    #endregion
502
503    private System.Windows.Forms.Button startButton;
504    private System.Windows.Forms.Button stopButton;
505    private System.Windows.Forms.Label executionTimeLabel;
506    private System.Windows.Forms.TextBox executionTimeTextBox;
507    private System.Windows.Forms.Button pauseButton;
508    private System.Windows.Forms.Label projectLabel;
509    private System.Windows.Forms.TextBox projectNameTextBox;
510    private System.Windows.Forms.TabPage logTabPage;
511    private Core.Views.LogView logView;
512    private System.Windows.Forms.TabPage tasksTabPage;
513    private HeuristicLab.Clients.Hive.Views.HiveTaskItemTreeView jobsTreeView;
514    private System.Windows.Forms.Label nameLabel;
515    private System.Windows.Forms.TextBox nameTextBox;
516    private System.Windows.Forms.ToolTip toolTip;
517    private System.Windows.Forms.Button refreshButton;
518    private System.Windows.Forms.Button updateButton;
519    private System.Windows.Forms.Button UnloadButton;
520    private System.Windows.Forms.CheckBox refreshAutomaticallyCheckBox;
521    private System.Windows.Forms.GroupBox infoGroupBox;
522    private System.Windows.Forms.TextBox finishedTextBox;
523    private System.Windows.Forms.TextBox calculatingTextBox;
524    private System.Windows.Forms.TextBox jobsTextBox;
525    private System.Windows.Forms.Label finishedLabel;
526    private System.Windows.Forms.Label calculatingLabel;
527    private System.Windows.Forms.Label jobsLabel;
528    private System.Windows.Forms.TabPage stateTabPage;
529    private HeuristicLab.MainForm.WindowsForms.ViewHost stateLogViewHost;
530    private System.Windows.Forms.TabPage permissionTabPage;
531    private HiveJobPermissionListView hiveExperimentPermissionListView;
532    private System.Windows.Forms.Button refreshPermissionsButton;
533    private System.Windows.Forms.TabPage runsTabPage;
534    private MainForm.WindowsForms.ViewHost runCollectionViewHost;
535    private System.Windows.Forms.Button searchButton;
536    private MainForm.WindowsForms.DragOverTabControl tabControl;
537  }
538}
Note: See TracBrowser for help on using the repository browser.