[591] | 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 |
|
---|
[584] | 22 | namespace HeuristicLab.Communication.Data {
|
---|
| 23 | partial class ProtocolStateView {
|
---|
| 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.nameLabel = new System.Windows.Forms.Label();
|
---|
| 48 | this.communicationDataTabControl = new System.Windows.Forms.TabControl();
|
---|
[704] | 49 | this.giveTabPage = new System.Windows.Forms.TabPage();
|
---|
| 50 | this.giveBatchCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 51 | this.giveVariablesLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.giveBatchLabel = new System.Windows.Forms.Label();
|
---|
| 53 | this.expectTabPage = new System.Windows.Forms.TabPage();
|
---|
| 54 | this.expectVariablesLabel = new System.Windows.Forms.Label();
|
---|
| 55 | this.expectBatchCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 56 | this.expectBatchLabel = new System.Windows.Forms.Label();
|
---|
| 57 | this.nameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.giveItemListView = new HeuristicLab.Data.ItemListView<HeuristicLab.Core.IVariable>();
|
---|
| 59 | this.expectItemListView = new HeuristicLab.Data.ItemListView<HeuristicLab.Core.IVariable>();
|
---|
[584] | 60 | this.communicationDataTabControl.SuspendLayout();
|
---|
[704] | 61 | this.giveTabPage.SuspendLayout();
|
---|
| 62 | this.expectTabPage.SuspendLayout();
|
---|
[584] | 63 | this.SuspendLayout();
|
---|
| 64 | //
|
---|
| 65 | // nameLabel
|
---|
| 66 | //
|
---|
| 67 | this.nameLabel.AutoSize = true;
|
---|
| 68 | this.nameLabel.Location = new System.Drawing.Point(4, 17);
|
---|
| 69 | this.nameLabel.Name = "nameLabel";
|
---|
| 70 | this.nameLabel.Size = new System.Drawing.Size(38, 13);
|
---|
| 71 | this.nameLabel.TabIndex = 3;
|
---|
| 72 | this.nameLabel.Text = "Name:";
|
---|
| 73 | //
|
---|
| 74 | // communicationDataTabControl
|
---|
| 75 | //
|
---|
| 76 | this.communicationDataTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 77 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 78 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[704] | 79 | this.communicationDataTabControl.Controls.Add(this.giveTabPage);
|
---|
| 80 | this.communicationDataTabControl.Controls.Add(this.expectTabPage);
|
---|
[584] | 81 | this.communicationDataTabControl.Location = new System.Drawing.Point(3, 46);
|
---|
| 82 | this.communicationDataTabControl.Name = "communicationDataTabControl";
|
---|
| 83 | this.communicationDataTabControl.SelectedIndex = 0;
|
---|
[704] | 84 | this.communicationDataTabControl.Size = new System.Drawing.Size(404, 324);
|
---|
[584] | 85 | this.communicationDataTabControl.TabIndex = 5;
|
---|
| 86 | //
|
---|
[704] | 87 | // giveTabPage
|
---|
[584] | 88 | //
|
---|
[704] | 89 | this.giveTabPage.Controls.Add(this.giveItemListView);
|
---|
| 90 | this.giveTabPage.Controls.Add(this.giveBatchCheckBox);
|
---|
| 91 | this.giveTabPage.Controls.Add(this.giveVariablesLabel);
|
---|
| 92 | this.giveTabPage.Controls.Add(this.giveBatchLabel);
|
---|
| 93 | this.giveTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 94 | this.giveTabPage.Name = "giveTabPage";
|
---|
| 95 | this.giveTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 96 | this.giveTabPage.Size = new System.Drawing.Size(396, 298);
|
---|
| 97 | this.giveTabPage.TabIndex = 0;
|
---|
| 98 | this.giveTabPage.Text = "Give";
|
---|
| 99 | this.giveTabPage.UseVisualStyleBackColor = true;
|
---|
[584] | 100 | //
|
---|
[704] | 101 | // giveBatchCheckBox
|
---|
[584] | 102 | //
|
---|
[704] | 103 | this.giveBatchCheckBox.AutoSize = true;
|
---|
| 104 | this.giveBatchCheckBox.Location = new System.Drawing.Point(58, 20);
|
---|
| 105 | this.giveBatchCheckBox.Name = "giveBatchCheckBox";
|
---|
| 106 | this.giveBatchCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
| 107 | this.giveBatchCheckBox.TabIndex = 9;
|
---|
| 108 | this.giveBatchCheckBox.UseVisualStyleBackColor = true;
|
---|
[584] | 109 | //
|
---|
[704] | 110 | // giveVariablesLabel
|
---|
[584] | 111 | //
|
---|
[704] | 112 | this.giveVariablesLabel.AutoSize = true;
|
---|
| 113 | this.giveVariablesLabel.Location = new System.Drawing.Point(13, 48);
|
---|
| 114 | this.giveVariablesLabel.Name = "giveVariablesLabel";
|
---|
| 115 | this.giveVariablesLabel.Size = new System.Drawing.Size(53, 13);
|
---|
| 116 | this.giveVariablesLabel.TabIndex = 8;
|
---|
| 117 | this.giveVariablesLabel.Text = "Variables:";
|
---|
[584] | 118 | //
|
---|
[704] | 119 | // giveBatchLabel
|
---|
[584] | 120 | //
|
---|
[704] | 121 | this.giveBatchLabel.AutoSize = true;
|
---|
| 122 | this.giveBatchLabel.Location = new System.Drawing.Point(13, 20);
|
---|
| 123 | this.giveBatchLabel.Name = "giveBatchLabel";
|
---|
| 124 | this.giveBatchLabel.Size = new System.Drawing.Size(38, 13);
|
---|
| 125 | this.giveBatchLabel.TabIndex = 6;
|
---|
| 126 | this.giveBatchLabel.Text = "Batch:";
|
---|
[584] | 127 | //
|
---|
[704] | 128 | // expectTabPage
|
---|
[584] | 129 | //
|
---|
[704] | 130 | this.expectTabPage.Controls.Add(this.expectItemListView);
|
---|
| 131 | this.expectTabPage.Controls.Add(this.expectVariablesLabel);
|
---|
| 132 | this.expectTabPage.Controls.Add(this.expectBatchCheckBox);
|
---|
| 133 | this.expectTabPage.Controls.Add(this.expectBatchLabel);
|
---|
| 134 | this.expectTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 135 | this.expectTabPage.Name = "expectTabPage";
|
---|
| 136 | this.expectTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 137 | this.expectTabPage.Size = new System.Drawing.Size(396, 298);
|
---|
| 138 | this.expectTabPage.TabIndex = 1;
|
---|
| 139 | this.expectTabPage.Text = "Expect";
|
---|
| 140 | this.expectTabPage.UseVisualStyleBackColor = true;
|
---|
[584] | 141 | //
|
---|
[704] | 142 | // expectVariablesLabel
|
---|
[584] | 143 | //
|
---|
[704] | 144 | this.expectVariablesLabel.AutoSize = true;
|
---|
| 145 | this.expectVariablesLabel.Location = new System.Drawing.Point(13, 48);
|
---|
| 146 | this.expectVariablesLabel.Name = "expectVariablesLabel";
|
---|
| 147 | this.expectVariablesLabel.Size = new System.Drawing.Size(53, 13);
|
---|
| 148 | this.expectVariablesLabel.TabIndex = 12;
|
---|
| 149 | this.expectVariablesLabel.Text = "Variables:";
|
---|
[584] | 150 | //
|
---|
[704] | 151 | // expectBatchCheckBox
|
---|
[584] | 152 | //
|
---|
[704] | 153 | this.expectBatchCheckBox.AutoSize = true;
|
---|
| 154 | this.expectBatchCheckBox.Location = new System.Drawing.Point(58, 20);
|
---|
| 155 | this.expectBatchCheckBox.Name = "expectBatchCheckBox";
|
---|
| 156 | this.expectBatchCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
| 157 | this.expectBatchCheckBox.TabIndex = 10;
|
---|
| 158 | this.expectBatchCheckBox.UseVisualStyleBackColor = true;
|
---|
[584] | 159 | //
|
---|
[704] | 160 | // expectBatchLabel
|
---|
[584] | 161 | //
|
---|
[704] | 162 | this.expectBatchLabel.AutoSize = true;
|
---|
| 163 | this.expectBatchLabel.Location = new System.Drawing.Point(13, 20);
|
---|
| 164 | this.expectBatchLabel.Name = "expectBatchLabel";
|
---|
| 165 | this.expectBatchLabel.Size = new System.Drawing.Size(38, 13);
|
---|
| 166 | this.expectBatchLabel.TabIndex = 6;
|
---|
| 167 | this.expectBatchLabel.Text = "Batch:";
|
---|
| 168 | //
|
---|
| 169 | // nameTextBox
|
---|
| 170 | //
|
---|
| 171 | this.nameTextBox.Location = new System.Drawing.Point(48, 14);
|
---|
| 172 | this.nameTextBox.Name = "nameTextBox";
|
---|
| 173 | this.nameTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
| 174 | this.nameTextBox.TabIndex = 6;
|
---|
| 175 | //
|
---|
| 176 | // giveItemListView
|
---|
| 177 | //
|
---|
| 178 | this.giveItemListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[584] | 179 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 180 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[704] | 181 | this.giveItemListView.Caption = "View";
|
---|
| 182 | this.giveItemListView.ItemList = null;
|
---|
| 183 | this.giveItemListView.Location = new System.Drawing.Point(16, 64);
|
---|
| 184 | this.giveItemListView.Name = "giveItemListView";
|
---|
| 185 | this.giveItemListView.Size = new System.Drawing.Size(377, 231);
|
---|
| 186 | this.giveItemListView.TabIndex = 10;
|
---|
[584] | 187 | //
|
---|
[704] | 188 | // expectItemListView
|
---|
[584] | 189 | //
|
---|
[704] | 190 | this.expectItemListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 191 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 192 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 193 | this.expectItemListView.Caption = "View";
|
---|
| 194 | this.expectItemListView.ItemList = null;
|
---|
| 195 | this.expectItemListView.Location = new System.Drawing.Point(16, 64);
|
---|
| 196 | this.expectItemListView.Name = "expectItemListView";
|
---|
| 197 | this.expectItemListView.Size = new System.Drawing.Size(377, 231);
|
---|
| 198 | this.expectItemListView.TabIndex = 13;
|
---|
[584] | 199 | //
|
---|
| 200 | // ProtocolStateView
|
---|
| 201 | //
|
---|
| 202 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 203 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[704] | 204 | this.Controls.Add(this.nameTextBox);
|
---|
[584] | 205 | this.Controls.Add(this.communicationDataTabControl);
|
---|
| 206 | this.Controls.Add(this.nameLabel);
|
---|
| 207 | this.Name = "ProtocolStateView";
|
---|
[704] | 208 | this.Size = new System.Drawing.Size(410, 373);
|
---|
[584] | 209 | this.communicationDataTabControl.ResumeLayout(false);
|
---|
[704] | 210 | this.giveTabPage.ResumeLayout(false);
|
---|
| 211 | this.giveTabPage.PerformLayout();
|
---|
| 212 | this.expectTabPage.ResumeLayout(false);
|
---|
| 213 | this.expectTabPage.PerformLayout();
|
---|
[584] | 214 | this.ResumeLayout(false);
|
---|
| 215 | this.PerformLayout();
|
---|
| 216 |
|
---|
| 217 | }
|
---|
| 218 |
|
---|
| 219 | #endregion
|
---|
| 220 |
|
---|
| 221 | private System.Windows.Forms.Label nameLabel;
|
---|
| 222 | private System.Windows.Forms.TabControl communicationDataTabControl;
|
---|
[704] | 223 | private System.Windows.Forms.TabPage giveTabPage;
|
---|
| 224 | private System.Windows.Forms.TabPage expectTabPage;
|
---|
| 225 | private System.Windows.Forms.Label giveBatchLabel;
|
---|
| 226 | private System.Windows.Forms.Label expectBatchLabel;
|
---|
| 227 | private System.Windows.Forms.CheckBox giveBatchCheckBox;
|
---|
| 228 | private System.Windows.Forms.Label giveVariablesLabel;
|
---|
| 229 | private System.Windows.Forms.Label expectVariablesLabel;
|
---|
| 230 | private System.Windows.Forms.CheckBox expectBatchCheckBox;
|
---|
| 231 | private System.Windows.Forms.TextBox nameTextBox;
|
---|
| 232 | private HeuristicLab.Data.ItemListView<HeuristicLab.Core.IVariable> giveItemListView;
|
---|
| 233 | private HeuristicLab.Data.ItemListView<HeuristicLab.Core.IVariable> expectItemListView;
|
---|
[584] | 234 |
|
---|
| 235 | }
|
---|
| 236 | }
|
---|