Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveHiveEngine/HeuristicLab.HiveEngine.Views/3.3/HiveEngineView.Designer.cs @ 7417

Last change on this file since 7417 was 7417, checked in by ascheibe, 12 years ago

#1744 added an option so that the parent task can also wait on the slave for the child tasks to finish

File size: 12.0 KB
Line 
1using HeuristicLab.Clients.Hive.JobManager.Views;
2namespace HeuristicLab.HiveEngine.Views {
3  partial class HiveEngineView {
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 && (components != null)) {
15        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      this.resourceIdsLabel = new System.Windows.Forms.Label();
28      this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
29      this.priorityLabel = new System.Windows.Forms.Label();
30      this.priorityTextBox = new System.Windows.Forms.TextBox();
31      this.label1 = new System.Windows.Forms.Label();
32      this.executionTimeOnHiveTextBox = new System.Windows.Forms.TextBox();
33      this.tabControl = new System.Windows.Forms.TabControl();
34      this.jobsTabPage = new System.Windows.Forms.TabPage();
35      this.hiveExperimentListView = new HeuristicLab.Clients.Hive.JobManager.Views.RefreshableHiveJobListView();
36      this.logTabPage = new System.Windows.Forms.TabPage();
37      this.logView = new HeuristicLab.Core.Views.LogView();
38      this.executionTimeLabel = new System.Windows.Forms.Label();
39      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
40      this.isPrivilegedCheckBox = new System.Windows.Forms.CheckBox();
41      this.pauseOnWaitCheckbox = new System.Windows.Forms.CheckBox();
42      this.tabControl.SuspendLayout();
43      this.jobsTabPage.SuspendLayout();
44      this.logTabPage.SuspendLayout();
45      this.SuspendLayout();
46      //
47      // resourceIdsLabel
48      //
49      this.resourceIdsLabel.AutoSize = true;
50      this.resourceIdsLabel.Location = new System.Drawing.Point(113, 55);
51      this.resourceIdsLabel.Name = "resourceIdsLabel";
52      this.resourceIdsLabel.Size = new System.Drawing.Size(70, 13);
53      this.resourceIdsLabel.TabIndex = 3;
54      this.resourceIdsLabel.Text = "ResourceIds:";
55      //
56      // resourceIdsTextBox
57      //
58      this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59                  | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.resourceIdsTextBox.Location = new System.Drawing.Point(189, 52);
62      this.resourceIdsTextBox.Name = "resourceIdsTextBox";
63      this.resourceIdsTextBox.Size = new System.Drawing.Size(415, 20);
64      this.resourceIdsTextBox.TabIndex = 4;
65      this.resourceIdsTextBox.Text = "HEAL";
66      this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
67      //
68      // priorityLabel
69      //
70      this.priorityLabel.AutoSize = true;
71      this.priorityLabel.Location = new System.Drawing.Point(3, 55);
72      this.priorityLabel.Name = "priorityLabel";
73      this.priorityLabel.Size = new System.Drawing.Size(41, 13);
74      this.priorityLabel.TabIndex = 5;
75      this.priorityLabel.Text = "Priority:";
76      //
77      // priorityTextBox
78      //
79      this.priorityTextBox.Location = new System.Drawing.Point(50, 52);
80      this.priorityTextBox.Name = "priorityTextBox";
81      this.priorityTextBox.Size = new System.Drawing.Size(57, 20);
82      this.priorityTextBox.TabIndex = 6;
83      this.priorityTextBox.Text = "0";
84      this.priorityTextBox.Validated += new System.EventHandler(this.priorityTextBox_Validated);
85      //
86      // label1
87      //
88      this.label1.AutoSize = true;
89      this.label1.Location = new System.Drawing.Point(3, 29);
90      this.label1.Name = "label1";
91      this.label1.Size = new System.Drawing.Size(123, 13);
92      this.label1.TabIndex = 7;
93      this.label1.Text = "Execution Time on Hive:";
94      //
95      // executionTimeOnHiveTextBox
96      //
97      this.executionTimeOnHiveTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
98                  | System.Windows.Forms.AnchorStyles.Left)
99                  | System.Windows.Forms.AnchorStyles.Right)));
100      this.executionTimeOnHiveTextBox.Location = new System.Drawing.Point(129, 26);
101      this.executionTimeOnHiveTextBox.Name = "executionTimeOnHiveTextBox";
102      this.executionTimeOnHiveTextBox.ReadOnly = true;
103      this.executionTimeOnHiveTextBox.Size = new System.Drawing.Size(475, 20);
104      this.executionTimeOnHiveTextBox.TabIndex = 8;
105      //
106      // tabControl
107      //
108      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
109                  | System.Windows.Forms.AnchorStyles.Left)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.tabControl.Controls.Add(this.jobsTabPage);
112      this.tabControl.Controls.Add(this.logTabPage);
113      this.tabControl.Location = new System.Drawing.Point(3, 78);
114      this.tabControl.Name = "tabControl";
115      this.tabControl.SelectedIndex = 0;
116      this.tabControl.Size = new System.Drawing.Size(700, 460);
117      this.tabControl.TabIndex = 9;
118      //
119      // jobsTabPage
120      //
121      this.jobsTabPage.Controls.Add(this.hiveExperimentListView);
122      this.jobsTabPage.Location = new System.Drawing.Point(4, 22);
123      this.jobsTabPage.Name = "jobsTabPage";
124      this.jobsTabPage.Padding = new System.Windows.Forms.Padding(3);
125      this.jobsTabPage.Size = new System.Drawing.Size(692, 434);
126      this.jobsTabPage.TabIndex = 0;
127      this.jobsTabPage.Text = "Jobs";
128      this.jobsTabPage.UseVisualStyleBackColor = true;
129      //
130      // hiveExperimentListView
131      //
132      this.hiveExperimentListView.Caption = "HiveExperimentList View";
133      this.hiveExperimentListView.Content = null;
134      this.hiveExperimentListView.Dock = System.Windows.Forms.DockStyle.Fill;
135      this.hiveExperimentListView.Location = new System.Drawing.Point(3, 3);
136      this.hiveExperimentListView.Name = "hiveExperimentListView";
137      this.hiveExperimentListView.ReadOnly = false;
138      this.hiveExperimentListView.ShowDetails = true;
139      this.hiveExperimentListView.Size = new System.Drawing.Size(686, 428);
140      this.hiveExperimentListView.TabIndex = 0;
141      //
142      // logTabPage
143      //
144      this.logTabPage.Controls.Add(this.logView);
145      this.logTabPage.Location = new System.Drawing.Point(4, 22);
146      this.logTabPage.Name = "logTabPage";
147      this.logTabPage.Padding = new System.Windows.Forms.Padding(3);
148      this.logTabPage.Size = new System.Drawing.Size(692, 434);
149      this.logTabPage.TabIndex = 1;
150      this.logTabPage.Text = "Log";
151      this.logTabPage.UseVisualStyleBackColor = true;
152      //
153      // logView
154      //
155      this.logView.Caption = "SlaveView";
156      this.logView.Content = null;
157      this.logView.Dock = System.Windows.Forms.DockStyle.Fill;
158      this.logView.Location = new System.Drawing.Point(3, 3);
159      this.logView.Name = "logView";
160      this.logView.ReadOnly = false;
161      this.logView.Size = new System.Drawing.Size(686, 428);
162      this.logView.TabIndex = 0;
163      //
164      // executionTimeLabel
165      //
166      this.executionTimeLabel.AutoSize = true;
167      this.executionTimeLabel.Location = new System.Drawing.Point(4, 6);
168      this.executionTimeLabel.Name = "executionTimeLabel";
169      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
170      this.executionTimeLabel.TabIndex = 10;
171      this.executionTimeLabel.Text = "Execution Time:";
172      //
173      // executionTimeTextBox
174      //
175      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
176                  | System.Windows.Forms.AnchorStyles.Left)
177                  | System.Windows.Forms.AnchorStyles.Right)));
178      this.executionTimeTextBox.Location = new System.Drawing.Point(129, 3);
179      this.executionTimeTextBox.Name = "executionTimeTextBox";
180      this.executionTimeTextBox.ReadOnly = true;
181      this.executionTimeTextBox.Size = new System.Drawing.Size(577, 20);
182      this.executionTimeTextBox.TabIndex = 11;
183      //
184      // isPrivilegedCheckBox
185      //
186      this.isPrivilegedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
187      this.isPrivilegedCheckBox.AutoSize = true;
188      this.isPrivilegedCheckBox.Location = new System.Drawing.Point(610, 54);
189      this.isPrivilegedCheckBox.Name = "isPrivilegedCheckBox";
190      this.isPrivilegedCheckBox.Size = new System.Drawing.Size(80, 17);
191      this.isPrivilegedCheckBox.TabIndex = 13;
192      this.isPrivilegedCheckBox.Text = "IsPrivileged";
193      this.isPrivilegedCheckBox.UseVisualStyleBackColor = true;
194      this.isPrivilegedCheckBox.Validated += new System.EventHandler(this.isPrivilegedCheckBox_Validated);
195      //
196      // pauseOnWaitCheckbox
197      //
198      this.pauseOnWaitCheckbox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
199      this.pauseOnWaitCheckbox.AutoSize = true;
200      this.pauseOnWaitCheckbox.Location = new System.Drawing.Point(610, 28);
201      this.pauseOnWaitCheckbox.Name = "pauseOnWaitCheckbox";
202      this.pauseOnWaitCheckbox.Size = new System.Drawing.Size(93, 17);
203      this.pauseOnWaitCheckbox.TabIndex = 14;
204      this.pauseOnWaitCheckbox.Text = "Pause on wait";
205      this.pauseOnWaitCheckbox.UseVisualStyleBackColor = true;
206      this.pauseOnWaitCheckbox.Validated += new System.EventHandler(this.pauseOnWaitCheckbox_Validated);
207      //
208      // HiveEngineView
209      //
210      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
211      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
212      this.Controls.Add(this.pauseOnWaitCheckbox);
213      this.Controls.Add(this.isPrivilegedCheckBox);
214      this.Controls.Add(this.executionTimeTextBox);
215      this.Controls.Add(this.executionTimeLabel);
216      this.Controls.Add(this.tabControl);
217      this.Controls.Add(this.label1);
218      this.Controls.Add(this.executionTimeOnHiveTextBox);
219      this.Controls.Add(this.priorityTextBox);
220      this.Controls.Add(this.priorityLabel);
221      this.Controls.Add(this.resourceIdsLabel);
222      this.Controls.Add(this.resourceIdsTextBox);
223      this.Name = "HiveEngineView";
224      this.Size = new System.Drawing.Size(706, 541);
225      this.tabControl.ResumeLayout(false);
226      this.jobsTabPage.ResumeLayout(false);
227      this.logTabPage.ResumeLayout(false);
228      this.ResumeLayout(false);
229      this.PerformLayout();
230
231    }
232
233    #endregion
234
235    private System.Windows.Forms.Label resourceIdsLabel;
236    private System.Windows.Forms.TextBox resourceIdsTextBox;
237    private System.Windows.Forms.Label priorityLabel;
238    private System.Windows.Forms.TextBox priorityTextBox;
239    private System.Windows.Forms.Label label1;
240    private System.Windows.Forms.TextBox executionTimeOnHiveTextBox;
241    private System.Windows.Forms.TabControl tabControl;
242    private System.Windows.Forms.TabPage jobsTabPage;
243    private System.Windows.Forms.TabPage logTabPage;
244    private System.Windows.Forms.Label executionTimeLabel;
245    private System.Windows.Forms.TextBox executionTimeTextBox;
246    private HeuristicLab.Core.Views.LogView logView;
247    private RefreshableHiveJobListView hiveExperimentListView;
248    private System.Windows.Forms.CheckBox isPrivilegedCheckBox;
249    private System.Windows.Forms.CheckBox pauseOnWaitCheckbox;
250  }
251}
Note: See TracBrowser for help on using the repository browser.