Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.Designer.cs @ 3361

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

added operator graph tab page to EngineAlgorithmView (ticket #973)

File size: 15.4 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 EngineAlgorithmView {
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 (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EngineAlgorithmView));
48      this.engineLabel = new System.Windows.Forms.Label();
49      this.createUserDefinedAlgorithmButton = new System.Windows.Forms.Button();
50      this.engineComboBox = new System.Windows.Forms.ComboBox();
51      this.engineTabPage = new System.Windows.Forms.TabPage();
52      this.engineViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
54      this.saveOperatorGraphButton = new System.Windows.Forms.Button();
55      this.openOperatorGraphButton = new System.Windows.Forms.Button();
56      this.newOperatorGraphButton = new System.Windows.Forms.Button();
57      this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
58      this.tabControl.SuspendLayout();
59      this.parametersTabPage.SuspendLayout();
60      this.problemTabPage.SuspendLayout();
61      this.resultsTabPage.SuspendLayout();
62      this.runsTabPage.SuspendLayout();
63      this.problemPanel.SuspendLayout();
64      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
65      this.engineTabPage.SuspendLayout();
66      this.operatorGraphTabPage.SuspendLayout();
67      this.SuspendLayout();
68      //
69      // tabControl
70      //
71      this.tabControl.Controls.Add(this.operatorGraphTabPage);
72      this.tabControl.Controls.Add(this.engineTabPage);
73      this.tabControl.Size = new System.Drawing.Size(713, 467);
74      this.tabControl.Controls.SetChildIndex(this.engineTabPage, 0);
75      this.tabControl.Controls.SetChildIndex(this.operatorGraphTabPage, 0);
76      this.tabControl.Controls.SetChildIndex(this.runsTabPage, 0);
77      this.tabControl.Controls.SetChildIndex(this.resultsTabPage, 0);
78      this.tabControl.Controls.SetChildIndex(this.problemTabPage, 0);
79      this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0);
80      //
81      // parametersTabPage
82      //
83      this.parametersTabPage.Size = new System.Drawing.Size(705, 441);
84      //
85      // problemTabPage
86      //
87      this.problemTabPage.Size = new System.Drawing.Size(705, 441);
88      //
89      // parameterCollectionView
90      //
91      this.parameterCollectionView.Size = new System.Drawing.Size(693, 429);
92      //
93      // problemViewHost
94      //
95      this.problemViewHost.Size = new System.Drawing.Size(693, 399);
96      //
97      // newProblemButton
98      //
99      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
100      //
101      // saveProblemButton
102      //
103      this.toolTip.SetToolTip(this.saveProblemButton, "Save Problem");
104      //
105      // openProblemButton
106      //
107      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
108      //
109      // startButton
110      //
111      this.startButton.Location = new System.Drawing.Point(0, 525);
112      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
113      //
114      // pauseButton
115      //
116      this.pauseButton.Location = new System.Drawing.Point(30, 525);
117      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
118      //
119      // resetButton
120      //
121      this.resetButton.Location = new System.Drawing.Point(90, 525);
122      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
123      //
124      // executionTimeLabel
125      //
126      this.executionTimeLabel.Location = new System.Drawing.Point(487, 532);
127      this.executionTimeLabel.TabIndex = 10;
128      //
129      // executionTimeTextBox
130      //
131      this.executionTimeTextBox.Location = new System.Drawing.Point(576, 529);
132      this.executionTimeTextBox.TabIndex = 11;
133      //
134      // resultsTabPage
135      //
136      this.resultsTabPage.Size = new System.Drawing.Size(705, 441);
137      //
138      // resultsView
139      //
140      this.resultsView.Size = new System.Drawing.Size(693, 429);
141      //
142      // stopButton
143      //
144      this.stopButton.Location = new System.Drawing.Point(60, 525);
145      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
146      //
147      // runsTabPage
148      //
149      this.runsTabPage.Size = new System.Drawing.Size(705, 441);
150      //
151      // runsView
152      //
153      this.runsView.Size = new System.Drawing.Size(693, 429);
154      //
155      // problemPanel
156      //
157      this.problemPanel.Size = new System.Drawing.Size(693, 399);
158      //
159      // nameTextBox
160      //
161      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
162      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
163      this.nameTextBox.Size = new System.Drawing.Size(641, 20);
164      //
165      // descriptionTextBox
166      //
167      this.descriptionTextBox.Size = new System.Drawing.Size(641, 20);
168      //
169      // engineLabel
170      //
171      this.engineLabel.AutoSize = true;
172      this.engineLabel.Location = new System.Drawing.Point(6, 9);
173      this.engineLabel.Name = "engineLabel";
174      this.engineLabel.Size = new System.Drawing.Size(43, 13);
175      this.engineLabel.TabIndex = 0;
176      this.engineLabel.Text = "&Engine:";
177      //
178      // createUserDefinedAlgorithmButton
179      //
180      this.createUserDefinedAlgorithmButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
181      this.createUserDefinedAlgorithmButton.Location = new System.Drawing.Point(150, 525);
182      this.createUserDefinedAlgorithmButton.Name = "createUserDefinedAlgorithmButton";
183      this.createUserDefinedAlgorithmButton.Size = new System.Drawing.Size(254, 24);
184      this.createUserDefinedAlgorithmButton.TabIndex = 9;
185      this.createUserDefinedAlgorithmButton.Text = "&Create User Defined Algorithm";
186      this.toolTip.SetToolTip(this.createUserDefinedAlgorithmButton, "Create User Defined Algorithm from this Algorithm");
187      this.createUserDefinedAlgorithmButton.UseVisualStyleBackColor = true;
188      this.createUserDefinedAlgorithmButton.Click += new System.EventHandler(this.createUserDefinedAlgorithmButton_Click);
189      //
190      // engineComboBox
191      //
192      this.engineComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
193                  | System.Windows.Forms.AnchorStyles.Right)));
194      this.engineComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
195      this.engineComboBox.FormattingEnabled = true;
196      this.engineComboBox.Location = new System.Drawing.Point(55, 6);
197      this.engineComboBox.Name = "engineComboBox";
198      this.engineComboBox.Size = new System.Drawing.Size(610, 21);
199      this.engineComboBox.TabIndex = 1;
200      this.engineComboBox.SelectedIndexChanged += new System.EventHandler(this.engineComboBox_SelectedIndexChanged);
201      //
202      // engineTabPage
203      //
204      this.engineTabPage.Controls.Add(this.engineViewHost);
205      this.engineTabPage.Controls.Add(this.engineComboBox);
206      this.engineTabPage.Controls.Add(this.engineLabel);
207      this.engineTabPage.Location = new System.Drawing.Point(4, 22);
208      this.engineTabPage.Name = "engineTabPage";
209      this.engineTabPage.Padding = new System.Windows.Forms.Padding(3);
210      this.engineTabPage.Size = new System.Drawing.Size(705, 441);
211      this.engineTabPage.TabIndex = 3;
212      this.engineTabPage.Text = "Engine";
213      this.engineTabPage.UseVisualStyleBackColor = true;
214      //
215      // engineViewHost
216      //
217      this.engineViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
218                  | System.Windows.Forms.AnchorStyles.Left)
219                  | System.Windows.Forms.AnchorStyles.Right)));
220      this.engineViewHost.Content = null;
221      this.engineViewHost.Location = new System.Drawing.Point(6, 33);
222      this.engineViewHost.Name = "engineViewHost";
223      this.engineViewHost.ReadOnly = false;
224      this.engineViewHost.Size = new System.Drawing.Size(659, 335);
225      this.engineViewHost.TabIndex = 2;
226      this.engineViewHost.ViewType = null;
227      //
228      // operatorGraphTabPage
229      //
230      this.operatorGraphTabPage.Controls.Add(this.saveOperatorGraphButton);
231      this.operatorGraphTabPage.Controls.Add(this.openOperatorGraphButton);
232      this.operatorGraphTabPage.Controls.Add(this.newOperatorGraphButton);
233      this.operatorGraphTabPage.Controls.Add(this.operatorGraphViewHost);
234      this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
235      this.operatorGraphTabPage.Name = "operatorGraphTabPage";
236      this.operatorGraphTabPage.Size = new System.Drawing.Size(705, 441);
237      this.operatorGraphTabPage.TabIndex = 4;
238      this.operatorGraphTabPage.Text = "Operator Graph";
239      this.operatorGraphTabPage.UseVisualStyleBackColor = true;
240      //
241      // saveOperatorGraphButton
242      //
243      this.saveOperatorGraphButton.Enabled = false;
244      this.saveOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
245      this.saveOperatorGraphButton.Location = new System.Drawing.Point(63, 3);
246      this.saveOperatorGraphButton.Name = "saveOperatorGraphButton";
247      this.saveOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
248      this.saveOperatorGraphButton.TabIndex = 1;
249      this.toolTip.SetToolTip(this.saveOperatorGraphButton, "Save Operator Graph");
250      this.saveOperatorGraphButton.UseVisualStyleBackColor = true;
251      //
252      // openOperatorGraphButton
253      //
254      this.openOperatorGraphButton.Enabled = false;
255      this.openOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
256      this.openOperatorGraphButton.Location = new System.Drawing.Point(33, 3);
257      this.openOperatorGraphButton.Name = "openOperatorGraphButton";
258      this.openOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
259      this.openOperatorGraphButton.TabIndex = 1;
260      this.toolTip.SetToolTip(this.openOperatorGraphButton, "Open Operator Graph");
261      this.openOperatorGraphButton.UseVisualStyleBackColor = true;
262      //
263      // newOperatorGraphButton
264      //
265      this.newOperatorGraphButton.Enabled = false;
266      this.newOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
267      this.newOperatorGraphButton.Location = new System.Drawing.Point(3, 3);
268      this.newOperatorGraphButton.Name = "newOperatorGraphButton";
269      this.newOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
270      this.newOperatorGraphButton.TabIndex = 1;
271      this.toolTip.SetToolTip(this.newOperatorGraphButton, "New Operator Graph");
272      this.newOperatorGraphButton.UseVisualStyleBackColor = true;
273      //
274      // operatorGraphViewHost
275      //
276      this.operatorGraphViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
277                  | System.Windows.Forms.AnchorStyles.Left)
278                  | System.Windows.Forms.AnchorStyles.Right)));
279      this.operatorGraphViewHost.Content = null;
280      this.operatorGraphViewHost.Location = new System.Drawing.Point(3, 33);
281      this.operatorGraphViewHost.Name = "operatorGraphViewHost";
282      this.operatorGraphViewHost.ReadOnly = true;
283      this.operatorGraphViewHost.Size = new System.Drawing.Size(699, 405);
284      this.operatorGraphViewHost.TabIndex = 0;
285      this.operatorGraphViewHost.ViewType = null;
286      //
287      // EngineAlgorithmView
288      //
289      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
290      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
291      this.Controls.Add(this.createUserDefinedAlgorithmButton);
292      this.Name = "EngineAlgorithmView";
293      this.Size = new System.Drawing.Size(713, 549);
294      this.Controls.SetChildIndex(this.stopButton, 0);
295      this.Controls.SetChildIndex(this.createUserDefinedAlgorithmButton, 0);
296      this.Controls.SetChildIndex(this.resetButton, 0);
297      this.Controls.SetChildIndex(this.pauseButton, 0);
298      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
299      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
300      this.Controls.SetChildIndex(this.startButton, 0);
301      this.Controls.SetChildIndex(this.tabControl, 0);
302      this.Controls.SetChildIndex(this.nameLabel, 0);
303      this.Controls.SetChildIndex(this.descriptionLabel, 0);
304      this.Controls.SetChildIndex(this.nameTextBox, 0);
305      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
306      this.tabControl.ResumeLayout(false);
307      this.parametersTabPage.ResumeLayout(false);
308      this.problemTabPage.ResumeLayout(false);
309      this.resultsTabPage.ResumeLayout(false);
310      this.runsTabPage.ResumeLayout(false);
311      this.problemPanel.ResumeLayout(false);
312      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
313      this.engineTabPage.ResumeLayout(false);
314      this.engineTabPage.PerformLayout();
315      this.operatorGraphTabPage.ResumeLayout(false);
316      this.ResumeLayout(false);
317      this.PerformLayout();
318
319    }
320
321    #endregion
322
323    protected System.Windows.Forms.Label engineLabel;
324    protected System.Windows.Forms.Button createUserDefinedAlgorithmButton;
325    protected System.Windows.Forms.ComboBox engineComboBox;
326    protected System.Windows.Forms.TabPage engineTabPage;
327    protected HeuristicLab.MainForm.WindowsForms.ViewHost engineViewHost;
328    protected System.Windows.Forms.TabPage operatorGraphTabPage;
329    protected HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost;
330    protected System.Windows.Forms.Button saveOperatorGraphButton;
331    protected System.Windows.Forms.Button openOperatorGraphButton;
332    protected System.Windows.Forms.Button newOperatorGraphButton;
333
334  }
335}
Note: See TracBrowser for help on using the repository browser.