Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.Designer.cs @ 3262

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

Continued work on algorithm batch processing (#947).

File size: 10.8 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 UserDefinedAlgorithmView {
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      this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
48      this.saveOperatorGraphButton = new System.Windows.Forms.Button();
49      this.openOperatorGraphButton = new System.Windows.Forms.Button();
50      this.newOperatorGraphButton = new System.Windows.Forms.Button();
51      this.operatorGraphViewHost = new HeuristicLab.Core.Views.ViewHost();
52      this.globalScopeTabPage = new System.Windows.Forms.TabPage();
53      this.globalScopeView = new HeuristicLab.Core.Views.ScopeView();
54      this.engineTabPage.SuspendLayout();
55      this.tabControl.SuspendLayout();
56      this.parametersTabPage.SuspendLayout();
57      this.problemTabPage.SuspendLayout();
58      this.resultsTabPage.SuspendLayout();
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
60      this.operatorGraphTabPage.SuspendLayout();
61      this.globalScopeTabPage.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // createUserDefinedAlgorithmButton
65      //
66      this.createUserDefinedAlgorithmButton.Enabled = false;
67      this.createUserDefinedAlgorithmButton.Location = new System.Drawing.Point(150, 525);
68      this.createUserDefinedAlgorithmButton.TabIndex = 9;
69      this.toolTip.SetToolTip(this.createUserDefinedAlgorithmButton, "Create User Defined Algorithm from this Algorithm");
70      this.createUserDefinedAlgorithmButton.Visible = false;
71      //
72      // tabControl
73      //
74      this.tabControl.Controls.Add(this.operatorGraphTabPage);
75      this.tabControl.Controls.Add(this.globalScopeTabPage);
76      this.tabControl.Controls.SetChildIndex(this.globalScopeTabPage, 0);
77      this.tabControl.Controls.SetChildIndex(this.operatorGraphTabPage, 0);
78      this.tabControl.Controls.SetChildIndex(this.resultsTabPage, 0);
79      this.tabControl.Controls.SetChildIndex(this.engineTabPage, 0);
80      this.tabControl.Controls.SetChildIndex(this.problemTabPage, 0);
81      this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0);
82      //
83      // newProblemButton
84      //
85      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
86      //
87      // saveProblemButton
88      //
89      this.toolTip.SetToolTip(this.saveProblemButton, "Save Problem");
90      //
91      // openProblemButton
92      //
93      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
94      //
95      // startButton
96      //
97      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
98      //
99      // pauseButton
100      //
101      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
102      //
103      // resetButton
104      //
105      this.resetButton.Location = new System.Drawing.Point(90, 525);
106      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
107      //
108      // executionTimeLabel
109      //
110      this.executionTimeLabel.TabIndex = 10;
111      //
112      // executionTimeTextBox
113      //
114      this.executionTimeTextBox.TabIndex = 11;
115      //
116      // stopButton
117      //
118      this.stopButton.Location = new System.Drawing.Point(60, 525);
119      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
120      //
121      // nameTextBox
122      //
123      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
124      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
125      //
126      // operatorGraphTabPage
127      //
128      this.operatorGraphTabPage.Controls.Add(this.saveOperatorGraphButton);
129      this.operatorGraphTabPage.Controls.Add(this.openOperatorGraphButton);
130      this.operatorGraphTabPage.Controls.Add(this.newOperatorGraphButton);
131      this.operatorGraphTabPage.Controls.Add(this.operatorGraphViewHost);
132      this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
133      this.operatorGraphTabPage.Name = "operatorGraphTabPage";
134      this.operatorGraphTabPage.Size = new System.Drawing.Size(705, 441);
135      this.operatorGraphTabPage.TabIndex = 2;
136      this.operatorGraphTabPage.Text = "Operator Graph";
137      this.operatorGraphTabPage.UseVisualStyleBackColor = true;
138      //
139      // saveOperatorGraphButton
140      //
141      this.saveOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
142      this.saveOperatorGraphButton.Location = new System.Drawing.Point(63, 3);
143      this.saveOperatorGraphButton.Name = "saveOperatorGraphButton";
144      this.saveOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
145      this.saveOperatorGraphButton.TabIndex = 1;
146      this.toolTip.SetToolTip(this.saveOperatorGraphButton, "Save Operator Graph");
147      this.saveOperatorGraphButton.UseVisualStyleBackColor = true;
148      this.saveOperatorGraphButton.Click += new System.EventHandler(this.saveOperatorGraphButton_Click);
149      //
150      // openOperatorGraphButton
151      //
152      this.openOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
153      this.openOperatorGraphButton.Location = new System.Drawing.Point(33, 3);
154      this.openOperatorGraphButton.Name = "openOperatorGraphButton";
155      this.openOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
156      this.openOperatorGraphButton.TabIndex = 1;
157      this.toolTip.SetToolTip(this.openOperatorGraphButton, "Open Operator Graph");
158      this.openOperatorGraphButton.UseVisualStyleBackColor = true;
159      this.openOperatorGraphButton.Click += new System.EventHandler(this.openOperatorGraphButton_Click);
160      //
161      // newOperatorGraphButton
162      //
163      this.newOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
164      this.newOperatorGraphButton.Location = new System.Drawing.Point(3, 3);
165      this.newOperatorGraphButton.Name = "newOperatorGraphButton";
166      this.newOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
167      this.newOperatorGraphButton.TabIndex = 1;
168      this.toolTip.SetToolTip(this.newOperatorGraphButton, "New Operator Graph");
169      this.newOperatorGraphButton.UseVisualStyleBackColor = true;
170      this.newOperatorGraphButton.Click += new System.EventHandler(this.newOperatorGraphButton_Click);
171      //
172      // operatorGraphViewHost
173      //
174      this.operatorGraphViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
175                  | System.Windows.Forms.AnchorStyles.Left)
176                  | System.Windows.Forms.AnchorStyles.Right)));
177      this.operatorGraphViewHost.Content = null;
178      this.operatorGraphViewHost.Location = new System.Drawing.Point(3, 33);
179      this.operatorGraphViewHost.Name = "operatorGraphViewHost";
180      this.operatorGraphViewHost.Size = new System.Drawing.Size(699, 405);
181      this.operatorGraphViewHost.TabIndex = 0;
182      this.operatorGraphViewHost.ViewType = null;
183      //
184      // globalScopeTabPage
185      //
186      this.globalScopeTabPage.Controls.Add(this.globalScopeView);
187      this.globalScopeTabPage.Location = new System.Drawing.Point(4, 22);
188      this.globalScopeTabPage.Name = "globalScopeTabPage";
189      this.globalScopeTabPage.Size = new System.Drawing.Size(705, 441);
190      this.globalScopeTabPage.TabIndex = 3;
191      this.globalScopeTabPage.Text = "Global Scope";
192      this.globalScopeTabPage.UseVisualStyleBackColor = true;
193      //
194      // globalScopeView
195      //
196      this.globalScopeView.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.globalScopeView.Caption = "Scope";
200      this.globalScopeView.Content = null;
201      this.globalScopeView.Location = new System.Drawing.Point(3, 3);
202      this.globalScopeView.Name = "globalScopeView";
203      this.globalScopeView.Size = new System.Drawing.Size(699, 435);
204      this.globalScopeView.TabIndex = 0;
205      //
206      // UserDefinedAlgorithmView
207      //
208      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
209      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
210      this.Name = "UserDefinedAlgorithmView";
211      this.engineTabPage.ResumeLayout(false);
212      this.engineTabPage.PerformLayout();
213      this.tabControl.ResumeLayout(false);
214      this.parametersTabPage.ResumeLayout(false);
215      this.problemTabPage.ResumeLayout(false);
216      this.resultsTabPage.ResumeLayout(false);
217      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
218      this.operatorGraphTabPage.ResumeLayout(false);
219      this.globalScopeTabPage.ResumeLayout(false);
220      this.ResumeLayout(false);
221      this.PerformLayout();
222
223    }
224
225    #endregion
226
227    private System.Windows.Forms.TabPage operatorGraphTabPage;
228    private System.Windows.Forms.TabPage globalScopeTabPage;
229    private HeuristicLab.Core.Views.ScopeView globalScopeView;
230    private System.Windows.Forms.Button saveOperatorGraphButton;
231    private System.Windows.Forms.Button openOperatorGraphButton;
232    private System.Windows.Forms.Button newOperatorGraphButton;
233    private HeuristicLab.Core.Views.ViewHost operatorGraphViewHost;
234
235  }
236}
Note: See TracBrowser for help on using the repository browser.