Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5466 was 5466, checked in by mkommend, 13 years ago

Updated all views with TabControls to use the DragOverTabControl (ticket #1058).

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