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