[717] | 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.Hive.Client.Console {
|
---|
| 23 | partial class HiveClientConsole {
|
---|
| 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.msClientConsole = new System.Windows.Forms.MenuStrip();
|
---|
| 48 | this.tsmiConsole = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 49 | this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 50 | this.tcClientConsole = new System.Windows.Forms.TabControl();
|
---|
| 51 | this.tpConnection = new System.Windows.Forms.TabPage();
|
---|
| 52 | this.btnDisconnect = new System.Windows.Forms.Button();
|
---|
| 53 | this.btnConnect = new System.Windows.Forms.Button();
|
---|
| 54 | this.gbUser = new System.Windows.Forms.GroupBox();
|
---|
| 55 | this.tbUuid = new System.Windows.Forms.TextBox();
|
---|
| 56 | this.lblUuid = new System.Windows.Forms.Label();
|
---|
| 57 | this.gbManager = new System.Windows.Forms.GroupBox();
|
---|
| 58 | this.lblPort = new System.Windows.Forms.Label();
|
---|
| 59 | this.lblIp = new System.Windows.Forms.Label();
|
---|
| 60 | this.tbPort = new System.Windows.Forms.TextBox();
|
---|
| 61 | this.tabPage2 = new System.Windows.Forms.TabPage();
|
---|
[752] | 62 | this.lbEventLog = new System.Windows.Forms.ListBox();
|
---|
| 63 | this.tbIp = new HeuristicLab.Hive.Client.Console.IPAddressTextBox();
|
---|
[717] | 64 | this.msClientConsole.SuspendLayout();
|
---|
| 65 | this.tcClientConsole.SuspendLayout();
|
---|
| 66 | this.tpConnection.SuspendLayout();
|
---|
| 67 | this.gbUser.SuspendLayout();
|
---|
| 68 | this.gbManager.SuspendLayout();
|
---|
| 69 | this.SuspendLayout();
|
---|
| 70 | //
|
---|
| 71 | // msClientConsole
|
---|
| 72 | //
|
---|
| 73 | this.msClientConsole.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 74 | this.tsmiConsole});
|
---|
| 75 | this.msClientConsole.Location = new System.Drawing.Point(0, 0);
|
---|
| 76 | this.msClientConsole.Name = "msClientConsole";
|
---|
| 77 | this.msClientConsole.Size = new System.Drawing.Size(434, 24);
|
---|
| 78 | this.msClientConsole.TabIndex = 0;
|
---|
| 79 | this.msClientConsole.Text = "menuStrip1";
|
---|
| 80 | //
|
---|
| 81 | // tsmiConsole
|
---|
| 82 | //
|
---|
| 83 | this.tsmiConsole.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 84 | this.tsmiExit});
|
---|
| 85 | this.tsmiConsole.Name = "tsmiConsole";
|
---|
| 86 | this.tsmiConsole.Size = new System.Drawing.Size(82, 20);
|
---|
| 87 | this.tsmiConsole.Text = "Clientconsole";
|
---|
| 88 | //
|
---|
| 89 | // tsmiExit
|
---|
| 90 | //
|
---|
| 91 | this.tsmiExit.Name = "tsmiExit";
|
---|
| 92 | this.tsmiExit.Size = new System.Drawing.Size(103, 22);
|
---|
| 93 | this.tsmiExit.Text = "Exit";
|
---|
| 94 | this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
|
---|
| 95 | //
|
---|
| 96 | // tcClientConsole
|
---|
| 97 | //
|
---|
| 98 | this.tcClientConsole.Controls.Add(this.tpConnection);
|
---|
| 99 | this.tcClientConsole.Controls.Add(this.tabPage2);
|
---|
| 100 | this.tcClientConsole.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 101 | this.tcClientConsole.Location = new System.Drawing.Point(0, 24);
|
---|
| 102 | this.tcClientConsole.Name = "tcClientConsole";
|
---|
| 103 | this.tcClientConsole.SelectedIndex = 0;
|
---|
| 104 | this.tcClientConsole.Size = new System.Drawing.Size(434, 481);
|
---|
| 105 | this.tcClientConsole.TabIndex = 1;
|
---|
| 106 | //
|
---|
| 107 | // tpConnection
|
---|
| 108 | //
|
---|
[752] | 109 | this.tpConnection.Controls.Add(this.lbEventLog);
|
---|
[717] | 110 | this.tpConnection.Controls.Add(this.btnDisconnect);
|
---|
| 111 | this.tpConnection.Controls.Add(this.btnConnect);
|
---|
| 112 | this.tpConnection.Controls.Add(this.gbUser);
|
---|
| 113 | this.tpConnection.Controls.Add(this.gbManager);
|
---|
| 114 | this.tpConnection.Location = new System.Drawing.Point(4, 22);
|
---|
| 115 | this.tpConnection.Name = "tpConnection";
|
---|
| 116 | this.tpConnection.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 117 | this.tpConnection.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
---|
| 118 | this.tpConnection.Size = new System.Drawing.Size(426, 455);
|
---|
| 119 | this.tpConnection.TabIndex = 0;
|
---|
| 120 | this.tpConnection.Text = "Connection";
|
---|
| 121 | this.tpConnection.UseVisualStyleBackColor = true;
|
---|
| 122 | //
|
---|
| 123 | // btnDisconnect
|
---|
| 124 | //
|
---|
| 125 | this.btnDisconnect.Enabled = false;
|
---|
| 126 | this.btnDisconnect.Location = new System.Drawing.Point(213, 182);
|
---|
| 127 | this.btnDisconnect.Name = "btnDisconnect";
|
---|
| 128 | this.btnDisconnect.Size = new System.Drawing.Size(134, 23);
|
---|
| 129 | this.btnDisconnect.TabIndex = 4;
|
---|
| 130 | this.btnDisconnect.Text = "Disconnect";
|
---|
| 131 | this.btnDisconnect.UseVisualStyleBackColor = true;
|
---|
| 132 | this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
|
---|
| 133 | //
|
---|
| 134 | // btnConnect
|
---|
| 135 | //
|
---|
| 136 | this.btnConnect.Location = new System.Drawing.Point(66, 182);
|
---|
| 137 | this.btnConnect.Name = "btnConnect";
|
---|
| 138 | this.btnConnect.Size = new System.Drawing.Size(131, 23);
|
---|
| 139 | this.btnConnect.TabIndex = 3;
|
---|
| 140 | this.btnConnect.Text = "Connect";
|
---|
| 141 | this.btnConnect.UseVisualStyleBackColor = true;
|
---|
| 142 | this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
|
---|
| 143 | //
|
---|
| 144 | // gbUser
|
---|
| 145 | //
|
---|
| 146 | this.gbUser.Controls.Add(this.tbUuid);
|
---|
| 147 | this.gbUser.Controls.Add(this.lblUuid);
|
---|
| 148 | this.gbUser.Location = new System.Drawing.Point(67, 117);
|
---|
| 149 | this.gbUser.Name = "gbUser";
|
---|
| 150 | this.gbUser.Size = new System.Drawing.Size(281, 51);
|
---|
| 151 | this.gbUser.TabIndex = 2;
|
---|
| 152 | this.gbUser.TabStop = false;
|
---|
| 153 | this.gbUser.Text = "User";
|
---|
| 154 | //
|
---|
| 155 | // tbUuid
|
---|
| 156 | //
|
---|
| 157 | this.tbUuid.Location = new System.Drawing.Point(56, 22);
|
---|
| 158 | this.tbUuid.Name = "tbUuid";
|
---|
| 159 | this.tbUuid.Size = new System.Drawing.Size(209, 20);
|
---|
| 160 | this.tbUuid.TabIndex = 2;
|
---|
| 161 | //
|
---|
| 162 | // lblUuid
|
---|
| 163 | //
|
---|
| 164 | this.lblUuid.AutoSize = true;
|
---|
| 165 | this.lblUuid.Location = new System.Drawing.Point(15, 25);
|
---|
| 166 | this.lblUuid.Name = "lblUuid";
|
---|
| 167 | this.lblUuid.Size = new System.Drawing.Size(34, 13);
|
---|
| 168 | this.lblUuid.TabIndex = 0;
|
---|
| 169 | this.lblUuid.Text = "UUID";
|
---|
| 170 | //
|
---|
| 171 | // gbManager
|
---|
| 172 | //
|
---|
| 173 | this.gbManager.Controls.Add(this.lblPort);
|
---|
| 174 | this.gbManager.Controls.Add(this.lblIp);
|
---|
| 175 | this.gbManager.Controls.Add(this.tbPort);
|
---|
| 176 | this.gbManager.Controls.Add(this.tbIp);
|
---|
| 177 | this.gbManager.Location = new System.Drawing.Point(66, 19);
|
---|
| 178 | this.gbManager.Name = "gbManager";
|
---|
| 179 | this.gbManager.Size = new System.Drawing.Size(283, 82);
|
---|
| 180 | this.gbManager.TabIndex = 0;
|
---|
| 181 | this.gbManager.TabStop = false;
|
---|
| 182 | this.gbManager.Text = "Manager";
|
---|
| 183 | //
|
---|
| 184 | // lblPort
|
---|
| 185 | //
|
---|
| 186 | this.lblPort.AutoSize = true;
|
---|
| 187 | this.lblPort.Location = new System.Drawing.Point(16, 54);
|
---|
| 188 | this.lblPort.Name = "lblPort";
|
---|
| 189 | this.lblPort.Size = new System.Drawing.Size(26, 13);
|
---|
| 190 | this.lblPort.TabIndex = 3;
|
---|
| 191 | this.lblPort.Text = "Port";
|
---|
| 192 | //
|
---|
| 193 | // lblIp
|
---|
| 194 | //
|
---|
| 195 | this.lblIp.AutoSize = true;
|
---|
| 196 | this.lblIp.Location = new System.Drawing.Point(16, 26);
|
---|
| 197 | this.lblIp.Name = "lblIp";
|
---|
| 198 | this.lblIp.Size = new System.Drawing.Size(17, 13);
|
---|
| 199 | this.lblIp.TabIndex = 2;
|
---|
| 200 | this.lblIp.Text = "IP";
|
---|
| 201 | //
|
---|
| 202 | // tbPort
|
---|
| 203 | //
|
---|
| 204 | this.tbPort.Location = new System.Drawing.Point(57, 47);
|
---|
| 205 | this.tbPort.Name = "tbPort";
|
---|
| 206 | this.tbPort.Size = new System.Drawing.Size(209, 20);
|
---|
| 207 | this.tbPort.TabIndex = 1;
|
---|
| 208 | //
|
---|
| 209 | // tabPage2
|
---|
| 210 | //
|
---|
| 211 | this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
---|
| 212 | this.tabPage2.Name = "tabPage2";
|
---|
| 213 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 214 | this.tabPage2.Size = new System.Drawing.Size(426, 455);
|
---|
| 215 | this.tabPage2.TabIndex = 1;
|
---|
| 216 | this.tabPage2.Text = "tabPage2";
|
---|
| 217 | this.tabPage2.UseVisualStyleBackColor = true;
|
---|
| 218 | //
|
---|
[752] | 219 | // listBox1
|
---|
| 220 | //
|
---|
| 221 | this.lbEventLog.FormattingEnabled = true;
|
---|
| 222 | this.lbEventLog.Location = new System.Drawing.Point(23, 226);
|
---|
| 223 | this.lbEventLog.Name = "listBox1";
|
---|
| 224 | this.lbEventLog.Size = new System.Drawing.Size(382, 212);
|
---|
| 225 | this.lbEventLog.TabIndex = 5;
|
---|
| 226 | //
|
---|
| 227 | // tbIp
|
---|
| 228 | //
|
---|
| 229 | this.tbIp.Location = new System.Drawing.Point(57, 19);
|
---|
| 230 | this.tbIp.Name = "tbIp";
|
---|
| 231 | this.tbIp.Size = new System.Drawing.Size(211, 20);
|
---|
| 232 | this.tbIp.TabIndex = 0;
|
---|
| 233 | //
|
---|
[717] | 234 | // HiveClientConsole
|
---|
| 235 | //
|
---|
| 236 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 237 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 238 | this.ClientSize = new System.Drawing.Size(434, 505);
|
---|
| 239 | this.Controls.Add(this.tcClientConsole);
|
---|
| 240 | this.Controls.Add(this.msClientConsole);
|
---|
| 241 | this.MainMenuStrip = this.msClientConsole;
|
---|
| 242 | this.Name = "HiveClientConsole";
|
---|
| 243 | this.Text = "Client Console";
|
---|
| 244 | this.msClientConsole.ResumeLayout(false);
|
---|
| 245 | this.msClientConsole.PerformLayout();
|
---|
| 246 | this.tcClientConsole.ResumeLayout(false);
|
---|
| 247 | this.tpConnection.ResumeLayout(false);
|
---|
| 248 | this.gbUser.ResumeLayout(false);
|
---|
| 249 | this.gbUser.PerformLayout();
|
---|
| 250 | this.gbManager.ResumeLayout(false);
|
---|
| 251 | this.gbManager.PerformLayout();
|
---|
[752] | 252 | //((System.ComponentModel.ISupportInitialize)(this.performanceCounter1)).EndInit();
|
---|
[717] | 253 | this.ResumeLayout(false);
|
---|
| 254 | this.PerformLayout();
|
---|
| 255 |
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | #endregion
|
---|
| 259 |
|
---|
| 260 | private System.Windows.Forms.MenuStrip msClientConsole;
|
---|
| 261 | private System.Windows.Forms.ToolStripMenuItem tsmiConsole;
|
---|
| 262 | private System.Windows.Forms.TabControl tcClientConsole;
|
---|
| 263 | private System.Windows.Forms.TabPage tpConnection;
|
---|
| 264 | private System.Windows.Forms.TabPage tabPage2;
|
---|
| 265 | private System.Windows.Forms.GroupBox gbManager;
|
---|
| 266 | private System.Windows.Forms.TextBox tbPort;
|
---|
[752] | 267 | private HeuristicLab.Hive.Client.Console.IPAddressTextBox tbIp;
|
---|
[717] | 268 | private System.Windows.Forms.Label lblIp;
|
---|
| 269 | private System.Windows.Forms.GroupBox gbUser;
|
---|
| 270 | private System.Windows.Forms.Label lblUuid;
|
---|
| 271 | private System.Windows.Forms.Label lblPort;
|
---|
| 272 | private System.Windows.Forms.Button btnDisconnect;
|
---|
| 273 | private System.Windows.Forms.Button btnConnect;
|
---|
| 274 | private System.Windows.Forms.TextBox tbUuid;
|
---|
| 275 | private System.Windows.Forms.ToolStripMenuItem tsmiExit;
|
---|
[752] | 276 | private System.Windows.Forms.ListBox lbEventLog;
|
---|
[717] | 277 | }
|
---|
| 278 | }
|
---|
| 279 |
|
---|