Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/Views/HiveEngineView.Designer.cs @ 6006

Last change on this file since 6006 was 6006, checked in by cneumuel, 13 years ago

#1233

  • changed relationship between Job and HiveExperiment. There is no more HiveExperiment.RootJobId, instead there is Job.HiveExperimentId.
  • One HiveExperiment can now have multiple Experiments.
  • TreeView supports multiple root nodes
  • HiveEngine creates a HiveExperiment for each set of jobs, so jobs cannot be without an parent experiment anymore (no more loose jobs)
  • updated ExperimentManager binaries
File size: 11.0 KB
Line 
1namespace HeuristicLab.HiveEngine.Views {
2  partial class HiveEngineView {
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 && (components != null)) {
14        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.resourceIdsLabel = new System.Windows.Forms.Label();
27      this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
28      this.priorityLabel = new System.Windows.Forms.Label();
29      this.priorityTextBox = new System.Windows.Forms.TextBox();
30      this.label1 = new System.Windows.Forms.Label();
31      this.executionTimeOnHiveTextBox = new System.Windows.Forms.TextBox();
32      this.tabControl = new System.Windows.Forms.TabControl();
33      this.jobsTabPage = new System.Windows.Forms.TabPage();
34      this.hiveExperimentListView = new HeuristicLab.Clients.Hive.Views.HiveExperimentListView();
35      this.logTabPage = new System.Windows.Forms.TabPage();
36      this.logView = new HeuristicLab.Core.Views.LogView();
37      this.executionTimeLabel = new System.Windows.Forms.Label();
38      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
39      this.useLocalPluginsCheckBox = new System.Windows.Forms.CheckBox();
40      this.tabControl.SuspendLayout();
41      this.jobsTabPage.SuspendLayout();
42      this.logTabPage.SuspendLayout();
43      this.SuspendLayout();
44      //
45      // resourceIdsLabel
46      //
47      this.resourceIdsLabel.AutoSize = true;
48      this.resourceIdsLabel.Location = new System.Drawing.Point(113, 55);
49      this.resourceIdsLabel.Name = "resourceIdsLabel";
50      this.resourceIdsLabel.Size = new System.Drawing.Size(70, 13);
51      this.resourceIdsLabel.TabIndex = 3;
52      this.resourceIdsLabel.Text = "ResourceIds:";
53      //
54      // resourceIdsTextBox
55      //
56      this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57                  | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.resourceIdsTextBox.Location = new System.Drawing.Point(189, 52);
60      this.resourceIdsTextBox.Name = "resourceIdsTextBox";
61      this.resourceIdsTextBox.Size = new System.Drawing.Size(405, 20);
62      this.resourceIdsTextBox.TabIndex = 4;
63      this.resourceIdsTextBox.Text = "HEAL";
64      this.resourceIdsTextBox.TextChanged += new System.EventHandler(this.resourceIdsTextBox_TextChanged);
65      //
66      // priorityLabel
67      //
68      this.priorityLabel.AutoSize = true;
69      this.priorityLabel.Location = new System.Drawing.Point(3, 55);
70      this.priorityLabel.Name = "priorityLabel";
71      this.priorityLabel.Size = new System.Drawing.Size(41, 13);
72      this.priorityLabel.TabIndex = 5;
73      this.priorityLabel.Text = "Priority:";
74      //
75      // priorityTextBox
76      //
77      this.priorityTextBox.Location = new System.Drawing.Point(50, 52);
78      this.priorityTextBox.Name = "priorityTextBox";
79      this.priorityTextBox.Size = new System.Drawing.Size(57, 20);
80      this.priorityTextBox.TabIndex = 6;
81      this.priorityTextBox.Text = "0";
82      this.priorityTextBox.TextChanged += new System.EventHandler(this.priorityTextBox_TextChanged);
83      //
84      // label1
85      //
86      this.label1.AutoSize = true;
87      this.label1.Location = new System.Drawing.Point(3, 29);
88      this.label1.Name = "label1";
89      this.label1.Size = new System.Drawing.Size(123, 13);
90      this.label1.TabIndex = 7;
91      this.label1.Text = "Execution Time on Hive:";
92      //
93      // executionTimeOnHiveTextBox
94      //
95      this.executionTimeOnHiveTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96                  | System.Windows.Forms.AnchorStyles.Left)
97                  | System.Windows.Forms.AnchorStyles.Right)));
98      this.executionTimeOnHiveTextBox.Location = new System.Drawing.Point(129, 26);
99      this.executionTimeOnHiveTextBox.Name = "executionTimeOnHiveTextBox";
100      this.executionTimeOnHiveTextBox.ReadOnly = true;
101      this.executionTimeOnHiveTextBox.Size = new System.Drawing.Size(577, 20);
102      this.executionTimeOnHiveTextBox.TabIndex = 8;
103      //
104      // tabControl
105      //
106      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
107                  | System.Windows.Forms.AnchorStyles.Left)
108                  | System.Windows.Forms.AnchorStyles.Right)));
109      this.tabControl.Controls.Add(this.jobsTabPage);
110      this.tabControl.Controls.Add(this.logTabPage);
111      this.tabControl.Location = new System.Drawing.Point(3, 78);
112      this.tabControl.Name = "tabControl";
113      this.tabControl.SelectedIndex = 0;
114      this.tabControl.Size = new System.Drawing.Size(700, 460);
115      this.tabControl.TabIndex = 9;
116      //
117      // jobsTabPage
118      //
119      this.jobsTabPage.Controls.Add(this.hiveExperimentListView);
120      this.jobsTabPage.Location = new System.Drawing.Point(4, 22);
121      this.jobsTabPage.Name = "jobsTabPage";
122      this.jobsTabPage.Padding = new System.Windows.Forms.Padding(3);
123      this.jobsTabPage.Size = new System.Drawing.Size(692, 434);
124      this.jobsTabPage.TabIndex = 0;
125      this.jobsTabPage.Text = "Jobs";
126      this.jobsTabPage.UseVisualStyleBackColor = true;
127      //
128      // hiveExperimentListView
129      //
130      this.hiveExperimentListView.Caption = "HiveExperimentList View";
131      this.hiveExperimentListView.Content = null;
132      this.hiveExperimentListView.Dock = System.Windows.Forms.DockStyle.Fill;
133      this.hiveExperimentListView.Location = new System.Drawing.Point(3, 3);
134      this.hiveExperimentListView.Name = "hiveExperimentListView";
135      this.hiveExperimentListView.ReadOnly = false;
136      this.hiveExperimentListView.Size = new System.Drawing.Size(686, 428);
137      this.hiveExperimentListView.TabIndex = 0;
138      //
139      // logTabPage
140      //
141      this.logTabPage.Controls.Add(this.logView);
142      this.logTabPage.Location = new System.Drawing.Point(4, 22);
143      this.logTabPage.Name = "logTabPage";
144      this.logTabPage.Padding = new System.Windows.Forms.Padding(3);
145      this.logTabPage.Size = new System.Drawing.Size(692, 434);
146      this.logTabPage.TabIndex = 1;
147      this.logTabPage.Text = "Log";
148      this.logTabPage.UseVisualStyleBackColor = true;
149      //
150      // logView
151      //
152      this.logView.Caption = "SlaveView";
153      this.logView.Content = null;
154      this.logView.Dock = System.Windows.Forms.DockStyle.Fill;
155      this.logView.Location = new System.Drawing.Point(3, 3);
156      this.logView.Name = "logView";
157      this.logView.ReadOnly = false;
158      this.logView.Size = new System.Drawing.Size(686, 428);
159      this.logView.TabIndex = 0;
160      //
161      // executionTimeLabel
162      //
163      this.executionTimeLabel.AutoSize = true;
164      this.executionTimeLabel.Location = new System.Drawing.Point(4, 6);
165      this.executionTimeLabel.Name = "executionTimeLabel";
166      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
167      this.executionTimeLabel.TabIndex = 10;
168      this.executionTimeLabel.Text = "Execution Time:";
169      //
170      // executionTimeTextBox
171      //
172      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
173                  | System.Windows.Forms.AnchorStyles.Left)
174                  | System.Windows.Forms.AnchorStyles.Right)));
175      this.executionTimeTextBox.Location = new System.Drawing.Point(129, 3);
176      this.executionTimeTextBox.Name = "executionTimeTextBox";
177      this.executionTimeTextBox.ReadOnly = true;
178      this.executionTimeTextBox.Size = new System.Drawing.Size(577, 20);
179      this.executionTimeTextBox.TabIndex = 11;
180      //
181      // useLocalPluginsCheckBox
182      //
183      this.useLocalPluginsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
184      this.useLocalPluginsCheckBox.AutoSize = true;
185      this.useLocalPluginsCheckBox.Location = new System.Drawing.Point(600, 55);
186      this.useLocalPluginsCheckBox.Name = "useLocalPluginsCheckBox";
187      this.useLocalPluginsCheckBox.Size = new System.Drawing.Size(103, 17);
188      this.useLocalPluginsCheckBox.TabIndex = 12;
189      this.useLocalPluginsCheckBox.Text = "useLocalPlugins";
190      this.useLocalPluginsCheckBox.UseVisualStyleBackColor = true;
191      this.useLocalPluginsCheckBox.CheckedChanged += new System.EventHandler(this.useLocalPluginsCheckBox_CheckedChanged);
192      //
193      // HiveEngineView
194      //
195      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
196      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
197      this.Controls.Add(this.useLocalPluginsCheckBox);
198      this.Controls.Add(this.executionTimeTextBox);
199      this.Controls.Add(this.executionTimeLabel);
200      this.Controls.Add(this.tabControl);
201      this.Controls.Add(this.label1);
202      this.Controls.Add(this.executionTimeOnHiveTextBox);
203      this.Controls.Add(this.priorityTextBox);
204      this.Controls.Add(this.priorityLabel);
205      this.Controls.Add(this.resourceIdsLabel);
206      this.Controls.Add(this.resourceIdsTextBox);
207      this.Name = "HiveEngineView";
208      this.Size = new System.Drawing.Size(706, 541);
209      this.tabControl.ResumeLayout(false);
210      this.jobsTabPage.ResumeLayout(false);
211      this.logTabPage.ResumeLayout(false);
212      this.ResumeLayout(false);
213      this.PerformLayout();
214
215    }
216
217    #endregion
218
219    private System.Windows.Forms.Label resourceIdsLabel;
220    private System.Windows.Forms.TextBox resourceIdsTextBox;
221    private System.Windows.Forms.Label priorityLabel;
222    private System.Windows.Forms.TextBox priorityTextBox;
223    private System.Windows.Forms.Label label1;
224    protected System.Windows.Forms.TextBox executionTimeOnHiveTextBox;
225    private System.Windows.Forms.TabControl tabControl;
226    private System.Windows.Forms.TabPage jobsTabPage;
227    private System.Windows.Forms.TabPage logTabPage;
228    private System.Windows.Forms.Label executionTimeLabel;
229    protected System.Windows.Forms.TextBox executionTimeTextBox;
230    private System.Windows.Forms.CheckBox useLocalPluginsCheckBox;
231    private HeuristicLab.Core.Views.LogView logView;
232    private Clients.Hive.Views.HiveExperimentListView hiveExperimentListView;
233  }
234}
Note: See TracBrowser for help on using the repository browser.