Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs @ 3226

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

Implemented first version of algorithm batch processing (#947).

File size: 16.2 KB
RevLine 
[2851]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 AlgorithmView {
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 (problemTypeSelectorDialog != null) problemTypeSelectorDialog.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.parametersTabPage = new System.Windows.Forms.TabPage();
50      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
51      this.problemTabPage = new System.Windows.Forms.TabPage();
52      this.saveProblemButton = new System.Windows.Forms.Button();
53      this.openProblemButton = new System.Windows.Forms.Button();
54      this.newProblemButton = new System.Windows.Forms.Button();
55      this.problemViewHost = new HeuristicLab.Core.Views.ViewHost();
[2882]56      this.resultsTabPage = new System.Windows.Forms.TabPage();
[3226]57      this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
[2851]58      this.startButton = new System.Windows.Forms.Button();
59      this.stopButton = new System.Windows.Forms.Button();
60      this.resetButton = new System.Windows.Forms.Button();
61      this.executionTimeLabel = new System.Windows.Forms.Label();
62      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
63      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
64      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
65      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
66      this.tabControl.SuspendLayout();
67      this.parametersTabPage.SuspendLayout();
68      this.problemTabPage.SuspendLayout();
[2882]69      this.resultsTabPage.SuspendLayout();
[2851]70      this.SuspendLayout();
71      //
72      // nameTextBox
73      //
74      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
75      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[2882]76      this.nameTextBox.Size = new System.Drawing.Size(607, 20);
[2851]77      //
78      // descriptionTextBox
79      //
[2917]80      this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
[2851]81      //
82      // tabControl
83      //
84      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
85                  | System.Windows.Forms.AnchorStyles.Left)
86                  | System.Windows.Forms.AnchorStyles.Right)));
87      this.tabControl.Controls.Add(this.parametersTabPage);
88      this.tabControl.Controls.Add(this.problemTabPage);
[2882]89      this.tabControl.Controls.Add(this.resultsTabPage);
[2917]90      this.tabControl.Location = new System.Drawing.Point(0, 52);
[2851]91      this.tabControl.Name = "tabControl";
92      this.tabControl.SelectedIndex = 0;
[2917]93      this.tabControl.Size = new System.Drawing.Size(679, 400);
[2851]94      this.tabControl.TabIndex = 4;
95      //
96      // parametersTabPage
97      //
98      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
99      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
100      this.parametersTabPage.Name = "parametersTabPage";
101      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
[2917]102      this.parametersTabPage.Size = new System.Drawing.Size(671, 374);
[2851]103      this.parametersTabPage.TabIndex = 0;
104      this.parametersTabPage.Text = "Parameters";
105      this.parametersTabPage.UseVisualStyleBackColor = true;
106      //
107      // parameterCollectionView
108      //
109      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.parameterCollectionView.Caption = "ParameterCollection";
113      this.parameterCollectionView.Content = null;
114      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
115      this.parameterCollectionView.Name = "parameterCollectionView";
[2917]116      this.parameterCollectionView.Size = new System.Drawing.Size(659, 362);
[2851]117      this.parameterCollectionView.TabIndex = 0;
118      //
119      // problemTabPage
120      //
121      this.problemTabPage.Controls.Add(this.saveProblemButton);
122      this.problemTabPage.Controls.Add(this.openProblemButton);
123      this.problemTabPage.Controls.Add(this.newProblemButton);
124      this.problemTabPage.Controls.Add(this.problemViewHost);
125      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
126      this.problemTabPage.Name = "problemTabPage";
127      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
[2917]128      this.problemTabPage.Size = new System.Drawing.Size(671, 374);
[2851]129      this.problemTabPage.TabIndex = 1;
130      this.problemTabPage.Text = "Problem";
131      this.problemTabPage.UseVisualStyleBackColor = true;
132      //
133      // saveProblemButton
134      //
135      this.saveProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
136      this.saveProblemButton.Location = new System.Drawing.Point(66, 6);
137      this.saveProblemButton.Name = "saveProblemButton";
138      this.saveProblemButton.Size = new System.Drawing.Size(24, 24);
139      this.saveProblemButton.TabIndex = 2;
[2882]140      this.toolTip.SetToolTip(this.saveProblemButton, "Save Problem");
[2851]141      this.saveProblemButton.UseVisualStyleBackColor = true;
142      this.saveProblemButton.Click += new System.EventHandler(this.saveProblemButton_Click);
143      //
144      // openProblemButton
145      //
146      this.openProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
147      this.openProblemButton.Location = new System.Drawing.Point(36, 6);
148      this.openProblemButton.Name = "openProblemButton";
149      this.openProblemButton.Size = new System.Drawing.Size(24, 24);
150      this.openProblemButton.TabIndex = 1;
[2882]151      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
[2851]152      this.openProblemButton.UseVisualStyleBackColor = true;
153      this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
154      //
155      // newProblemButton
156      //
157      this.newProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
158      this.newProblemButton.Location = new System.Drawing.Point(6, 6);
159      this.newProblemButton.Name = "newProblemButton";
160      this.newProblemButton.Size = new System.Drawing.Size(24, 24);
161      this.newProblemButton.TabIndex = 0;
[2882]162      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
[2851]163      this.newProblemButton.UseVisualStyleBackColor = true;
164      this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
165      //
166      // problemViewHost
167      //
168      this.problemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
169                  | System.Windows.Forms.AnchorStyles.Left)
170                  | System.Windows.Forms.AnchorStyles.Right)));
171      this.problemViewHost.Content = null;
172      this.problemViewHost.Location = new System.Drawing.Point(6, 36);
173      this.problemViewHost.Name = "problemViewHost";
[2917]174      this.problemViewHost.Size = new System.Drawing.Size(659, 332);
[2851]175      this.problemViewHost.TabIndex = 3;
176      this.problemViewHost.ViewType = null;
177      //
[2882]178      // resultsTabPage
179      //
180      this.resultsTabPage.Controls.Add(this.resultsView);
181      this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
182      this.resultsTabPage.Name = "resultsTabPage";
183      this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3);
[2917]184      this.resultsTabPage.Size = new System.Drawing.Size(671, 374);
[2882]185      this.resultsTabPage.TabIndex = 2;
186      this.resultsTabPage.Text = "Results";
187      this.resultsTabPage.UseVisualStyleBackColor = true;
188      //
189      // resultsView
190      //
191      this.resultsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
192                  | System.Windows.Forms.AnchorStyles.Left)
193                  | System.Windows.Forms.AnchorStyles.Right)));
[3226]194      this.resultsView.Caption = "ResultsCollection";
[2882]195      this.resultsView.Content = null;
196      this.resultsView.Location = new System.Drawing.Point(6, 6);
197      this.resultsView.Name = "resultsView";
[2917]198      this.resultsView.Size = new System.Drawing.Size(659, 362);
[2882]199      this.resultsView.TabIndex = 0;
200      //
[2851]201      // startButton
202      //
203      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
204      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
[2882]205      this.startButton.Location = new System.Drawing.Point(0, 458);
[2851]206      this.startButton.Name = "startButton";
207      this.startButton.Size = new System.Drawing.Size(24, 24);
208      this.startButton.TabIndex = 5;
[3225]209      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
[2851]210      this.startButton.UseVisualStyleBackColor = true;
211      this.startButton.Click += new System.EventHandler(this.startButton_Click);
212      //
213      // stopButton
214      //
215      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
[3225]216      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
[2882]217      this.stopButton.Location = new System.Drawing.Point(30, 458);
[2851]218      this.stopButton.Name = "stopButton";
219      this.stopButton.Size = new System.Drawing.Size(24, 24);
220      this.stopButton.TabIndex = 6;
[3225]221      this.toolTip.SetToolTip(this.stopButton, "Pause Algorithm");
[2851]222      this.stopButton.UseVisualStyleBackColor = true;
223      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
224      //
225      // resetButton
226      //
227      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
228      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
[2882]229      this.resetButton.Location = new System.Drawing.Point(60, 458);
[2851]230      this.resetButton.Name = "resetButton";
231      this.resetButton.Size = new System.Drawing.Size(24, 24);
232      this.resetButton.TabIndex = 7;
[2882]233      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
[2851]234      this.resetButton.UseVisualStyleBackColor = true;
235      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
236      //
237      // executionTimeLabel
238      //
239      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
240      this.executionTimeLabel.AutoSize = true;
[2882]241      this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
[2851]242      this.executionTimeLabel.Name = "executionTimeLabel";
243      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
244      this.executionTimeLabel.TabIndex = 8;
245      this.executionTimeLabel.Text = "&Execution Time:";
246      //
247      // executionTimeTextBox
248      //
249      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
[2882]250      this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
[2851]251      this.executionTimeTextBox.Name = "executionTimeTextBox";
252      this.executionTimeTextBox.ReadOnly = true;
253      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
254      this.executionTimeTextBox.TabIndex = 9;
255      //
256      // openFileDialog
257      //
258      this.openFileDialog.DefaultExt = "hl";
259      this.openFileDialog.FileName = "Problem";
260      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
261      this.openFileDialog.Title = "Open Problem";
262      //
263      // saveFileDialog
264      //
265      this.saveFileDialog.DefaultExt = "hl";
266      this.saveFileDialog.FileName = "Problem";
267      this.saveFileDialog.Filter = "Uncompressed HeuristicLab Files|*.hl|HeuristicLab Files|*.hl|All Files|*.*";
268      this.saveFileDialog.FilterIndex = 2;
269      this.saveFileDialog.Title = "Save Problem";
270      //
271      // AlgorithmView
272      //
273      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
274      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
275      this.Controls.Add(this.tabControl);
276      this.Controls.Add(this.startButton);
277      this.Controls.Add(this.stopButton);
278      this.Controls.Add(this.executionTimeTextBox);
279      this.Controls.Add(this.executionTimeLabel);
280      this.Controls.Add(this.resetButton);
281      this.Name = "AlgorithmView";
[2882]282      this.Size = new System.Drawing.Size(679, 482);
[2851]283      this.Controls.SetChildIndex(this.resetButton, 0);
284      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
285      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
286      this.Controls.SetChildIndex(this.stopButton, 0);
287      this.Controls.SetChildIndex(this.startButton, 0);
288      this.Controls.SetChildIndex(this.tabControl, 0);
289      this.Controls.SetChildIndex(this.nameLabel, 0);
290      this.Controls.SetChildIndex(this.descriptionLabel, 0);
291      this.Controls.SetChildIndex(this.nameTextBox, 0);
292      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
293      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
294      this.tabControl.ResumeLayout(false);
295      this.parametersTabPage.ResumeLayout(false);
296      this.problemTabPage.ResumeLayout(false);
[2882]297      this.resultsTabPage.ResumeLayout(false);
[2851]298      this.ResumeLayout(false);
299      this.PerformLayout();
300
301    }
302
303    #endregion
304
305    protected System.Windows.Forms.TabControl tabControl;
306    protected System.Windows.Forms.TabPage parametersTabPage;
307    protected System.Windows.Forms.TabPage problemTabPage;
308    protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
309    protected HeuristicLab.Core.Views.ViewHost problemViewHost;
310    protected System.Windows.Forms.Button newProblemButton;
311    protected System.Windows.Forms.Button saveProblemButton;
312    protected System.Windows.Forms.Button openProblemButton;
313    protected System.Windows.Forms.Button startButton;
314    protected System.Windows.Forms.Button stopButton;
315    protected System.Windows.Forms.Button resetButton;
316    protected System.Windows.Forms.Label executionTimeLabel;
317    protected System.Windows.Forms.TextBox executionTimeTextBox;
318    protected System.Windows.Forms.OpenFileDialog openFileDialog;
319    protected System.Windows.Forms.SaveFileDialog saveFileDialog;
[2882]320    protected System.Windows.Forms.TabPage resultsTabPage;
[3226]321    protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView;
[2851]322
323  }
324}
Note: See TracBrowser for help on using the repository browser.