Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 6.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.globalScopeTabPage = new System.Windows.Forms.TabPage();
48      this.globalScopeView = new HeuristicLab.Core.Views.ScopeView();
49      this.engineTabPage.SuspendLayout();
50      this.operatorGraphTabPage.SuspendLayout();
51      this.tabControl.SuspendLayout();
52      this.parametersTabPage.SuspendLayout();
53      this.problemTabPage.SuspendLayout();
54      this.resultsTabPage.SuspendLayout();
55      this.runsTabPage.SuspendLayout();
56      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
57      this.globalScopeTabPage.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // engineComboBox
61      //
62      this.engineComboBox.Size = new System.Drawing.Size(644, 21);
63      //
64      // engineViewHost
65      //
66      this.engineViewHost.Size = new System.Drawing.Size(693, 402);
67      //
68      // openOperatorGraphButton
69      //
70      this.toolTip.SetToolTip(this.openOperatorGraphButton, "Open Operator Graph");
71      this.openOperatorGraphButton.Click += new System.EventHandler(openOperatorGraphButton_Click);
72      //
73      // newOperatorGraphButton
74      //
75      this.toolTip.SetToolTip(this.newOperatorGraphButton, "New Operator Graph");
76      this.newOperatorGraphButton.Click += new System.EventHandler(newOperatorGraphButton_Click);
77      //
78      // tabControl
79      //
80      this.tabControl.Controls.Add(this.globalScopeTabPage);
81      this.tabControl.Controls.SetChildIndex(this.engineTabPage, 0);
82      this.tabControl.Controls.SetChildIndex(this.globalScopeTabPage, 0);
83      this.tabControl.Controls.SetChildIndex(this.operatorGraphTabPage, 0);
84      this.tabControl.Controls.SetChildIndex(this.runsTabPage, 0);
85      this.tabControl.Controls.SetChildIndex(this.resultsTabPage, 0);
86      this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0);
87      this.tabControl.Controls.SetChildIndex(this.problemTabPage, 0);
88      //
89      // newProblemButton
90      //
91      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
92      //
93      // openProblemButton
94      //
95      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
96      //
97      // startButton
98      //
99      this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
100      //
101      // pauseButton
102      //
103      this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
104      //
105      // resetButton
106      //
107      this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
108      //
109      // stopButton
110      //
111      this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
112      //
113      // nameTextBox
114      //
115      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
116      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
117      //
118      // globalScopeTabPage
119      //
120      this.globalScopeTabPage.Controls.Add(this.globalScopeView);
121      this.globalScopeTabPage.Location = new System.Drawing.Point(4, 22);
122      this.globalScopeTabPage.Name = "globalScopeTabPage";
123      this.globalScopeTabPage.Size = new System.Drawing.Size(705, 441);
124      this.globalScopeTabPage.TabIndex = 6;
125      this.globalScopeTabPage.Text = "Global Scope";
126      this.globalScopeTabPage.UseVisualStyleBackColor = true;
127      //
128      // globalScopeView
129      //
130      this.globalScopeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
131                  | System.Windows.Forms.AnchorStyles.Left)
132                  | System.Windows.Forms.AnchorStyles.Right)));
133      this.globalScopeView.Content = null;
134      this.globalScopeView.Location = new System.Drawing.Point(3, 3);
135      this.globalScopeView.Name = "globalScopeView";
136      this.globalScopeView.ReadOnly = false;
137      this.globalScopeView.Size = new System.Drawing.Size(699, 435);
138      this.globalScopeView.TabIndex = 0;
139      //
140      // UserDefinedAlgorithmView
141      //
142      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
143      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
144      this.Name = "UserDefinedAlgorithmView";
145      this.engineTabPage.ResumeLayout(false);
146      this.engineTabPage.PerformLayout();
147      this.operatorGraphTabPage.ResumeLayout(false);
148      this.tabControl.ResumeLayout(false);
149      this.parametersTabPage.ResumeLayout(false);
150      this.problemTabPage.ResumeLayout(false);
151      this.resultsTabPage.ResumeLayout(false);
152      this.runsTabPage.ResumeLayout(false);
153      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
154      this.globalScopeTabPage.ResumeLayout(false);
155      this.ResumeLayout(false);
156      this.PerformLayout();
157
158    }
159
160    #endregion
161
162    private System.Windows.Forms.TabPage globalScopeTabPage;
163    private HeuristicLab.Core.Views.ScopeView globalScopeView;
164
165  }
166}
Note: See TracBrowser for help on using the repository browser.