[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | namespace HeuristicLab.Operators {
|
---|
| 23 | partial class CombinedOperatorView {
|
---|
| 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 && (components != null)) {
|
---|
| 35 | 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.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 48 | this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
|
---|
| 49 | this.operatorGraphView = new HeuristicLab.Core.OperatorGraphView();
|
---|
| 50 | this.variableInfosTabPage = new System.Windows.Forms.TabPage();
|
---|
| 51 | this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView();
|
---|
| 52 | this.variablesTabPage = new System.Windows.Forms.TabPage();
|
---|
| 53 | this.operatorBaseVariablesView = new HeuristicLab.Core.OperatorBaseVariablesView();
|
---|
| 54 | this.constraintsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 55 | this.constrainedItemBaseView = new HeuristicLab.Core.ConstrainedItemBaseView();
|
---|
| 56 | this.descriptionTabPage = new System.Windows.Forms.TabPage();
|
---|
| 57 | this.descriptionTextBox = new System.Windows.Forms.TextBox();
|
---|
[52] | 58 | this.removeVariableInfoButton = new System.Windows.Forms.Button();
|
---|
| 59 | this.addVariableInfoButton = new System.Windows.Forms.Button();
|
---|
[2] | 60 | this.tabControl.SuspendLayout();
|
---|
| 61 | this.operatorGraphTabPage.SuspendLayout();
|
---|
| 62 | this.variableInfosTabPage.SuspendLayout();
|
---|
| 63 | this.variablesTabPage.SuspendLayout();
|
---|
| 64 | this.constraintsTabPage.SuspendLayout();
|
---|
| 65 | this.descriptionTabPage.SuspendLayout();
|
---|
| 66 | this.SuspendLayout();
|
---|
| 67 | //
|
---|
| 68 | // tabControl
|
---|
| 69 | //
|
---|
| 70 | this.tabControl.Controls.Add(this.operatorGraphTabPage);
|
---|
| 71 | this.tabControl.Controls.Add(this.variableInfosTabPage);
|
---|
| 72 | this.tabControl.Controls.Add(this.variablesTabPage);
|
---|
| 73 | this.tabControl.Controls.Add(this.constraintsTabPage);
|
---|
| 74 | this.tabControl.Controls.Add(this.descriptionTabPage);
|
---|
| 75 | this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 76 | this.tabControl.Location = new System.Drawing.Point(0, 0);
|
---|
| 77 | this.tabControl.Name = "tabControl";
|
---|
| 78 | this.tabControl.SelectedIndex = 0;
|
---|
| 79 | this.tabControl.Size = new System.Drawing.Size(397, 335);
|
---|
| 80 | this.tabControl.TabIndex = 0;
|
---|
| 81 | //
|
---|
| 82 | // operatorGraphTabPage
|
---|
| 83 | //
|
---|
| 84 | this.operatorGraphTabPage.Controls.Add(this.operatorGraphView);
|
---|
| 85 | this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 86 | this.operatorGraphTabPage.Name = "operatorGraphTabPage";
|
---|
| 87 | this.operatorGraphTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 88 | this.operatorGraphTabPage.Size = new System.Drawing.Size(389, 309);
|
---|
| 89 | this.operatorGraphTabPage.TabIndex = 0;
|
---|
| 90 | this.operatorGraphTabPage.Text = "Operator Graph";
|
---|
| 91 | this.operatorGraphTabPage.UseVisualStyleBackColor = true;
|
---|
| 92 | //
|
---|
| 93 | // operatorGraphView
|
---|
| 94 | //
|
---|
| 95 | this.operatorGraphView.Caption = "Operator Graph";
|
---|
| 96 | this.operatorGraphView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 97 | this.operatorGraphView.Location = new System.Drawing.Point(3, 3);
|
---|
| 98 | this.operatorGraphView.Name = "operatorGraphView";
|
---|
| 99 | this.operatorGraphView.OperatorGraph = null;
|
---|
| 100 | this.operatorGraphView.Size = new System.Drawing.Size(383, 303);
|
---|
| 101 | this.operatorGraphView.TabIndex = 0;
|
---|
| 102 | //
|
---|
| 103 | // variableInfosTabPage
|
---|
| 104 | //
|
---|
[52] | 105 | this.variableInfosTabPage.Controls.Add(this.removeVariableInfoButton);
|
---|
| 106 | this.variableInfosTabPage.Controls.Add(this.addVariableInfoButton);
|
---|
[2] | 107 | this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
|
---|
| 108 | this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 109 | this.variableInfosTabPage.Name = "variableInfosTabPage";
|
---|
| 110 | this.variableInfosTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 111 | this.variableInfosTabPage.Size = new System.Drawing.Size(389, 309);
|
---|
| 112 | this.variableInfosTabPage.TabIndex = 1;
|
---|
| 113 | this.variableInfosTabPage.Text = "Variable Infos";
|
---|
| 114 | this.variableInfosTabPage.UseVisualStyleBackColor = true;
|
---|
| 115 | //
|
---|
| 116 | // operatorBaseVariableInfosView
|
---|
| 117 | //
|
---|
[52] | 118 | this.operatorBaseVariableInfosView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 119 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 120 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2] | 121 | this.operatorBaseVariableInfosView.Caption = "Operator";
|
---|
| 122 | this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
|
---|
| 123 | this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
|
---|
| 124 | this.operatorBaseVariableInfosView.Operator = null;
|
---|
[52] | 125 | this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(383, 274);
|
---|
[2] | 126 | this.operatorBaseVariableInfosView.TabIndex = 0;
|
---|
[52] | 127 | this.operatorBaseVariableInfosView.SelectedVariableInfosChanged += new System.EventHandler(this.operatorBaseVariableInfosView_SelectedVariableInfosChanged);
|
---|
[2] | 128 | //
|
---|
| 129 | // variablesTabPage
|
---|
| 130 | //
|
---|
| 131 | this.variablesTabPage.Controls.Add(this.operatorBaseVariablesView);
|
---|
| 132 | this.variablesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 133 | this.variablesTabPage.Name = "variablesTabPage";
|
---|
| 134 | this.variablesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 135 | this.variablesTabPage.Size = new System.Drawing.Size(389, 309);
|
---|
| 136 | this.variablesTabPage.TabIndex = 2;
|
---|
| 137 | this.variablesTabPage.Text = "Local Variables";
|
---|
| 138 | this.variablesTabPage.UseVisualStyleBackColor = true;
|
---|
| 139 | //
|
---|
| 140 | // operatorBaseVariablesView
|
---|
| 141 | //
|
---|
| 142 | this.operatorBaseVariablesView.Caption = "Operator";
|
---|
| 143 | this.operatorBaseVariablesView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 144 | this.operatorBaseVariablesView.Location = new System.Drawing.Point(3, 3);
|
---|
| 145 | this.operatorBaseVariablesView.Name = "operatorBaseVariablesView";
|
---|
| 146 | this.operatorBaseVariablesView.Operator = null;
|
---|
| 147 | this.operatorBaseVariablesView.Size = new System.Drawing.Size(383, 303);
|
---|
| 148 | this.operatorBaseVariablesView.TabIndex = 0;
|
---|
| 149 | //
|
---|
| 150 | // constraintsTabPage
|
---|
| 151 | //
|
---|
| 152 | this.constraintsTabPage.Controls.Add(this.constrainedItemBaseView);
|
---|
| 153 | this.constraintsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 154 | this.constraintsTabPage.Name = "constraintsTabPage";
|
---|
| 155 | this.constraintsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 156 | this.constraintsTabPage.Size = new System.Drawing.Size(389, 309);
|
---|
| 157 | this.constraintsTabPage.TabIndex = 3;
|
---|
| 158 | this.constraintsTabPage.Text = "Constraints";
|
---|
| 159 | this.constraintsTabPage.UseVisualStyleBackColor = true;
|
---|
| 160 | //
|
---|
| 161 | // constrainedItemBaseView
|
---|
| 162 | //
|
---|
| 163 | this.constrainedItemBaseView.Caption = "Constrained Item";
|
---|
| 164 | this.constrainedItemBaseView.ConstrainedItem = null;
|
---|
| 165 | this.constrainedItemBaseView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 166 | this.constrainedItemBaseView.Location = new System.Drawing.Point(3, 3);
|
---|
| 167 | this.constrainedItemBaseView.Name = "constrainedItemBaseView";
|
---|
| 168 | this.constrainedItemBaseView.Size = new System.Drawing.Size(383, 303);
|
---|
| 169 | this.constrainedItemBaseView.TabIndex = 0;
|
---|
| 170 | //
|
---|
| 171 | // descriptionTabPage
|
---|
| 172 | //
|
---|
| 173 | this.descriptionTabPage.Controls.Add(this.descriptionTextBox);
|
---|
| 174 | this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 175 | this.descriptionTabPage.Name = "descriptionTabPage";
|
---|
| 176 | this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 177 | this.descriptionTabPage.Size = new System.Drawing.Size(389, 309);
|
---|
| 178 | this.descriptionTabPage.TabIndex = 4;
|
---|
| 179 | this.descriptionTabPage.Text = "Description";
|
---|
| 180 | this.descriptionTabPage.UseVisualStyleBackColor = true;
|
---|
| 181 | //
|
---|
| 182 | // descriptionTextBox
|
---|
| 183 | //
|
---|
| 184 | this.descriptionTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 185 | this.descriptionTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
| 186 | this.descriptionTextBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 187 | this.descriptionTextBox.Multiline = true;
|
---|
| 188 | this.descriptionTextBox.Name = "descriptionTextBox";
|
---|
| 189 | this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
| 190 | this.descriptionTextBox.Size = new System.Drawing.Size(383, 303);
|
---|
| 191 | this.descriptionTextBox.TabIndex = 0;
|
---|
| 192 | this.descriptionTextBox.Validated += new System.EventHandler(this.descriptionTextBox_Validated);
|
---|
| 193 | //
|
---|
[52] | 194 | // removeVariableInfoButton
|
---|
| 195 | //
|
---|
| 196 | this.removeVariableInfoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 197 | this.removeVariableInfoButton.Enabled = false;
|
---|
| 198 | this.removeVariableInfoButton.Location = new System.Drawing.Point(84, 283);
|
---|
| 199 | this.removeVariableInfoButton.Name = "removeVariableInfoButton";
|
---|
| 200 | this.removeVariableInfoButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 201 | this.removeVariableInfoButton.TabIndex = 2;
|
---|
| 202 | this.removeVariableInfoButton.Text = "&Remove";
|
---|
| 203 | this.removeVariableInfoButton.UseVisualStyleBackColor = true;
|
---|
| 204 | this.removeVariableInfoButton.Click += new System.EventHandler(this.removeVariableInfoButton_Click);
|
---|
| 205 | //
|
---|
| 206 | // addVariableInfoButton
|
---|
| 207 | //
|
---|
| 208 | this.addVariableInfoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 209 | this.addVariableInfoButton.Location = new System.Drawing.Point(3, 283);
|
---|
| 210 | this.addVariableInfoButton.Name = "addVariableInfoButton";
|
---|
| 211 | this.addVariableInfoButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 212 | this.addVariableInfoButton.TabIndex = 1;
|
---|
| 213 | this.addVariableInfoButton.Text = "&Add...";
|
---|
| 214 | this.addVariableInfoButton.UseVisualStyleBackColor = true;
|
---|
| 215 | this.addVariableInfoButton.Click += new System.EventHandler(this.addVariableInfoButton_Click);
|
---|
| 216 | //
|
---|
[2] | 217 | // CombinedOperatorView
|
---|
| 218 | //
|
---|
| 219 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 220 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 221 | this.Controls.Add(this.tabControl);
|
---|
| 222 | this.Name = "CombinedOperatorView";
|
---|
| 223 | this.Size = new System.Drawing.Size(397, 335);
|
---|
| 224 | this.tabControl.ResumeLayout(false);
|
---|
| 225 | this.operatorGraphTabPage.ResumeLayout(false);
|
---|
| 226 | this.variableInfosTabPage.ResumeLayout(false);
|
---|
| 227 | this.variablesTabPage.ResumeLayout(false);
|
---|
| 228 | this.constraintsTabPage.ResumeLayout(false);
|
---|
| 229 | this.descriptionTabPage.ResumeLayout(false);
|
---|
| 230 | this.descriptionTabPage.PerformLayout();
|
---|
| 231 | this.ResumeLayout(false);
|
---|
| 232 |
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | #endregion
|
---|
| 236 |
|
---|
| 237 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 238 | private System.Windows.Forms.TabPage operatorGraphTabPage;
|
---|
| 239 | private System.Windows.Forms.TabPage variableInfosTabPage;
|
---|
| 240 | private System.Windows.Forms.TabPage variablesTabPage;
|
---|
| 241 | private System.Windows.Forms.TabPage constraintsTabPage;
|
---|
| 242 | private System.Windows.Forms.TabPage descriptionTabPage;
|
---|
| 243 | private System.Windows.Forms.TextBox descriptionTextBox;
|
---|
| 244 | private HeuristicLab.Core.OperatorGraphView operatorGraphView;
|
---|
| 245 | private HeuristicLab.Core.OperatorBaseVariableInfosView operatorBaseVariableInfosView;
|
---|
| 246 | private HeuristicLab.Core.OperatorBaseVariablesView operatorBaseVariablesView;
|
---|
| 247 | private HeuristicLab.Core.ConstrainedItemBaseView constrainedItemBaseView;
|
---|
[52] | 248 | private System.Windows.Forms.Button removeVariableInfoButton;
|
---|
| 249 | private System.Windows.Forms.Button addVariableInfoButton;
|
---|
[2] | 250 |
|
---|
| 251 | }
|
---|
| 252 | }
|
---|