Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.Designer.cs @ 3332

Last change on this file since 3332 was 3299, checked in by swagner, 14 years ago

Enabled dragging and dropping of problems and algorithms in AlgorithmView and BatchRunView (#965).

File size: 18.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Optimization.Views {
23  partial class BatchRunView {
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 (algorithmTypeSelectorDialog != null) algorithmTypeSelectorDialog.Dispose();
36        if (components != null) components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.tabControl = new System.Windows.Forms.TabControl();
49      this.algorithmTabPage = new System.Windows.Forms.TabPage();
50      this.algorithmPanel = new System.Windows.Forms.Panel();
51      this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
52      this.saveAlgorithmButton = new System.Windows.Forms.Button();
53      this.openAlgorithmButton = new System.Windows.Forms.Button();
54      this.newAlgorithmButton = new System.Windows.Forms.Button();
55      this.runsTabPage = new System.Windows.Forms.TabPage();
56      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
57      this.startButton = new System.Windows.Forms.Button();
58      this.stopButton = new System.Windows.Forms.Button();
59      this.resetButton = new System.Windows.Forms.Button();
60      this.executionTimeLabel = new System.Windows.Forms.Label();
61      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
62      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
63      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
64      this.repetitionsLabel = new System.Windows.Forms.Label();
65      this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
66      this.pauseButton = new System.Windows.Forms.Button();
67      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
68      this.tabControl.SuspendLayout();
69      this.algorithmTabPage.SuspendLayout();
70      this.algorithmPanel.SuspendLayout();
71      this.runsTabPage.SuspendLayout();
72      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
73      this.SuspendLayout();
74      //
75      // nameTextBox
76      //
77      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
78      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
79      this.nameTextBox.Size = new System.Drawing.Size(607, 20);
80      //
81      // descriptionTextBox
82      //
83      this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
84      //
85      // tabControl
86      //
87      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88                  | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.tabControl.Controls.Add(this.algorithmTabPage);
91      this.tabControl.Controls.Add(this.runsTabPage);
92      this.tabControl.Location = new System.Drawing.Point(0, 78);
93      this.tabControl.Name = "tabControl";
94      this.tabControl.SelectedIndex = 0;
95      this.tabControl.Size = new System.Drawing.Size(679, 374);
96      this.tabControl.TabIndex = 6;
97      //
98      // algorithmTabPage
99      //
100      this.algorithmTabPage.Controls.Add(this.algorithmPanel);
101      this.algorithmTabPage.Controls.Add(this.saveAlgorithmButton);
102      this.algorithmTabPage.Controls.Add(this.openAlgorithmButton);
103      this.algorithmTabPage.Controls.Add(this.newAlgorithmButton);
104      this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
105      this.algorithmTabPage.Name = "algorithmTabPage";
106      this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
107      this.algorithmTabPage.Size = new System.Drawing.Size(671, 348);
108      this.algorithmTabPage.TabIndex = 1;
109      this.algorithmTabPage.Text = "Algorithm";
110      this.algorithmTabPage.UseVisualStyleBackColor = true;
111      //
112      // algorithmPanel
113      //
114      this.algorithmPanel.AllowDrop = true;
115      this.algorithmPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
116                  | System.Windows.Forms.AnchorStyles.Left)
117                  | System.Windows.Forms.AnchorStyles.Right)));
118      this.algorithmPanel.Controls.Add(this.algorithmViewHost);
119      this.algorithmPanel.Location = new System.Drawing.Point(6, 36);
120      this.algorithmPanel.Name = "algorithmPanel";
121      this.algorithmPanel.Size = new System.Drawing.Size(659, 306);
122      this.algorithmPanel.TabIndex = 3;
123      this.algorithmPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
124      this.algorithmPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragDrop);
125      this.algorithmPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
126      //
127      // algorithmViewHost
128      //
129      this.algorithmViewHost.Content = null;
130      this.algorithmViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
131      this.algorithmViewHost.Location = new System.Drawing.Point(0, 0);
132      this.algorithmViewHost.Name = "algorithmViewHost";
133      this.algorithmViewHost.Size = new System.Drawing.Size(659, 306);
134      this.algorithmViewHost.TabIndex = 0;
135      this.algorithmViewHost.ViewType = null;
136      //
137      // saveAlgorithmButton
138      //
139      this.saveAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
140      this.saveAlgorithmButton.Location = new System.Drawing.Point(66, 6);
141      this.saveAlgorithmButton.Name = "saveAlgorithmButton";
142      this.saveAlgorithmButton.Size = new System.Drawing.Size(24, 24);
143      this.saveAlgorithmButton.TabIndex = 2;
144      this.toolTip.SetToolTip(this.saveAlgorithmButton, "Save Problem");
145      this.saveAlgorithmButton.UseVisualStyleBackColor = true;
146      this.saveAlgorithmButton.Click += new System.EventHandler(this.saveAlgorithmButton_Click);
147      //
148      // openAlgorithmButton
149      //
150      this.openAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
151      this.openAlgorithmButton.Location = new System.Drawing.Point(36, 6);
152      this.openAlgorithmButton.Name = "openAlgorithmButton";
153      this.openAlgorithmButton.Size = new System.Drawing.Size(24, 24);
154      this.openAlgorithmButton.TabIndex = 1;
155      this.toolTip.SetToolTip(this.openAlgorithmButton, "Open Problem");
156      this.openAlgorithmButton.UseVisualStyleBackColor = true;
157      this.openAlgorithmButton.Click += new System.EventHandler(this.openAlgorithmButton_Click);
158      //
159      // newAlgorithmButton
160      //
161      this.newAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
162      this.newAlgorithmButton.Location = new System.Drawing.Point(6, 6);
163      this.newAlgorithmButton.Name = "newAlgorithmButton";
164      this.newAlgorithmButton.Size = new System.Drawing.Size(24, 24);
165      this.newAlgorithmButton.TabIndex = 0;
166      this.toolTip.SetToolTip(this.newAlgorithmButton, "New Problem");
167      this.newAlgorithmButton.UseVisualStyleBackColor = true;
168      this.newAlgorithmButton.Click += new System.EventHandler(this.newAlgorithmButton_Click);
169      //
170      // runsTabPage
171      //
172      this.runsTabPage.Controls.Add(this.runsView);
173      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
174      this.runsTabPage.Name = "runsTabPage";
175      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
176      this.runsTabPage.Size = new System.Drawing.Size(671, 348);
177      this.runsTabPage.TabIndex = 2;
178      this.runsTabPage.Text = "Runs";
179      this.runsTabPage.UseVisualStyleBackColor = true;
180      //
181      // runsView
182      //
183      this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
184                  | System.Windows.Forms.AnchorStyles.Left)
185                  | System.Windows.Forms.AnchorStyles.Right)));
186      this.runsView.Caption = "RunCollection";
187      this.runsView.Content = null;
188      this.runsView.Location = new System.Drawing.Point(6, 6);
189      this.runsView.Name = "runsView";
190      this.runsView.Size = new System.Drawing.Size(659, 336);
191      this.runsView.TabIndex = 0;
192      //
193      // startButton
194      //
195      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
196      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
197      this.startButton.Location = new System.Drawing.Point(0, 458);
198      this.startButton.Name = "startButton";
199      this.startButton.Size = new System.Drawing.Size(24, 24);
200      this.startButton.TabIndex = 7;
201      this.toolTip.SetToolTip(this.startButton, "Start/Resume Batch Run");
202      this.startButton.UseVisualStyleBackColor = true;
203      this.startButton.Click += new System.EventHandler(this.startButton_Click);
204      //
205      // stopButton
206      //
207      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
208      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
209      this.stopButton.Location = new System.Drawing.Point(60, 458);
210      this.stopButton.Name = "stopButton";
211      this.stopButton.Size = new System.Drawing.Size(24, 24);
212      this.stopButton.TabIndex = 9;
213      this.toolTip.SetToolTip(this.stopButton, "Stop Batch Run");
214      this.stopButton.UseVisualStyleBackColor = true;
215      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
216      //
217      // resetButton
218      //
219      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
220      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
221      this.resetButton.Location = new System.Drawing.Point(90, 458);
222      this.resetButton.Name = "resetButton";
223      this.resetButton.Size = new System.Drawing.Size(24, 24);
224      this.resetButton.TabIndex = 10;
225      this.toolTip.SetToolTip(this.resetButton, "Reset Batch Run");
226      this.resetButton.UseVisualStyleBackColor = true;
227      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
228      //
229      // executionTimeLabel
230      //
231      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
232      this.executionTimeLabel.AutoSize = true;
233      this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
234      this.executionTimeLabel.Name = "executionTimeLabel";
235      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
236      this.executionTimeLabel.TabIndex = 11;
237      this.executionTimeLabel.Text = "&Execution Time:";
238      //
239      // executionTimeTextBox
240      //
241      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
242      this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
243      this.executionTimeTextBox.Name = "executionTimeTextBox";
244      this.executionTimeTextBox.ReadOnly = true;
245      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
246      this.executionTimeTextBox.TabIndex = 12;
247      //
248      // openFileDialog
249      //
250      this.openFileDialog.DefaultExt = "hl";
251      this.openFileDialog.FileName = "Algorithm";
252      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
253      this.openFileDialog.Title = "Open Algorithm";
254      //
255      // saveFileDialog
256      //
257      this.saveFileDialog.DefaultExt = "hl";
258      this.saveFileDialog.FileName = "Algorithm";
259      this.saveFileDialog.Filter = "Uncompressed HeuristicLab Files|*.hl|HeuristicLab Files|*.hl|All Files|*.*";
260      this.saveFileDialog.FilterIndex = 2;
261      this.saveFileDialog.Title = "Save Algorithm";
262      //
263      // repetitionsLabel
264      //
265      this.repetitionsLabel.AutoSize = true;
266      this.repetitionsLabel.Location = new System.Drawing.Point(3, 54);
267      this.repetitionsLabel.Name = "repetitionsLabel";
268      this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
269      this.repetitionsLabel.TabIndex = 4;
270      this.repetitionsLabel.Text = "&Repetitions:";
271      //
272      // repetitionsNumericUpDown
273      //
274      this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
275                  | System.Windows.Forms.AnchorStyles.Right)));
276      this.repetitionsNumericUpDown.Location = new System.Drawing.Point(72, 52);
277      this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
278            1000000,
279            0,
280            0,
281            0});
282      this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
283            1,
284            0,
285            0,
286            0});
287      this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
288      this.repetitionsNumericUpDown.Size = new System.Drawing.Size(607, 20);
289      this.repetitionsNumericUpDown.TabIndex = 5;
290      this.repetitionsNumericUpDown.ThousandsSeparator = true;
291      this.repetitionsNumericUpDown.Value = new decimal(new int[] {
292            1,
293            0,
294            0,
295            0});
296      this.repetitionsNumericUpDown.ValueChanged += new System.EventHandler(this.repetitionsNumericUpDown_ValueChanged);
297      this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
298      //
299      // pauseButton
300      //
301      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
302      this.pauseButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
303      this.pauseButton.Location = new System.Drawing.Point(30, 458);
304      this.pauseButton.Name = "pauseButton";
305      this.pauseButton.Size = new System.Drawing.Size(24, 24);
306      this.pauseButton.TabIndex = 8;
307      this.toolTip.SetToolTip(this.pauseButton, "Pause Batch Run");
308      this.pauseButton.UseVisualStyleBackColor = true;
309      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
310      //
311      // BatchRunView
312      //
313      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
314      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
315      this.Controls.Add(this.tabControl);
316      this.Controls.Add(this.startButton);
317      this.Controls.Add(this.executionTimeTextBox);
318      this.Controls.Add(this.executionTimeLabel);
319      this.Controls.Add(this.repetitionsNumericUpDown);
320      this.Controls.Add(this.repetitionsLabel);
321      this.Controls.Add(this.pauseButton);
322      this.Controls.Add(this.stopButton);
323      this.Controls.Add(this.resetButton);
324      this.Name = "BatchRunView";
325      this.Size = new System.Drawing.Size(679, 482);
326      this.Controls.SetChildIndex(this.resetButton, 0);
327      this.Controls.SetChildIndex(this.stopButton, 0);
328      this.Controls.SetChildIndex(this.pauseButton, 0);
329      this.Controls.SetChildIndex(this.repetitionsLabel, 0);
330      this.Controls.SetChildIndex(this.repetitionsNumericUpDown, 0);
331      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
332      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
333      this.Controls.SetChildIndex(this.startButton, 0);
334      this.Controls.SetChildIndex(this.tabControl, 0);
335      this.Controls.SetChildIndex(this.nameLabel, 0);
336      this.Controls.SetChildIndex(this.descriptionLabel, 0);
337      this.Controls.SetChildIndex(this.nameTextBox, 0);
338      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
339      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
340      this.tabControl.ResumeLayout(false);
341      this.algorithmTabPage.ResumeLayout(false);
342      this.algorithmPanel.ResumeLayout(false);
343      this.runsTabPage.ResumeLayout(false);
344      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
345      this.ResumeLayout(false);
346      this.PerformLayout();
347
348    }
349    #endregion
350
351    private System.Windows.Forms.TabControl tabControl;
352    private System.Windows.Forms.TabPage algorithmTabPage;
353    private HeuristicLab.MainForm.WindowsForms.ViewHost algorithmViewHost;
354    private System.Windows.Forms.Button newAlgorithmButton;
355    private System.Windows.Forms.Button saveAlgorithmButton;
356    private System.Windows.Forms.Button openAlgorithmButton;
357    private System.Windows.Forms.Button startButton;
358    private System.Windows.Forms.Button stopButton;
359    private System.Windows.Forms.Button resetButton;
360    private System.Windows.Forms.Label executionTimeLabel;
361    private System.Windows.Forms.TextBox executionTimeTextBox;
362    private System.Windows.Forms.OpenFileDialog openFileDialog;
363    private System.Windows.Forms.SaveFileDialog saveFileDialog;
364    private System.Windows.Forms.TabPage runsTabPage;
365    private System.Windows.Forms.Label repetitionsLabel;
366    private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
367    private RunCollectionView runsView;
368    private System.Windows.Forms.Button pauseButton;
369    private System.Windows.Forms.Panel algorithmPanel;
370
371  }
372}
Note: See TracBrowser for help on using the repository browser.