1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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.Optimization.Views {
|
---|
23 | partial class BatchRunView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | #region Component Designer generated code
|
---|
30 |
|
---|
31 | /// <summary>
|
---|
32 | /// Required method for Designer support - do not modify
|
---|
33 | /// the contents of this method with the code editor.
|
---|
34 | /// </summary>
|
---|
35 | private void InitializeComponent() {
|
---|
36 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BatchRunView));
|
---|
37 | this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
|
---|
38 | this.optimizerTabPage = new System.Windows.Forms.TabPage();
|
---|
39 | this.optimizerViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
40 | this.openOptimizerButton = new System.Windows.Forms.Button();
|
---|
41 | this.newOptimizerButton = new System.Windows.Forms.Button();
|
---|
42 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
43 | this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
44 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
45 | this.repetitionsLabel = new System.Windows.Forms.Label();
|
---|
46 | this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
47 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
48 | this.tabControl.SuspendLayout();
|
---|
49 | this.optimizerTabPage.SuspendLayout();
|
---|
50 | this.runsTabPage.SuspendLayout();
|
---|
51 | ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
|
---|
52 | this.SuspendLayout();
|
---|
53 | //
|
---|
54 | // startButton
|
---|
55 | //
|
---|
56 | this.startButton.Location = new System.Drawing.Point(0, 459);
|
---|
57 | this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
|
---|
58 | //
|
---|
59 | // executionTimeTextBox
|
---|
60 | //
|
---|
61 | this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
|
---|
62 | //
|
---|
63 | // executionTimeLabel
|
---|
64 | //
|
---|
65 | this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
|
---|
66 | //
|
---|
67 | // pauseButton
|
---|
68 | //
|
---|
69 | this.pauseButton.Location = new System.Drawing.Point(30, 459);
|
---|
70 | this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
|
---|
71 | //
|
---|
72 | // stopButton
|
---|
73 | //
|
---|
74 | this.stopButton.Location = new System.Drawing.Point(60, 459);
|
---|
75 | this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
|
---|
76 | //
|
---|
77 | // resetButton
|
---|
78 | //
|
---|
79 | this.resetButton.Location = new System.Drawing.Point(90, 458);
|
---|
80 | this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
|
---|
81 | //
|
---|
82 | // nameTextBox
|
---|
83 | //
|
---|
84 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
85 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
86 | this.nameTextBox.Location = new System.Drawing.Point(72, 0);
|
---|
87 | this.nameTextBox.Size = new System.Drawing.Size(582, 20);
|
---|
88 | //
|
---|
89 | // infoLabel
|
---|
90 | //
|
---|
91 | this.infoLabel.Location = new System.Drawing.Point(660, 3);
|
---|
92 | //
|
---|
93 | // tabControl
|
---|
94 | //
|
---|
95 | this.tabControl.AllowDrop = true;
|
---|
96 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
97 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
98 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
99 | this.tabControl.Controls.Add(this.optimizerTabPage);
|
---|
100 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
101 | this.tabControl.Location = new System.Drawing.Point(0, 52);
|
---|
102 | this.tabControl.Name = "tabControl";
|
---|
103 | this.tabControl.SelectedIndex = 0;
|
---|
104 | this.tabControl.Size = new System.Drawing.Size(679, 401);
|
---|
105 | this.tabControl.TabIndex = 5;
|
---|
106 | //
|
---|
107 | // optimizerTabPage
|
---|
108 | //
|
---|
109 | this.optimizerTabPage.AllowDrop = true;
|
---|
110 | this.optimizerTabPage.Controls.Add(this.optimizerViewHost);
|
---|
111 | this.optimizerTabPage.Controls.Add(this.openOptimizerButton);
|
---|
112 | this.optimizerTabPage.Controls.Add(this.newOptimizerButton);
|
---|
113 | this.optimizerTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
114 | this.optimizerTabPage.Name = "optimizerTabPage";
|
---|
115 | this.optimizerTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
116 | this.optimizerTabPage.Size = new System.Drawing.Size(671, 375);
|
---|
117 | this.optimizerTabPage.TabIndex = 1;
|
---|
118 | this.optimizerTabPage.Text = "Optimizer";
|
---|
119 | this.optimizerTabPage.UseVisualStyleBackColor = true;
|
---|
120 | this.optimizerTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.optimizerTabPage_DragDrop);
|
---|
121 | this.optimizerTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.optimizerTabPage_DragEnterOver);
|
---|
122 | this.optimizerTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.optimizerTabPage_DragEnterOver);
|
---|
123 | //
|
---|
124 | // optimizerViewHost
|
---|
125 | //
|
---|
126 | this.optimizerViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
127 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
128 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
129 | this.optimizerViewHost.Caption = "View";
|
---|
130 | this.optimizerViewHost.Content = null;
|
---|
131 | this.optimizerViewHost.Enabled = false;
|
---|
132 | this.optimizerViewHost.Location = new System.Drawing.Point(6, 36);
|
---|
133 | this.optimizerViewHost.Name = "optimizerViewHost";
|
---|
134 | this.optimizerViewHost.ReadOnly = false;
|
---|
135 | this.optimizerViewHost.Size = new System.Drawing.Size(659, 333);
|
---|
136 | this.optimizerViewHost.TabIndex = 3;
|
---|
137 | this.optimizerViewHost.ViewsLabelVisible = true;
|
---|
138 | this.optimizerViewHost.ViewType = null;
|
---|
139 | //
|
---|
140 | // openOptimizerButton
|
---|
141 | //
|
---|
142 | this.openOptimizerButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
143 | this.openOptimizerButton.Location = new System.Drawing.Point(36, 6);
|
---|
144 | this.openOptimizerButton.Name = "openOptimizerButton";
|
---|
145 | this.openOptimizerButton.Size = new System.Drawing.Size(24, 24);
|
---|
146 | this.openOptimizerButton.TabIndex = 1;
|
---|
147 | this.toolTip.SetToolTip(this.openOptimizerButton, "Open Optimizer");
|
---|
148 | this.openOptimizerButton.UseVisualStyleBackColor = true;
|
---|
149 | this.openOptimizerButton.Click += new System.EventHandler(this.openOptimizerButton_Click);
|
---|
150 | //
|
---|
151 | // newOptimizerButton
|
---|
152 | //
|
---|
153 | this.newOptimizerButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
|
---|
154 | this.newOptimizerButton.Location = new System.Drawing.Point(6, 6);
|
---|
155 | this.newOptimizerButton.Name = "newOptimizerButton";
|
---|
156 | this.newOptimizerButton.Size = new System.Drawing.Size(24, 24);
|
---|
157 | this.newOptimizerButton.TabIndex = 0;
|
---|
158 | this.toolTip.SetToolTip(this.newOptimizerButton, "New Optimizer");
|
---|
159 | this.newOptimizerButton.UseVisualStyleBackColor = true;
|
---|
160 | this.newOptimizerButton.Click += new System.EventHandler(this.newOptimizerButton_Click);
|
---|
161 | //
|
---|
162 | // runsTabPage
|
---|
163 | //
|
---|
164 | this.runsTabPage.Controls.Add(this.runsView);
|
---|
165 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
166 | this.runsTabPage.Name = "runsTabPage";
|
---|
167 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
168 | this.runsTabPage.Size = new System.Drawing.Size(671, 374);
|
---|
169 | this.runsTabPage.TabIndex = 2;
|
---|
170 | this.runsTabPage.Text = "Runs";
|
---|
171 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
172 | //
|
---|
173 | // runsView
|
---|
174 | //
|
---|
175 | this.runsView.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.runsView.Caption = "RunCollection View";
|
---|
179 | this.runsView.Content = null;
|
---|
180 | this.runsView.Location = new System.Drawing.Point(6, 6);
|
---|
181 | this.runsView.Name = "runsView";
|
---|
182 | this.runsView.ReadOnly = false;
|
---|
183 | this.runsView.Size = new System.Drawing.Size(659, 362);
|
---|
184 | this.runsView.TabIndex = 0;
|
---|
185 | //
|
---|
186 | // openFileDialog
|
---|
187 | //
|
---|
188 | this.openFileDialog.DefaultExt = "hl";
|
---|
189 | this.openFileDialog.FileName = "Optimizer";
|
---|
190 | this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
|
---|
191 | this.openFileDialog.Title = "Open Optimizer";
|
---|
192 | //
|
---|
193 | // repetitionsLabel
|
---|
194 | //
|
---|
195 | this.repetitionsLabel.AutoSize = true;
|
---|
196 | this.repetitionsLabel.Location = new System.Drawing.Point(3, 28);
|
---|
197 | this.repetitionsLabel.Name = "repetitionsLabel";
|
---|
198 | this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
|
---|
199 | this.repetitionsLabel.TabIndex = 3;
|
---|
200 | this.repetitionsLabel.Text = "&Repetitions:";
|
---|
201 | //
|
---|
202 | // repetitionsNumericUpDown
|
---|
203 | //
|
---|
204 | this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
205 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
206 | this.repetitionsNumericUpDown.Location = new System.Drawing.Point(72, 26);
|
---|
207 | this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
|
---|
208 | 1000000,
|
---|
209 | 0,
|
---|
210 | 0,
|
---|
211 | 0});
|
---|
212 | this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
|
---|
213 | 1,
|
---|
214 | 0,
|
---|
215 | 0,
|
---|
216 | 0});
|
---|
217 | this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
|
---|
218 | this.repetitionsNumericUpDown.Size = new System.Drawing.Size(607, 20);
|
---|
219 | this.repetitionsNumericUpDown.TabIndex = 4;
|
---|
220 | this.repetitionsNumericUpDown.ThousandsSeparator = true;
|
---|
221 | this.repetitionsNumericUpDown.Value = new decimal(new int[] {
|
---|
222 | 1,
|
---|
223 | 0,
|
---|
224 | 0,
|
---|
225 | 0});
|
---|
226 | this.repetitionsNumericUpDown.ValueChanged += new System.EventHandler(this.repetitionsNumericUpDown_ValueChanged);
|
---|
227 | this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
|
---|
228 | //
|
---|
229 | // BatchRunView
|
---|
230 | //
|
---|
231 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
232 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
233 | this.Controls.Add(this.repetitionsNumericUpDown);
|
---|
234 | this.Controls.Add(this.repetitionsLabel);
|
---|
235 | this.Controls.Add(this.tabControl);
|
---|
236 | this.Name = "BatchRunView";
|
---|
237 | this.Size = new System.Drawing.Size(679, 482);
|
---|
238 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
239 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
240 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
241 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
242 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
243 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
244 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
245 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
246 | this.Controls.SetChildIndex(this.repetitionsLabel, 0);
|
---|
247 | this.Controls.SetChildIndex(this.repetitionsNumericUpDown, 0);
|
---|
248 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
249 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
250 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
251 | this.tabControl.ResumeLayout(false);
|
---|
252 | this.optimizerTabPage.ResumeLayout(false);
|
---|
253 | this.runsTabPage.ResumeLayout(false);
|
---|
254 | ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
|
---|
255 | this.ResumeLayout(false);
|
---|
256 | this.PerformLayout();
|
---|
257 |
|
---|
258 | }
|
---|
259 | #endregion
|
---|
260 |
|
---|
261 | private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
|
---|
262 | private System.Windows.Forms.TabPage optimizerTabPage;
|
---|
263 | private HeuristicLab.MainForm.WindowsForms.ViewHost optimizerViewHost;
|
---|
264 | private System.Windows.Forms.Button newOptimizerButton;
|
---|
265 | private System.Windows.Forms.Button openOptimizerButton;
|
---|
266 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
267 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
268 | private System.Windows.Forms.Label repetitionsLabel;
|
---|
269 | private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
|
---|
270 | private RunCollectionView runsView;
|
---|
271 | }
|
---|
272 | }
|
---|