Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5142 was 4522, checked in by mkommend, 14 years ago

Enabled dropping of values on various views (ticket #1155).

File size: 19.4 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.problemTabPage = new System.Windows.Forms.TabPage();
[3299]50      this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
[2851]51      this.openProblemButton = new System.Windows.Forms.Button();
52      this.newProblemButton = new System.Windows.Forms.Button();
[4102]53      this.parametersTabPage = new System.Windows.Forms.TabPage();
54      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
[2882]55      this.resultsTabPage = new System.Windows.Forms.TabPage();
[3226]56      this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
[3299]57      this.runsTabPage = new System.Windows.Forms.TabPage();
58      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
[2851]59      this.startButton = new System.Windows.Forms.Button();
[3262]60      this.pauseButton = new System.Windows.Forms.Button();
[2851]61      this.resetButton = new System.Windows.Forms.Button();
62      this.executionTimeLabel = new System.Windows.Forms.Label();
63      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
64      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
[3262]65      this.stopButton = new System.Windows.Forms.Button();
[4102]66      this.storeAlgorithmInEachRunCheckBox = new System.Windows.Forms.CheckBox();
[2851]67      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
68      this.tabControl.SuspendLayout();
[4102]69      this.problemTabPage.SuspendLayout();
[2851]70      this.parametersTabPage.SuspendLayout();
[2882]71      this.resultsTabPage.SuspendLayout();
[3275]72      this.runsTabPage.SuspendLayout();
[2851]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);
[2882]79      this.nameTextBox.Size = new System.Drawing.Size(607, 20);
[2851]80      //
81      // descriptionTextBox
82      //
[2917]83      this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
[2851]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)));
[3505]90      this.tabControl.Controls.Add(this.problemTabPage);
[2851]91      this.tabControl.Controls.Add(this.parametersTabPage);
[2882]92      this.tabControl.Controls.Add(this.resultsTabPage);
[3275]93      this.tabControl.Controls.Add(this.runsTabPage);
[2917]94      this.tabControl.Location = new System.Drawing.Point(0, 52);
[2851]95      this.tabControl.Name = "tabControl";
96      this.tabControl.SelectedIndex = 0;
[2917]97      this.tabControl.Size = new System.Drawing.Size(679, 400);
[2851]98      this.tabControl.TabIndex = 4;
99      //
100      // problemTabPage
101      //
[4011]102      this.problemTabPage.Controls.Add(this.problemViewHost);
[2851]103      this.problemTabPage.Controls.Add(this.openProblemButton);
104      this.problemTabPage.Controls.Add(this.newProblemButton);
[4522]105      this.problemTabPage.AllowDrop = true;
[2851]106      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
107      this.problemTabPage.Name = "problemTabPage";
108      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
[2917]109      this.problemTabPage.Size = new System.Drawing.Size(671, 374);
[3505]110      this.problemTabPage.TabIndex = 0;
[2851]111      this.problemTabPage.Text = "Problem";
112      this.problemTabPage.UseVisualStyleBackColor = true;
[4522]113      this.problemTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragDrop);
114      this.problemTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
115      this.problemTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
[2851]116      //
[4011]117      // problemViewHost
[3299]118      //
[4011]119      this.problemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
[3299]120                  | System.Windows.Forms.AnchorStyles.Left)
121                  | System.Windows.Forms.AnchorStyles.Right)));
[4102]122      this.problemViewHost.Caption = "View";
123      this.problemViewHost.Content = null;
[4011]124      this.problemViewHost.Location = new System.Drawing.Point(6, 36);
[3299]125      this.problemViewHost.Name = "problemViewHost";
[4102]126      this.problemViewHost.ReadOnly = false;
[3299]127      this.problemViewHost.Size = new System.Drawing.Size(659, 332);
[4011]128      this.problemViewHost.TabIndex = 3;
[3299]129      this.problemViewHost.ViewType = null;
130      //
[2851]131      // openProblemButton
132      //
133      this.openProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
134      this.openProblemButton.Location = new System.Drawing.Point(36, 6);
135      this.openProblemButton.Name = "openProblemButton";
136      this.openProblemButton.Size = new System.Drawing.Size(24, 24);
137      this.openProblemButton.TabIndex = 1;
[2882]138      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
[2851]139      this.openProblemButton.UseVisualStyleBackColor = true;
140      this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
141      //
142      // newProblemButton
143      //
144      this.newProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
145      this.newProblemButton.Location = new System.Drawing.Point(6, 6);
146      this.newProblemButton.Name = "newProblemButton";
147      this.newProblemButton.Size = new System.Drawing.Size(24, 24);
148      this.newProblemButton.TabIndex = 0;
[2882]149      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
[2851]150      this.newProblemButton.UseVisualStyleBackColor = true;
151      this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
152      //
[4102]153      // parametersTabPage
154      //
155      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
156      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
157      this.parametersTabPage.Name = "parametersTabPage";
158      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
159      this.parametersTabPage.Size = new System.Drawing.Size(671, 374);
160      this.parametersTabPage.TabIndex = 1;
161      this.parametersTabPage.Text = "Parameters";
162      this.parametersTabPage.UseVisualStyleBackColor = true;
163      //
164      // parameterCollectionView
165      //
166      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
167                  | System.Windows.Forms.AnchorStyles.Left)
168                  | System.Windows.Forms.AnchorStyles.Right)));
169      this.parameterCollectionView.Caption = "ParameterCollection View";
170      this.parameterCollectionView.Content = null;
171      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
172      this.parameterCollectionView.Name = "parameterCollectionView";
173      this.parameterCollectionView.ReadOnly = false;
174      this.parameterCollectionView.Size = new System.Drawing.Size(659, 362);
175      this.parameterCollectionView.TabIndex = 0;
176      //
[2882]177      // resultsTabPage
178      //
179      this.resultsTabPage.Controls.Add(this.resultsView);
180      this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
181      this.resultsTabPage.Name = "resultsTabPage";
182      this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3);
[2917]183      this.resultsTabPage.Size = new System.Drawing.Size(671, 374);
[2882]184      this.resultsTabPage.TabIndex = 2;
185      this.resultsTabPage.Text = "Results";
186      this.resultsTabPage.UseVisualStyleBackColor = true;
187      //
188      // resultsView
189      //
190      this.resultsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
191                  | System.Windows.Forms.AnchorStyles.Left)
192                  | System.Windows.Forms.AnchorStyles.Right)));
[4102]193      this.resultsView.Caption = "ResultCollection View";
[2882]194      this.resultsView.Content = null;
195      this.resultsView.Location = new System.Drawing.Point(6, 6);
196      this.resultsView.Name = "resultsView";
[4102]197      this.resultsView.ReadOnly = true;
[2917]198      this.resultsView.Size = new System.Drawing.Size(659, 362);
[2882]199      this.resultsView.TabIndex = 0;
200      //
[3299]201      // runsTabPage
202      //
[4102]203      this.runsTabPage.Controls.Add(this.storeAlgorithmInEachRunCheckBox);
[3299]204      this.runsTabPage.Controls.Add(this.runsView);
205      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
206      this.runsTabPage.Name = "runsTabPage";
207      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
208      this.runsTabPage.Size = new System.Drawing.Size(671, 374);
209      this.runsTabPage.TabIndex = 3;
210      this.runsTabPage.Text = "Runs";
211      this.runsTabPage.UseVisualStyleBackColor = true;
212      //
213      // runsView
214      //
215      this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
216                  | System.Windows.Forms.AnchorStyles.Left)
217                  | System.Windows.Forms.AnchorStyles.Right)));
[4102]218      this.runsView.Caption = "RunCollection View";
[3299]219      this.runsView.Content = null;
220      this.runsView.Location = new System.Drawing.Point(6, 6);
221      this.runsView.Name = "runsView";
[4102]222      this.runsView.ReadOnly = false;
[3299]223      this.runsView.Size = new System.Drawing.Size(659, 362);
224      this.runsView.TabIndex = 0;
225      //
[2851]226      // startButton
227      //
228      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
229      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
[2882]230      this.startButton.Location = new System.Drawing.Point(0, 458);
[2851]231      this.startButton.Name = "startButton";
232      this.startButton.Size = new System.Drawing.Size(24, 24);
233      this.startButton.TabIndex = 5;
[3225]234      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
[2851]235      this.startButton.UseVisualStyleBackColor = true;
236      this.startButton.Click += new System.EventHandler(this.startButton_Click);
237      //
[3262]238      // pauseButton
[2851]239      //
[3262]240      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
241      this.pauseButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
242      this.pauseButton.Location = new System.Drawing.Point(30, 458);
243      this.pauseButton.Name = "pauseButton";
244      this.pauseButton.Size = new System.Drawing.Size(24, 24);
245      this.pauseButton.TabIndex = 6;
246      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
247      this.pauseButton.UseVisualStyleBackColor = true;
248      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
[2851]249      //
250      // resetButton
251      //
252      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
253      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
[3262]254      this.resetButton.Location = new System.Drawing.Point(90, 458);
[2851]255      this.resetButton.Name = "resetButton";
256      this.resetButton.Size = new System.Drawing.Size(24, 24);
[3262]257      this.resetButton.TabIndex = 8;
[2882]258      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
[2851]259      this.resetButton.UseVisualStyleBackColor = true;
260      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
261      //
262      // executionTimeLabel
263      //
264      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
265      this.executionTimeLabel.AutoSize = true;
[2882]266      this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
[2851]267      this.executionTimeLabel.Name = "executionTimeLabel";
268      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
[3262]269      this.executionTimeLabel.TabIndex = 9;
[2851]270      this.executionTimeLabel.Text = "&Execution Time:";
271      //
272      // executionTimeTextBox
273      //
274      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
[2882]275      this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
[2851]276      this.executionTimeTextBox.Name = "executionTimeTextBox";
277      this.executionTimeTextBox.ReadOnly = true;
278      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
[3262]279      this.executionTimeTextBox.TabIndex = 10;
[2851]280      //
281      // openFileDialog
282      //
283      this.openFileDialog.DefaultExt = "hl";
284      this.openFileDialog.FileName = "Problem";
285      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
286      this.openFileDialog.Title = "Open Problem";
287      //
[3262]288      // stopButton
289      //
290      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
291      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
292      this.stopButton.Location = new System.Drawing.Point(60, 458);
293      this.stopButton.Name = "stopButton";
294      this.stopButton.Size = new System.Drawing.Size(24, 24);
295      this.stopButton.TabIndex = 7;
296      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
297      this.stopButton.UseVisualStyleBackColor = true;
298      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
299      //
[4102]300      // storeAlgorithmInEachRunCheckBox
301      //
302      this.storeAlgorithmInEachRunCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
303      this.storeAlgorithmInEachRunCheckBox.AutoSize = true;
304      this.storeAlgorithmInEachRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
305      this.storeAlgorithmInEachRunCheckBox.Checked = true;
306      this.storeAlgorithmInEachRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
307      this.storeAlgorithmInEachRunCheckBox.Location = new System.Drawing.Point(503, 6);
308      this.storeAlgorithmInEachRunCheckBox.Name = "storeAlgorithmInEachRunCheckBox";
309      this.storeAlgorithmInEachRunCheckBox.Size = new System.Drawing.Size(161, 17);
310      this.storeAlgorithmInEachRunCheckBox.TabIndex = 1;
311      this.storeAlgorithmInEachRunCheckBox.Text = "&Store Algorithm in each Run:";
312      this.toolTip.SetToolTip(this.storeAlgorithmInEachRunCheckBox, "Check to store a copy of the algorithm in each run.");
313      this.storeAlgorithmInEachRunCheckBox.UseVisualStyleBackColor = true;
314      this.storeAlgorithmInEachRunCheckBox.CheckedChanged += new System.EventHandler(this.storeAlgorithmInEachRunCheckBox_CheckedChanged);
315      //
[2851]316      // AlgorithmView
317      //
318      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
319      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
320      this.Controls.Add(this.tabControl);
321      this.Controls.Add(this.startButton);
[3262]322      this.Controls.Add(this.pauseButton);
[2851]323      this.Controls.Add(this.executionTimeTextBox);
324      this.Controls.Add(this.executionTimeLabel);
[3262]325      this.Controls.Add(this.stopButton);
[2851]326      this.Controls.Add(this.resetButton);
327      this.Name = "AlgorithmView";
[2882]328      this.Size = new System.Drawing.Size(679, 482);
[2851]329      this.Controls.SetChildIndex(this.resetButton, 0);
[3262]330      this.Controls.SetChildIndex(this.stopButton, 0);
[2851]331      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
332      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
[3262]333      this.Controls.SetChildIndex(this.pauseButton, 0);
[2851]334      this.Controls.SetChildIndex(this.startButton, 0);
335      this.Controls.SetChildIndex(this.tabControl, 0);
336      this.Controls.SetChildIndex(this.nameLabel, 0);
337      this.Controls.SetChildIndex(this.descriptionLabel, 0);
338      this.Controls.SetChildIndex(this.nameTextBox, 0);
339      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
340      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
341      this.tabControl.ResumeLayout(false);
[4102]342      this.problemTabPage.ResumeLayout(false);
[2851]343      this.parametersTabPage.ResumeLayout(false);
[2882]344      this.resultsTabPage.ResumeLayout(false);
[3275]345      this.runsTabPage.ResumeLayout(false);
[4102]346      this.runsTabPage.PerformLayout();
[2851]347      this.ResumeLayout(false);
348      this.PerformLayout();
349
350    }
351
352    #endregion
353
354    protected System.Windows.Forms.TabControl tabControl;
355    protected System.Windows.Forms.TabPage parametersTabPage;
356    protected System.Windows.Forms.TabPage problemTabPage;
357    protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
[3281]358    protected HeuristicLab.MainForm.WindowsForms.ViewHost problemViewHost;
[2851]359    protected System.Windows.Forms.Button newProblemButton;
360    protected System.Windows.Forms.Button openProblemButton;
361    protected System.Windows.Forms.Button startButton;
[3262]362    protected System.Windows.Forms.Button pauseButton;
[2851]363    protected System.Windows.Forms.Button resetButton;
364    protected System.Windows.Forms.Label executionTimeLabel;
365    protected System.Windows.Forms.TextBox executionTimeTextBox;
366    protected System.Windows.Forms.OpenFileDialog openFileDialog;
[2882]367    protected System.Windows.Forms.TabPage resultsTabPage;
[3226]368    protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView;
[3262]369    protected System.Windows.Forms.Button stopButton;
[3275]370    protected System.Windows.Forms.TabPage runsTabPage;
371    protected RunCollectionView runsView;
[4102]372    protected System.Windows.Forms.CheckBox storeAlgorithmInEachRunCheckBox;
[2851]373  }
374}
Note: See TracBrowser for help on using the repository browser.