[1030] | 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 |
|
---|
[1089] | 22 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
[1018] | 23 | partial class AddJobForm {
|
---|
| 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 Windows Form 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.btnAdd = new System.Windows.Forms.Button();
|
---|
| 48 | this.btnClose = new System.Windows.Forms.Button();
|
---|
[1030] | 49 | this.lblNumJobs = new System.Windows.Forms.Label();
|
---|
| 50 | this.tbNumJobs = new System.Windows.Forms.TextBox();
|
---|
| 51 | this.lblError = new System.Windows.Forms.Label();
|
---|
[1937] | 52 | this.lblProject = new System.Windows.Forms.Label();
|
---|
| 53 | this.cbProject = new System.Windows.Forms.ComboBox();
|
---|
| 54 | this.cbAllGroups = new System.Windows.Forms.CheckBox();
|
---|
| 55 | this.gbGroups = new System.Windows.Forms.GroupBox();
|
---|
| 56 | this.btnRemoveGroup = new System.Windows.Forms.Button();
|
---|
| 57 | this.btnAddGroup = new System.Windows.Forms.Button();
|
---|
| 58 | this.lbGroupsIn = new System.Windows.Forms.ListBox();
|
---|
| 59 | this.lbGroupsOut = new System.Windows.Forms.ListBox();
|
---|
[1956] | 60 | this.ofdLoadJob = new System.Windows.Forms.OpenFileDialog();
|
---|
| 61 | this.textBox1 = new System.Windows.Forms.TextBox();
|
---|
| 62 | this.btnLoad = new System.Windows.Forms.Button();
|
---|
[1937] | 63 | this.gbGroups.SuspendLayout();
|
---|
[1018] | 64 | this.SuspendLayout();
|
---|
| 65 | //
|
---|
| 66 | // btnAdd
|
---|
| 67 | //
|
---|
[1956] | 68 | this.btnAdd.Location = new System.Drawing.Point(6, 249);
|
---|
[1018] | 69 | this.btnAdd.Name = "btnAdd";
|
---|
| 70 | this.btnAdd.Size = new System.Drawing.Size(75, 23);
|
---|
[1037] | 71 | this.btnAdd.TabIndex = 3;
|
---|
[1018] | 72 | this.btnAdd.Text = "Add";
|
---|
| 73 | this.btnAdd.UseVisualStyleBackColor = true;
|
---|
[1037] | 74 | this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
|
---|
[1018] | 75 | //
|
---|
| 76 | // btnClose
|
---|
| 77 | //
|
---|
[1483] | 78 | this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
[1956] | 79 | this.btnClose.Location = new System.Drawing.Point(291, 249);
|
---|
[1018] | 80 | this.btnClose.Name = "btnClose";
|
---|
| 81 | this.btnClose.Size = new System.Drawing.Size(75, 23);
|
---|
[1037] | 82 | this.btnClose.TabIndex = 4;
|
---|
[1018] | 83 | this.btnClose.Text = "Close";
|
---|
| 84 | this.btnClose.UseVisualStyleBackColor = true;
|
---|
[1037] | 85 | this.btnClose.Click += new System.EventHandler(this.BtnClose_Click);
|
---|
[1018] | 86 | //
|
---|
[1030] | 87 | // lblNumJobs
|
---|
| 88 | //
|
---|
| 89 | this.lblNumJobs.AutoSize = true;
|
---|
| 90 | this.lblNumJobs.Location = new System.Drawing.Point(12, 9);
|
---|
| 91 | this.lblNumJobs.Name = "lblNumJobs";
|
---|
| 92 | this.lblNumJobs.Size = new System.Drawing.Size(78, 13);
|
---|
| 93 | this.lblNumJobs.TabIndex = 6;
|
---|
| 94 | this.lblNumJobs.Text = "Number of jobs";
|
---|
| 95 | //
|
---|
| 96 | // tbNumJobs
|
---|
| 97 | //
|
---|
| 98 | this.tbNumJobs.Location = new System.Drawing.Point(117, 6);
|
---|
| 99 | this.tbNumJobs.Name = "tbNumJobs";
|
---|
[1937] | 100 | this.tbNumJobs.Size = new System.Drawing.Size(243, 20);
|
---|
[1037] | 101 | this.tbNumJobs.TabIndex = 1;
|
---|
[1030] | 102 | this.tbNumJobs.Text = "1";
|
---|
| 103 | //
|
---|
| 104 | // lblError
|
---|
| 105 | //
|
---|
| 106 | this.lblError.AutoSize = true;
|
---|
[1956] | 107 | this.lblError.Location = new System.Drawing.Point(87, 254);
|
---|
[1030] | 108 | this.lblError.Name = "lblError";
|
---|
| 109 | this.lblError.Size = new System.Drawing.Size(0, 13);
|
---|
| 110 | this.lblError.TabIndex = 8;
|
---|
| 111 | //
|
---|
[1937] | 112 | // lblProject
|
---|
| 113 | //
|
---|
| 114 | this.lblProject.AutoSize = true;
|
---|
| 115 | this.lblProject.Location = new System.Drawing.Point(12, 39);
|
---|
| 116 | this.lblProject.Name = "lblProject";
|
---|
| 117 | this.lblProject.Size = new System.Drawing.Size(59, 13);
|
---|
| 118 | this.lblProject.TabIndex = 9;
|
---|
| 119 | this.lblProject.Text = "Job project";
|
---|
| 120 | //
|
---|
| 121 | // cbProject
|
---|
| 122 | //
|
---|
[1956] | 123 | this.cbProject.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
[1937] | 124 | this.cbProject.FormattingEnabled = true;
|
---|
| 125 | this.cbProject.Location = new System.Drawing.Point(117, 31);
|
---|
| 126 | this.cbProject.Name = "cbProject";
|
---|
| 127 | this.cbProject.Size = new System.Drawing.Size(245, 21);
|
---|
| 128 | this.cbProject.TabIndex = 10;
|
---|
| 129 | //
|
---|
| 130 | // cbAllGroups
|
---|
| 131 | //
|
---|
| 132 | this.cbAllGroups.AutoSize = true;
|
---|
| 133 | this.cbAllGroups.Checked = true;
|
---|
| 134 | this.cbAllGroups.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
[1956] | 135 | this.cbAllGroups.Location = new System.Drawing.Point(15, 90);
|
---|
[1937] | 136 | this.cbAllGroups.Name = "cbAllGroups";
|
---|
| 137 | this.cbAllGroups.Size = new System.Drawing.Size(91, 17);
|
---|
| 138 | this.cbAllGroups.TabIndex = 15;
|
---|
| 139 | this.cbAllGroups.Text = "use all groups";
|
---|
| 140 | this.cbAllGroups.UseVisualStyleBackColor = true;
|
---|
| 141 | this.cbAllGroups.CheckedChanged += new System.EventHandler(this.cbAllGroups_CheckedChanged);
|
---|
| 142 | //
|
---|
| 143 | // gbGroups
|
---|
| 144 | //
|
---|
| 145 | this.gbGroups.Controls.Add(this.btnRemoveGroup);
|
---|
| 146 | this.gbGroups.Controls.Add(this.btnAddGroup);
|
---|
| 147 | this.gbGroups.Controls.Add(this.lbGroupsIn);
|
---|
| 148 | this.gbGroups.Controls.Add(this.lbGroupsOut);
|
---|
[1956] | 149 | this.gbGroups.Location = new System.Drawing.Point(10, 115);
|
---|
[1937] | 150 | this.gbGroups.Name = "gbGroups";
|
---|
| 151 | this.gbGroups.Size = new System.Drawing.Size(357, 128);
|
---|
| 152 | this.gbGroups.TabIndex = 16;
|
---|
| 153 | this.gbGroups.TabStop = false;
|
---|
| 154 | this.gbGroups.Text = "choose groups";
|
---|
| 155 | //
|
---|
| 156 | // btnRemoveGroup
|
---|
| 157 | //
|
---|
| 158 | this.btnRemoveGroup.Enabled = false;
|
---|
| 159 | this.btnRemoveGroup.Location = new System.Drawing.Point(143, 56);
|
---|
| 160 | this.btnRemoveGroup.Name = "btnRemoveGroup";
|
---|
| 161 | this.btnRemoveGroup.Size = new System.Drawing.Size(75, 23);
|
---|
| 162 | this.btnRemoveGroup.TabIndex = 18;
|
---|
| 163 | this.btnRemoveGroup.Text = "<< Remove";
|
---|
| 164 | this.btnRemoveGroup.UseVisualStyleBackColor = true;
|
---|
[1956] | 165 | this.btnRemoveGroup.Click += new System.EventHandler(this.btnRemoveGroup_Click);
|
---|
[1937] | 166 | //
|
---|
| 167 | // btnAddGroup
|
---|
| 168 | //
|
---|
| 169 | this.btnAddGroup.Enabled = false;
|
---|
| 170 | this.btnAddGroup.Location = new System.Drawing.Point(143, 26);
|
---|
| 171 | this.btnAddGroup.Name = "btnAddGroup";
|
---|
| 172 | this.btnAddGroup.Size = new System.Drawing.Size(75, 23);
|
---|
| 173 | this.btnAddGroup.TabIndex = 17;
|
---|
| 174 | this.btnAddGroup.Text = "Add >>";
|
---|
| 175 | this.btnAddGroup.UseVisualStyleBackColor = true;
|
---|
[1956] | 176 | this.btnAddGroup.Click += new System.EventHandler(this.btnAddGroup_Click);
|
---|
[1937] | 177 | //
|
---|
| 178 | // lbGroupsIn
|
---|
| 179 | //
|
---|
| 180 | this.lbGroupsIn.Enabled = false;
|
---|
| 181 | this.lbGroupsIn.FormattingEnabled = true;
|
---|
| 182 | this.lbGroupsIn.Location = new System.Drawing.Point(224, 15);
|
---|
| 183 | this.lbGroupsIn.Name = "lbGroupsIn";
|
---|
| 184 | this.lbGroupsIn.Size = new System.Drawing.Size(128, 108);
|
---|
| 185 | this.lbGroupsIn.TabIndex = 16;
|
---|
[1956] | 186 | this.lbGroupsIn.DoubleClick += new System.EventHandler(this.lbGroupsIn_SelectedIndexChanged);
|
---|
[1937] | 187 | //
|
---|
| 188 | // lbGroupsOut
|
---|
| 189 | //
|
---|
| 190 | this.lbGroupsOut.Enabled = false;
|
---|
| 191 | this.lbGroupsOut.FormattingEnabled = true;
|
---|
| 192 | this.lbGroupsOut.Location = new System.Drawing.Point(6, 15);
|
---|
| 193 | this.lbGroupsOut.Name = "lbGroupsOut";
|
---|
| 194 | this.lbGroupsOut.Size = new System.Drawing.Size(130, 108);
|
---|
| 195 | this.lbGroupsOut.TabIndex = 15;
|
---|
[1956] | 196 | this.lbGroupsOut.DoubleClick += new System.EventHandler(this.lbGroupsOut_SelectedIndexChanged);
|
---|
[1937] | 197 | //
|
---|
[1956] | 198 | // ofdLoadJob
|
---|
| 199 | //
|
---|
| 200 | this.ofdLoadJob.FileName = "openFileDialog1";
|
---|
| 201 | //
|
---|
| 202 | // textBox1
|
---|
| 203 | //
|
---|
| 204 | this.textBox1.BackColor = System.Drawing.SystemColors.Window;
|
---|
| 205 | this.textBox1.Enabled = false;
|
---|
| 206 | this.textBox1.Location = new System.Drawing.Point(13, 64);
|
---|
| 207 | this.textBox1.Name = "textBox1";
|
---|
| 208 | this.textBox1.Size = new System.Drawing.Size(266, 20);
|
---|
| 209 | this.textBox1.TabIndex = 17;
|
---|
| 210 | //
|
---|
| 211 | // btnLoad
|
---|
| 212 | //
|
---|
| 213 | this.btnLoad.Location = new System.Drawing.Point(285, 63);
|
---|
| 214 | this.btnLoad.Name = "btnLoad";
|
---|
| 215 | this.btnLoad.Size = new System.Drawing.Size(75, 23);
|
---|
| 216 | this.btnLoad.TabIndex = 18;
|
---|
| 217 | this.btnLoad.Text = "Load Job";
|
---|
| 218 | this.btnLoad.UseVisualStyleBackColor = true;
|
---|
| 219 | this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
|
---|
| 220 | //
|
---|
[1018] | 221 | // AddJobForm
|
---|
| 222 | //
|
---|
[1483] | 223 | this.AcceptButton = this.btnAdd;
|
---|
[1018] | 224 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 225 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1483] | 226 | this.CancelButton = this.btnClose;
|
---|
[1956] | 227 | this.ClientSize = new System.Drawing.Size(372, 280);
|
---|
| 228 | this.Controls.Add(this.btnLoad);
|
---|
| 229 | this.Controls.Add(this.textBox1);
|
---|
[1937] | 230 | this.Controls.Add(this.gbGroups);
|
---|
| 231 | this.Controls.Add(this.cbAllGroups);
|
---|
| 232 | this.Controls.Add(this.cbProject);
|
---|
| 233 | this.Controls.Add(this.lblProject);
|
---|
[1030] | 234 | this.Controls.Add(this.lblError);
|
---|
| 235 | this.Controls.Add(this.tbNumJobs);
|
---|
| 236 | this.Controls.Add(this.lblNumJobs);
|
---|
[1018] | 237 | this.Controls.Add(this.btnClose);
|
---|
| 238 | this.Controls.Add(this.btnAdd);
|
---|
| 239 | this.Name = "AddJobForm";
|
---|
| 240 | this.Text = "Add Job";
|
---|
[1937] | 241 | this.gbGroups.ResumeLayout(false);
|
---|
[1018] | 242 | this.ResumeLayout(false);
|
---|
| 243 | this.PerformLayout();
|
---|
| 244 |
|
---|
| 245 | }
|
---|
| 246 |
|
---|
| 247 | #endregion
|
---|
| 248 |
|
---|
| 249 | private System.Windows.Forms.Button btnAdd;
|
---|
| 250 | private System.Windows.Forms.Button btnClose;
|
---|
[1030] | 251 | private System.Windows.Forms.Label lblNumJobs;
|
---|
| 252 | private System.Windows.Forms.TextBox tbNumJobs;
|
---|
| 253 | private System.Windows.Forms.Label lblError;
|
---|
[1937] | 254 | private System.Windows.Forms.Label lblProject;
|
---|
| 255 | private System.Windows.Forms.ComboBox cbProject;
|
---|
| 256 | private System.Windows.Forms.CheckBox cbAllGroups;
|
---|
| 257 | private System.Windows.Forms.GroupBox gbGroups;
|
---|
| 258 | private System.Windows.Forms.Button btnRemoveGroup;
|
---|
| 259 | private System.Windows.Forms.Button btnAddGroup;
|
---|
| 260 | private System.Windows.Forms.ListBox lbGroupsIn;
|
---|
| 261 | private System.Windows.Forms.ListBox lbGroupsOut;
|
---|
[1956] | 262 | private System.Windows.Forms.OpenFileDialog ofdLoadJob;
|
---|
| 263 | private System.Windows.Forms.TextBox textBox1;
|
---|
| 264 | private System.Windows.Forms.Button btnLoad;
|
---|
[1018] | 265 | }
|
---|
| 266 | } |
---|