[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 |
|
---|
| 22 | namespace HeuristicLab.Clients.OKB {
|
---|
| 23 | partial class AlgorithmView {
|
---|
| 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.platformLabel = new System.Windows.Forms.Label();
|
---|
| 48 | this.platformComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 49 | this.algorithmClassLabel = new System.Windows.Forms.Label();
|
---|
| 50 | this.algorithmClassComboBox = new System.Windows.Forms.ComboBox();
|
---|
[4466] | 51 | this.usersListBox = new System.Windows.Forms.ListBox();
|
---|
| 52 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 53 | this.usersTabPage = new System.Windows.Forms.TabPage();
|
---|
| 54 | this.storeUsersButton = new System.Windows.Forms.Button();
|
---|
| 55 | this.refreshUsersButton = new System.Windows.Forms.Button();
|
---|
| 56 | this.dataTabPage = new System.Windows.Forms.TabPage();
|
---|
[4481] | 57 | this.algorithmDataView = new HeuristicLab.Clients.OKB.AlgorithmDataView();
|
---|
[4466] | 58 | this.tabControl.SuspendLayout();
|
---|
| 59 | this.usersTabPage.SuspendLayout();
|
---|
| 60 | this.dataTabPage.SuspendLayout();
|
---|
[4441] | 61 | this.SuspendLayout();
|
---|
| 62 | //
|
---|
| 63 | // nameTextBox
|
---|
| 64 | //
|
---|
| 65 | this.nameTextBox.Location = new System.Drawing.Point(90, 29);
|
---|
[4492] | 66 | this.nameTextBox.Size = new System.Drawing.Size(543, 20);
|
---|
[4441] | 67 | //
|
---|
| 68 | // descriptionTextBox
|
---|
| 69 | //
|
---|
| 70 | this.descriptionTextBox.Location = new System.Drawing.Point(90, 55);
|
---|
[4492] | 71 | this.descriptionTextBox.Size = new System.Drawing.Size(543, 20);
|
---|
[4441] | 72 | //
|
---|
| 73 | // storeButton
|
---|
| 74 | //
|
---|
| 75 | this.toolTip.SetToolTip(this.storeButton, "Store Data");
|
---|
| 76 | //
|
---|
| 77 | // platformLabel
|
---|
| 78 | //
|
---|
| 79 | this.platformLabel.AutoSize = true;
|
---|
| 80 | this.platformLabel.Location = new System.Drawing.Point(3, 84);
|
---|
| 81 | this.platformLabel.Name = "platformLabel";
|
---|
| 82 | this.platformLabel.Size = new System.Drawing.Size(48, 13);
|
---|
| 83 | this.platformLabel.TabIndex = 5;
|
---|
| 84 | this.platformLabel.Text = "&Platform:";
|
---|
| 85 | //
|
---|
| 86 | // platformComboBox
|
---|
| 87 | //
|
---|
| 88 | this.platformComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 89 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 90 | this.platformComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 91 | this.platformComboBox.FormattingEnabled = true;
|
---|
| 92 | this.platformComboBox.Location = new System.Drawing.Point(90, 81);
|
---|
| 93 | this.platformComboBox.Name = "platformComboBox";
|
---|
[4492] | 94 | this.platformComboBox.Size = new System.Drawing.Size(543, 21);
|
---|
[4441] | 95 | this.platformComboBox.TabIndex = 6;
|
---|
| 96 | this.platformComboBox.SelectedValueChanged += new System.EventHandler(this.platformComboBox_SelectedValueChanged);
|
---|
| 97 | //
|
---|
| 98 | // algorithmClassLabel
|
---|
| 99 | //
|
---|
| 100 | this.algorithmClassLabel.AutoSize = true;
|
---|
| 101 | this.algorithmClassLabel.Location = new System.Drawing.Point(3, 111);
|
---|
| 102 | this.algorithmClassLabel.Name = "algorithmClassLabel";
|
---|
| 103 | this.algorithmClassLabel.Size = new System.Drawing.Size(81, 13);
|
---|
| 104 | this.algorithmClassLabel.TabIndex = 7;
|
---|
| 105 | this.algorithmClassLabel.Text = "&Algorithm Class:";
|
---|
| 106 | //
|
---|
| 107 | // algorithmClassComboBox
|
---|
| 108 | //
|
---|
| 109 | this.algorithmClassComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 110 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 111 | this.algorithmClassComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 112 | this.algorithmClassComboBox.FormattingEnabled = true;
|
---|
| 113 | this.algorithmClassComboBox.Location = new System.Drawing.Point(90, 108);
|
---|
| 114 | this.algorithmClassComboBox.Name = "algorithmClassComboBox";
|
---|
[4492] | 115 | this.algorithmClassComboBox.Size = new System.Drawing.Size(543, 21);
|
---|
[4441] | 116 | this.algorithmClassComboBox.TabIndex = 8;
|
---|
| 117 | this.algorithmClassComboBox.SelectedValueChanged += new System.EventHandler(this.algorithmClassComboBox_SelectedValueChanged);
|
---|
| 118 | //
|
---|
[4466] | 119 | // usersListBox
|
---|
| 120 | //
|
---|
| 121 | this.usersListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 122 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 123 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 124 | this.usersListBox.Enabled = false;
|
---|
| 125 | this.usersListBox.FormattingEnabled = true;
|
---|
[4481] | 126 | this.usersListBox.Location = new System.Drawing.Point(6, 36);
|
---|
[4466] | 127 | this.usersListBox.Name = "usersListBox";
|
---|
| 128 | this.usersListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
|
---|
| 129 | this.usersListBox.Size = new System.Drawing.Size(613, 225);
|
---|
| 130 | this.usersListBox.TabIndex = 2;
|
---|
| 131 | this.usersListBox.SelectedIndexChanged += new System.EventHandler(this.usersListBox_SelectedIndexChanged);
|
---|
| 132 | //
|
---|
| 133 | // tabControl
|
---|
| 134 | //
|
---|
| 135 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 136 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 137 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 138 | this.tabControl.Controls.Add(this.usersTabPage);
|
---|
| 139 | this.tabControl.Controls.Add(this.dataTabPage);
|
---|
| 140 | this.tabControl.Location = new System.Drawing.Point(0, 162);
|
---|
| 141 | this.tabControl.Name = "tabControl";
|
---|
| 142 | this.tabControl.SelectedIndex = 0;
|
---|
| 143 | this.tabControl.Size = new System.Drawing.Size(633, 292);
|
---|
| 144 | this.tabControl.TabIndex = 9;
|
---|
| 145 | //
|
---|
| 146 | // usersTabPage
|
---|
| 147 | //
|
---|
| 148 | this.usersTabPage.Controls.Add(this.storeUsersButton);
|
---|
| 149 | this.usersTabPage.Controls.Add(this.refreshUsersButton);
|
---|
| 150 | this.usersTabPage.Controls.Add(this.usersListBox);
|
---|
| 151 | this.usersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 152 | this.usersTabPage.Name = "usersTabPage";
|
---|
| 153 | this.usersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 154 | this.usersTabPage.Size = new System.Drawing.Size(625, 266);
|
---|
| 155 | this.usersTabPage.TabIndex = 0;
|
---|
| 156 | this.usersTabPage.Text = "Authorized Users";
|
---|
| 157 | this.usersTabPage.UseVisualStyleBackColor = true;
|
---|
| 158 | //
|
---|
| 159 | // storeUsersButton
|
---|
| 160 | //
|
---|
[4492] | 161 | this.storeUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
|
---|
[4481] | 162 | this.storeUsersButton.Location = new System.Drawing.Point(36, 6);
|
---|
[4466] | 163 | this.storeUsersButton.Name = "storeUsersButton";
|
---|
[4481] | 164 | this.storeUsersButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4466] | 165 | this.storeUsersButton.TabIndex = 1;
|
---|
| 166 | this.toolTip.SetToolTip(this.storeUsersButton, "Store Authorized Users");
|
---|
| 167 | this.storeUsersButton.UseVisualStyleBackColor = true;
|
---|
| 168 | this.storeUsersButton.Click += new System.EventHandler(this.storeUsersButton_Click);
|
---|
| 169 | //
|
---|
| 170 | // refreshUsersButton
|
---|
| 171 | //
|
---|
[4492] | 172 | this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
|
---|
[4466] | 173 | this.refreshUsersButton.Location = new System.Drawing.Point(6, 6);
|
---|
| 174 | this.refreshUsersButton.Name = "refreshUsersButton";
|
---|
[4481] | 175 | this.refreshUsersButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4466] | 176 | this.refreshUsersButton.TabIndex = 0;
|
---|
| 177 | this.toolTip.SetToolTip(this.refreshUsersButton, "Refresh Authorized Users");
|
---|
| 178 | this.refreshUsersButton.UseVisualStyleBackColor = true;
|
---|
| 179 | this.refreshUsersButton.Click += new System.EventHandler(this.refreshUsersButton_Click);
|
---|
| 180 | //
|
---|
| 181 | // dataTabPage
|
---|
| 182 | //
|
---|
[4481] | 183 | this.dataTabPage.Controls.Add(this.algorithmDataView);
|
---|
[4466] | 184 | this.dataTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 185 | this.dataTabPage.Name = "dataTabPage";
|
---|
| 186 | this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 187 | this.dataTabPage.Size = new System.Drawing.Size(625, 266);
|
---|
| 188 | this.dataTabPage.TabIndex = 1;
|
---|
[4481] | 189 | this.dataTabPage.Text = "Platform-Specific Algorithm Data";
|
---|
[4466] | 190 | this.dataTabPage.UseVisualStyleBackColor = true;
|
---|
| 191 | //
|
---|
[4481] | 192 | // algorithmDataView
|
---|
[4466] | 193 | //
|
---|
[4492] | 194 | this.algorithmDataView.AlgorithmId = ((long)(0));
|
---|
[4481] | 195 | this.algorithmDataView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 196 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[4466] | 197 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4481] | 198 | this.algorithmDataView.Caption = "AlgorithmData View";
|
---|
| 199 | this.algorithmDataView.Content = null;
|
---|
| 200 | this.algorithmDataView.Location = new System.Drawing.Point(6, 6);
|
---|
| 201 | this.algorithmDataView.Name = "algorithmDataView";
|
---|
| 202 | this.algorithmDataView.ReadOnly = false;
|
---|
| 203 | this.algorithmDataView.Size = new System.Drawing.Size(613, 254);
|
---|
| 204 | this.algorithmDataView.TabIndex = 0;
|
---|
[4466] | 205 | //
|
---|
[4441] | 206 | // AlgorithmView
|
---|
| 207 | //
|
---|
| 208 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[4466] | 209 | this.Controls.Add(this.tabControl);
|
---|
[4441] | 210 | this.Controls.Add(this.platformComboBox);
|
---|
| 211 | this.Controls.Add(this.platformLabel);
|
---|
| 212 | this.Controls.Add(this.algorithmClassComboBox);
|
---|
| 213 | this.Controls.Add(this.algorithmClassLabel);
|
---|
| 214 | this.Name = "AlgorithmView";
|
---|
[4466] | 215 | this.Size = new System.Drawing.Size(633, 454);
|
---|
[4441] | 216 | this.Controls.SetChildIndex(this.algorithmClassLabel, 0);
|
---|
| 217 | this.Controls.SetChildIndex(this.algorithmClassComboBox, 0);
|
---|
| 218 | this.Controls.SetChildIndex(this.platformLabel, 0);
|
---|
| 219 | this.Controls.SetChildIndex(this.platformComboBox, 0);
|
---|
[4466] | 220 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
[4441] | 221 | this.Controls.SetChildIndex(this.storeButton, 0);
|
---|
| 222 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 223 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 224 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 225 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
[4466] | 226 | this.tabControl.ResumeLayout(false);
|
---|
| 227 | this.usersTabPage.ResumeLayout(false);
|
---|
| 228 | this.dataTabPage.ResumeLayout(false);
|
---|
[4441] | 229 | this.ResumeLayout(false);
|
---|
| 230 | this.PerformLayout();
|
---|
| 231 |
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | #endregion
|
---|
| 235 |
|
---|
| 236 | private System.Windows.Forms.Label platformLabel;
|
---|
| 237 | private System.Windows.Forms.ComboBox platformComboBox;
|
---|
| 238 | private System.Windows.Forms.Label algorithmClassLabel;
|
---|
| 239 | private System.Windows.Forms.ComboBox algorithmClassComboBox;
|
---|
[4466] | 240 | private System.Windows.Forms.ListBox usersListBox;
|
---|
| 241 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 242 | private System.Windows.Forms.TabPage usersTabPage;
|
---|
| 243 | private System.Windows.Forms.Button storeUsersButton;
|
---|
| 244 | private System.Windows.Forms.Button refreshUsersButton;
|
---|
| 245 | private System.Windows.Forms.TabPage dataTabPage;
|
---|
[4481] | 246 | private AlgorithmDataView algorithmDataView;
|
---|
[4441] | 247 |
|
---|
| 248 | }
|
---|
| 249 | }
|
---|