Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3827 was 3764, checked in by mkommend, 14 years ago

adapted view captions (ticket #893)

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