Free cookie consent management tool by TermsFeed Policy Generator

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

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

Implemented reviewers' comments (#893).

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