[4441] | 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 |
|
---|
[5533] | 22 | namespace HeuristicLab.Clients.OKB.Administration {
|
---|
[4441] | 23 | partial class AlgorithmView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | #region Component Designer generated code
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Required method for Designer support - do not modify
|
---|
| 33 | /// the contents of this method with the code editor.
|
---|
| 34 | /// </summary>
|
---|
| 35 | private void InitializeComponent() {
|
---|
| 36 | this.platformLabel = new System.Windows.Forms.Label();
|
---|
| 37 | this.platformComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 38 | this.algorithmClassLabel = new System.Windows.Forms.Label();
|
---|
| 39 | this.algorithmClassComboBox = new System.Windows.Forms.ComboBox();
|
---|
[4466] | 40 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 41 | this.usersTabPage = new System.Windows.Forms.TabPage();
|
---|
[5534] | 42 | this.usersListBox = new System.Windows.Forms.CheckedListBox();
|
---|
[4466] | 43 | this.storeUsersButton = new System.Windows.Forms.Button();
|
---|
| 44 | this.refreshUsersButton = new System.Windows.Forms.Button();
|
---|
| 45 | this.dataTabPage = new System.Windows.Forms.TabPage();
|
---|
[5534] | 46 | this.dataTypeNameLabel = new System.Windows.Forms.Label();
|
---|
| 47 | this.dataTypeGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 48 | this.dataTypeTypeNameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 49 | this.setDataTypeButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.dataTypeNameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 51 | this.dataTypeTypeNameLabel = new System.Windows.Forms.Label();
|
---|
[4466] | 52 | this.tabControl.SuspendLayout();
|
---|
| 53 | this.usersTabPage.SuspendLayout();
|
---|
[5534] | 54 | this.dataTypeGroupBox.SuspendLayout();
|
---|
[4441] | 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // nameTextBox
|
---|
| 58 | //
|
---|
| 59 | this.nameTextBox.Location = new System.Drawing.Point(90, 29);
|
---|
[4492] | 60 | this.nameTextBox.Size = new System.Drawing.Size(543, 20);
|
---|
[4441] | 61 | //
|
---|
| 62 | // descriptionTextBox
|
---|
| 63 | //
|
---|
| 64 | this.descriptionTextBox.Location = new System.Drawing.Point(90, 55);
|
---|
[4492] | 65 | this.descriptionTextBox.Size = new System.Drawing.Size(543, 20);
|
---|
[4441] | 66 | //
|
---|
| 67 | // storeButton
|
---|
| 68 | //
|
---|
| 69 | this.toolTip.SetToolTip(this.storeButton, "Store Data");
|
---|
| 70 | //
|
---|
| 71 | // platformLabel
|
---|
| 72 | //
|
---|
| 73 | this.platformLabel.AutoSize = true;
|
---|
| 74 | this.platformLabel.Location = new System.Drawing.Point(3, 84);
|
---|
| 75 | this.platformLabel.Name = "platformLabel";
|
---|
| 76 | this.platformLabel.Size = new System.Drawing.Size(48, 13);
|
---|
| 77 | this.platformLabel.TabIndex = 5;
|
---|
| 78 | this.platformLabel.Text = "&Platform:";
|
---|
| 79 | //
|
---|
| 80 | // platformComboBox
|
---|
| 81 | //
|
---|
| 82 | this.platformComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 83 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 84 | this.platformComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 85 | this.platformComboBox.FormattingEnabled = true;
|
---|
| 86 | this.platformComboBox.Location = new System.Drawing.Point(90, 81);
|
---|
| 87 | this.platformComboBox.Name = "platformComboBox";
|
---|
[4492] | 88 | this.platformComboBox.Size = new System.Drawing.Size(543, 21);
|
---|
[4441] | 89 | this.platformComboBox.TabIndex = 6;
|
---|
| 90 | this.platformComboBox.SelectedValueChanged += new System.EventHandler(this.platformComboBox_SelectedValueChanged);
|
---|
| 91 | //
|
---|
| 92 | // algorithmClassLabel
|
---|
| 93 | //
|
---|
| 94 | this.algorithmClassLabel.AutoSize = true;
|
---|
| 95 | this.algorithmClassLabel.Location = new System.Drawing.Point(3, 111);
|
---|
| 96 | this.algorithmClassLabel.Name = "algorithmClassLabel";
|
---|
| 97 | this.algorithmClassLabel.Size = new System.Drawing.Size(81, 13);
|
---|
| 98 | this.algorithmClassLabel.TabIndex = 7;
|
---|
| 99 | this.algorithmClassLabel.Text = "&Algorithm Class:";
|
---|
| 100 | //
|
---|
| 101 | // algorithmClassComboBox
|
---|
| 102 | //
|
---|
| 103 | this.algorithmClassComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 104 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 105 | this.algorithmClassComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 106 | this.algorithmClassComboBox.FormattingEnabled = true;
|
---|
| 107 | this.algorithmClassComboBox.Location = new System.Drawing.Point(90, 108);
|
---|
| 108 | this.algorithmClassComboBox.Name = "algorithmClassComboBox";
|
---|
[4492] | 109 | this.algorithmClassComboBox.Size = new System.Drawing.Size(543, 21);
|
---|
[4441] | 110 | this.algorithmClassComboBox.TabIndex = 8;
|
---|
| 111 | this.algorithmClassComboBox.SelectedValueChanged += new System.EventHandler(this.algorithmClassComboBox_SelectedValueChanged);
|
---|
| 112 | //
|
---|
[4466] | 113 | // tabControl
|
---|
| 114 | //
|
---|
| 115 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 116 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 117 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 118 | this.tabControl.Controls.Add(this.usersTabPage);
|
---|
| 119 | this.tabControl.Controls.Add(this.dataTabPage);
|
---|
[5534] | 120 | this.tabControl.Location = new System.Drawing.Point(0, 239);
|
---|
[4466] | 121 | this.tabControl.Name = "tabControl";
|
---|
| 122 | this.tabControl.SelectedIndex = 0;
|
---|
[5534] | 123 | this.tabControl.Size = new System.Drawing.Size(633, 206);
|
---|
[4466] | 124 | this.tabControl.TabIndex = 9;
|
---|
| 125 | //
|
---|
| 126 | // usersTabPage
|
---|
| 127 | //
|
---|
[5534] | 128 | this.usersTabPage.Controls.Add(this.usersListBox);
|
---|
[4466] | 129 | this.usersTabPage.Controls.Add(this.storeUsersButton);
|
---|
| 130 | this.usersTabPage.Controls.Add(this.refreshUsersButton);
|
---|
| 131 | this.usersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 132 | this.usersTabPage.Name = "usersTabPage";
|
---|
| 133 | this.usersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[5534] | 134 | this.usersTabPage.Size = new System.Drawing.Size(625, 180);
|
---|
[4466] | 135 | this.usersTabPage.TabIndex = 0;
|
---|
| 136 | this.usersTabPage.Text = "Authorized Users";
|
---|
| 137 | this.usersTabPage.UseVisualStyleBackColor = true;
|
---|
| 138 | //
|
---|
[5534] | 139 | // usersListBox
|
---|
| 140 | //
|
---|
| 141 | this.usersListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 142 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 143 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 144 | this.usersListBox.FormattingEnabled = true;
|
---|
| 145 | this.usersListBox.Location = new System.Drawing.Point(6, 35);
|
---|
| 146 | this.usersListBox.Name = "usersListBox";
|
---|
| 147 | this.usersListBox.Size = new System.Drawing.Size(613, 139);
|
---|
| 148 | this.usersListBox.TabIndex = 3;
|
---|
| 149 | //
|
---|
[4466] | 150 | // storeUsersButton
|
---|
| 151 | //
|
---|
[5289] | 152 | this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
|
---|
[4481] | 153 | this.storeUsersButton.Location = new System.Drawing.Point(36, 6);
|
---|
[4466] | 154 | this.storeUsersButton.Name = "storeUsersButton";
|
---|
[4481] | 155 | this.storeUsersButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4466] | 156 | this.storeUsersButton.TabIndex = 1;
|
---|
| 157 | this.toolTip.SetToolTip(this.storeUsersButton, "Store Authorized Users");
|
---|
| 158 | this.storeUsersButton.UseVisualStyleBackColor = true;
|
---|
| 159 | this.storeUsersButton.Click += new System.EventHandler(this.storeUsersButton_Click);
|
---|
| 160 | //
|
---|
| 161 | // refreshUsersButton
|
---|
| 162 | //
|
---|
[5289] | 163 | this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
|
---|
[4466] | 164 | this.refreshUsersButton.Location = new System.Drawing.Point(6, 6);
|
---|
| 165 | this.refreshUsersButton.Name = "refreshUsersButton";
|
---|
[4481] | 166 | this.refreshUsersButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4466] | 167 | this.refreshUsersButton.TabIndex = 0;
|
---|
| 168 | this.toolTip.SetToolTip(this.refreshUsersButton, "Refresh Authorized Users");
|
---|
| 169 | this.refreshUsersButton.UseVisualStyleBackColor = true;
|
---|
| 170 | this.refreshUsersButton.Click += new System.EventHandler(this.refreshUsersButton_Click);
|
---|
| 171 | //
|
---|
| 172 | // dataTabPage
|
---|
| 173 | //
|
---|
| 174 | this.dataTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 175 | this.dataTabPage.Name = "dataTabPage";
|
---|
| 176 | this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[5534] | 177 | this.dataTabPage.Size = new System.Drawing.Size(625, 180);
|
---|
[4466] | 178 | this.dataTabPage.TabIndex = 1;
|
---|
[4481] | 179 | this.dataTabPage.Text = "Platform-Specific Algorithm Data";
|
---|
[4466] | 180 | this.dataTabPage.UseVisualStyleBackColor = true;
|
---|
| 181 | //
|
---|
[5534] | 182 | // dataTypeNameLabel
|
---|
[4929] | 183 | //
|
---|
[5534] | 184 | this.dataTypeNameLabel.AutoSize = true;
|
---|
| 185 | this.dataTypeNameLabel.Location = new System.Drawing.Point(6, 22);
|
---|
| 186 | this.dataTypeNameLabel.Name = "dataTypeNameLabel";
|
---|
| 187 | this.dataTypeNameLabel.Size = new System.Drawing.Size(38, 13);
|
---|
| 188 | this.dataTypeNameLabel.TabIndex = 7;
|
---|
| 189 | this.dataTypeNameLabel.Text = "&Name:";
|
---|
[4929] | 190 | //
|
---|
[5534] | 191 | // dataTypeGroupBox
|
---|
[4929] | 192 | //
|
---|
[5534] | 193 | this.dataTypeGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 194 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 195 | this.dataTypeGroupBox.Controls.Add(this.dataTypeTypeNameTextBox);
|
---|
| 196 | this.dataTypeGroupBox.Controls.Add(this.setDataTypeButton);
|
---|
| 197 | this.dataTypeGroupBox.Controls.Add(this.dataTypeNameTextBox);
|
---|
| 198 | this.dataTypeGroupBox.Controls.Add(this.dataTypeTypeNameLabel);
|
---|
| 199 | this.dataTypeGroupBox.Controls.Add(this.dataTypeNameLabel);
|
---|
| 200 | this.dataTypeGroupBox.Location = new System.Drawing.Point(0, 146);
|
---|
| 201 | this.dataTypeGroupBox.Name = "dataTypeGroupBox";
|
---|
| 202 | this.dataTypeGroupBox.Size = new System.Drawing.Size(633, 77);
|
---|
| 203 | this.dataTypeGroupBox.TabIndex = 10;
|
---|
| 204 | this.dataTypeGroupBox.TabStop = false;
|
---|
| 205 | this.dataTypeGroupBox.Text = "Data Type";
|
---|
[4929] | 206 | //
|
---|
[5534] | 207 | // dataTypeTypeNameTextBox
|
---|
[4929] | 208 | //
|
---|
[5534] | 209 | this.dataTypeTypeNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 210 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 211 | this.dataTypeTypeNameTextBox.Location = new System.Drawing.Point(90, 45);
|
---|
| 212 | this.dataTypeTypeNameTextBox.Name = "dataTypeTypeNameTextBox";
|
---|
| 213 | this.dataTypeTypeNameTextBox.Size = new System.Drawing.Size(507, 20);
|
---|
| 214 | this.dataTypeTypeNameTextBox.TabIndex = 8;
|
---|
| 215 | this.dataTypeTypeNameTextBox.Validated += new System.EventHandler(this.dataTypeTypeNameTextBox_Validated);
|
---|
[4929] | 216 | //
|
---|
[5534] | 217 | // setDataTypeButton
|
---|
| 218 | //
|
---|
| 219 | this.setDataTypeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 220 | this.setDataTypeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
|
---|
| 221 | this.setDataTypeButton.Location = new System.Drawing.Point(603, 29);
|
---|
| 222 | this.setDataTypeButton.Name = "setDataTypeButton";
|
---|
| 223 | this.setDataTypeButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 224 | this.setDataTypeButton.TabIndex = 1;
|
---|
| 225 | this.toolTip.SetToolTip(this.setDataTypeButton, "Set Data Type");
|
---|
| 226 | this.setDataTypeButton.UseVisualStyleBackColor = true;
|
---|
| 227 | this.setDataTypeButton.Click += new System.EventHandler(this.setDataTypeButton_Click);
|
---|
| 228 | //
|
---|
| 229 | // dataTypeNameTextBox
|
---|
| 230 | //
|
---|
| 231 | this.dataTypeNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 232 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 233 | this.dataTypeNameTextBox.Location = new System.Drawing.Point(90, 19);
|
---|
| 234 | this.dataTypeNameTextBox.Name = "dataTypeNameTextBox";
|
---|
| 235 | this.dataTypeNameTextBox.Size = new System.Drawing.Size(507, 20);
|
---|
| 236 | this.dataTypeNameTextBox.TabIndex = 8;
|
---|
| 237 | this.dataTypeNameTextBox.Validated += new System.EventHandler(this.dataTypeNameTextBox_Validated);
|
---|
| 238 | //
|
---|
| 239 | // dataTypeTypeNameLabel
|
---|
| 240 | //
|
---|
| 241 | this.dataTypeTypeNameLabel.AutoSize = true;
|
---|
| 242 | this.dataTypeTypeNameLabel.Location = new System.Drawing.Point(6, 48);
|
---|
| 243 | this.dataTypeTypeNameLabel.Name = "dataTypeTypeNameLabel";
|
---|
| 244 | this.dataTypeTypeNameLabel.Size = new System.Drawing.Size(65, 13);
|
---|
| 245 | this.dataTypeTypeNameLabel.TabIndex = 7;
|
---|
| 246 | this.dataTypeTypeNameLabel.Text = "&Type Name:";
|
---|
| 247 | //
|
---|
[4441] | 248 | // AlgorithmView
|
---|
| 249 | //
|
---|
| 250 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[5534] | 251 | this.Controls.Add(this.dataTypeGroupBox);
|
---|
[4466] | 252 | this.Controls.Add(this.tabControl);
|
---|
[4441] | 253 | this.Controls.Add(this.platformComboBox);
|
---|
| 254 | this.Controls.Add(this.platformLabel);
|
---|
| 255 | this.Controls.Add(this.algorithmClassComboBox);
|
---|
| 256 | this.Controls.Add(this.algorithmClassLabel);
|
---|
| 257 | this.Name = "AlgorithmView";
|
---|
[5534] | 258 | this.Size = new System.Drawing.Size(633, 445);
|
---|
[4441] | 259 | this.Controls.SetChildIndex(this.algorithmClassLabel, 0);
|
---|
| 260 | this.Controls.SetChildIndex(this.algorithmClassComboBox, 0);
|
---|
| 261 | this.Controls.SetChildIndex(this.platformLabel, 0);
|
---|
| 262 | this.Controls.SetChildIndex(this.platformComboBox, 0);
|
---|
[4466] | 263 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
[5534] | 264 | this.Controls.SetChildIndex(this.dataTypeGroupBox, 0);
|
---|
[4441] | 265 | this.Controls.SetChildIndex(this.storeButton, 0);
|
---|
| 266 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 267 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 268 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 269 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
[4466] | 270 | this.tabControl.ResumeLayout(false);
|
---|
| 271 | this.usersTabPage.ResumeLayout(false);
|
---|
[5534] | 272 | this.dataTypeGroupBox.ResumeLayout(false);
|
---|
| 273 | this.dataTypeGroupBox.PerformLayout();
|
---|
[4441] | 274 | this.ResumeLayout(false);
|
---|
| 275 | this.PerformLayout();
|
---|
| 276 |
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 | #endregion
|
---|
| 280 |
|
---|
| 281 | private System.Windows.Forms.Label platformLabel;
|
---|
| 282 | private System.Windows.Forms.ComboBox platformComboBox;
|
---|
| 283 | private System.Windows.Forms.Label algorithmClassLabel;
|
---|
| 284 | private System.Windows.Forms.ComboBox algorithmClassComboBox;
|
---|
[4466] | 285 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 286 | private System.Windows.Forms.TabPage usersTabPage;
|
---|
| 287 | private System.Windows.Forms.Button storeUsersButton;
|
---|
| 288 | private System.Windows.Forms.Button refreshUsersButton;
|
---|
| 289 | private System.Windows.Forms.TabPage dataTabPage;
|
---|
[5534] | 290 | private System.Windows.Forms.CheckedListBox usersListBox;
|
---|
| 291 | private System.Windows.Forms.Label dataTypeNameLabel;
|
---|
| 292 | private System.Windows.Forms.GroupBox dataTypeGroupBox;
|
---|
| 293 | private System.Windows.Forms.TextBox dataTypeTypeNameTextBox;
|
---|
| 294 | private System.Windows.Forms.TextBox dataTypeNameTextBox;
|
---|
| 295 | private System.Windows.Forms.Label dataTypeTypeNameLabel;
|
---|
| 296 | private System.Windows.Forms.Button setDataTypeButton;
|
---|
[4441] | 297 |
|
---|
| 298 | }
|
---|
| 299 | }
|
---|