[778] | 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 {
|
---|
[778] | 23 | partial class HiveServerConsole {
|
---|
| 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() {
|
---|
[1483] | 47 | this.gbConfiguration = new System.Windows.Forms.GroupBox();
|
---|
[778] | 48 | this.lblPort = new System.Windows.Forms.Label();
|
---|
| 49 | this.lblIp = new System.Windows.Forms.Label();
|
---|
| 50 | this.tbPort = new System.Windows.Forms.TextBox();
|
---|
[1037] | 51 | this.tbIp = new System.Windows.Forms.TextBox();
|
---|
[912] | 52 | this.btnLogin = new System.Windows.Forms.Button();
|
---|
[1483] | 53 | this.gpUser = new System.Windows.Forms.GroupBox();
|
---|
[956] | 54 | this.tbUserName = new System.Windows.Forms.TextBox();
|
---|
[912] | 55 | this.lblPwd = new System.Windows.Forms.Label();
|
---|
| 56 | this.lblUsername = new System.Windows.Forms.Label();
|
---|
| 57 | this.tbPwd = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.lblError = new System.Windows.Forms.Label();
|
---|
[1483] | 59 | this.gbConfiguration.SuspendLayout();
|
---|
| 60 | this.gpUser.SuspendLayout();
|
---|
[778] | 61 | this.SuspendLayout();
|
---|
| 62 | //
|
---|
[1483] | 63 | // gbConfiguration
|
---|
[778] | 64 | //
|
---|
[1483] | 65 | this.gbConfiguration.Controls.Add(this.lblPort);
|
---|
| 66 | this.gbConfiguration.Controls.Add(this.lblIp);
|
---|
| 67 | this.gbConfiguration.Controls.Add(this.tbPort);
|
---|
| 68 | this.gbConfiguration.Controls.Add(this.tbIp);
|
---|
| 69 | this.gbConfiguration.Location = new System.Drawing.Point(12, 100);
|
---|
| 70 | this.gbConfiguration.Name = "gbConfiguration";
|
---|
| 71 | this.gbConfiguration.Size = new System.Drawing.Size(283, 82);
|
---|
| 72 | this.gbConfiguration.TabIndex = 4;
|
---|
| 73 | this.gbConfiguration.TabStop = false;
|
---|
| 74 | this.gbConfiguration.Text = "Configuration";
|
---|
[778] | 75 | //
|
---|
| 76 | // lblPort
|
---|
| 77 | //
|
---|
| 78 | this.lblPort.AutoSize = true;
|
---|
| 79 | this.lblPort.Location = new System.Drawing.Point(16, 54);
|
---|
| 80 | this.lblPort.Name = "lblPort";
|
---|
| 81 | this.lblPort.Size = new System.Drawing.Size(26, 13);
|
---|
| 82 | this.lblPort.TabIndex = 3;
|
---|
| 83 | this.lblPort.Text = "Port";
|
---|
| 84 | //
|
---|
| 85 | // lblIp
|
---|
| 86 | //
|
---|
| 87 | this.lblIp.AutoSize = true;
|
---|
| 88 | this.lblIp.Location = new System.Drawing.Point(16, 26);
|
---|
| 89 | this.lblIp.Name = "lblIp";
|
---|
| 90 | this.lblIp.Size = new System.Drawing.Size(17, 13);
|
---|
| 91 | this.lblIp.TabIndex = 2;
|
---|
| 92 | this.lblIp.Text = "IP";
|
---|
| 93 | //
|
---|
| 94 | // tbPort
|
---|
| 95 | //
|
---|
[912] | 96 | this.tbPort.Location = new System.Drawing.Point(77, 47);
|
---|
[778] | 97 | this.tbPort.Name = "tbPort";
|
---|
[912] | 98 | this.tbPort.Size = new System.Drawing.Size(189, 20);
|
---|
[1037] | 99 | this.tbPort.TabIndex = 6;
|
---|
[1164] | 100 | this.tbPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[778] | 101 | //
|
---|
[1037] | 102 | // tbIp
|
---|
| 103 | //
|
---|
| 104 | this.tbIp.Location = new System.Drawing.Point(77, 19);
|
---|
| 105 | this.tbIp.Name = "tbIp";
|
---|
| 106 | this.tbIp.Size = new System.Drawing.Size(191, 20);
|
---|
| 107 | this.tbIp.TabIndex = 5;
|
---|
[1164] | 108 | this.tbIp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[1037] | 109 | //
|
---|
[778] | 110 | // btnLogin
|
---|
| 111 | //
|
---|
[1483] | 112 | this.btnLogin.Location = new System.Drawing.Point(179, 188);
|
---|
[778] | 113 | this.btnLogin.Name = "btnLogin";
|
---|
| 114 | this.btnLogin.Size = new System.Drawing.Size(116, 23);
|
---|
[1037] | 115 | this.btnLogin.TabIndex = 7;
|
---|
[778] | 116 | this.btnLogin.Text = "Login";
|
---|
| 117 | this.btnLogin.UseVisualStyleBackColor = true;
|
---|
[1037] | 118 | this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
|
---|
[1164] | 119 | this.btnLogin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[778] | 120 | //
|
---|
[1483] | 121 | // gpUser
|
---|
[912] | 122 | //
|
---|
[1483] | 123 | this.gpUser.Controls.Add(this.tbUserName);
|
---|
| 124 | this.gpUser.Controls.Add(this.lblPwd);
|
---|
| 125 | this.gpUser.Controls.Add(this.lblUsername);
|
---|
| 126 | this.gpUser.Controls.Add(this.tbPwd);
|
---|
| 127 | this.gpUser.Location = new System.Drawing.Point(12, 12);
|
---|
| 128 | this.gpUser.Name = "gpUser";
|
---|
| 129 | this.gpUser.Size = new System.Drawing.Size(283, 82);
|
---|
| 130 | this.gpUser.TabIndex = 1;
|
---|
| 131 | this.gpUser.TabStop = false;
|
---|
| 132 | this.gpUser.Text = "User";
|
---|
[912] | 133 | //
|
---|
[956] | 134 | // tbUserName
|
---|
| 135 | //
|
---|
| 136 | this.tbUserName.Location = new System.Drawing.Point(77, 19);
|
---|
| 137 | this.tbUserName.Name = "tbUserName";
|
---|
| 138 | this.tbUserName.Size = new System.Drawing.Size(189, 20);
|
---|
[1037] | 139 | this.tbUserName.TabIndex = 2;
|
---|
[1164] | 140 | this.tbUserName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[956] | 141 | //
|
---|
[912] | 142 | // lblPwd
|
---|
| 143 | //
|
---|
| 144 | this.lblPwd.AutoSize = true;
|
---|
| 145 | this.lblPwd.Location = new System.Drawing.Point(16, 54);
|
---|
| 146 | this.lblPwd.Name = "lblPwd";
|
---|
| 147 | this.lblPwd.Size = new System.Drawing.Size(53, 13);
|
---|
| 148 | this.lblPwd.TabIndex = 3;
|
---|
| 149 | this.lblPwd.Text = "Password";
|
---|
| 150 | //
|
---|
| 151 | // lblUsername
|
---|
| 152 | //
|
---|
| 153 | this.lblUsername.AutoSize = true;
|
---|
| 154 | this.lblUsername.Location = new System.Drawing.Point(16, 26);
|
---|
| 155 | this.lblUsername.Name = "lblUsername";
|
---|
| 156 | this.lblUsername.Size = new System.Drawing.Size(55, 13);
|
---|
| 157 | this.lblUsername.TabIndex = 2;
|
---|
| 158 | this.lblUsername.Text = "Username";
|
---|
| 159 | //
|
---|
| 160 | // tbPwd
|
---|
| 161 | //
|
---|
| 162 | this.tbPwd.Location = new System.Drawing.Point(77, 47);
|
---|
| 163 | this.tbPwd.Name = "tbPwd";
|
---|
| 164 | this.tbPwd.Size = new System.Drawing.Size(189, 20);
|
---|
[1037] | 165 | this.tbPwd.TabIndex = 3;
|
---|
[956] | 166 | this.tbPwd.UseSystemPasswordChar = true;
|
---|
[1164] | 167 | this.tbPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[912] | 168 | //
|
---|
| 169 | // lblError
|
---|
| 170 | //
|
---|
| 171 | this.lblError.AutoSize = true;
|
---|
| 172 | this.lblError.ForeColor = System.Drawing.Color.Red;
|
---|
| 173 | this.lblError.Location = new System.Drawing.Point(16, 238);
|
---|
| 174 | this.lblError.Name = "lblError";
|
---|
| 175 | this.lblError.Size = new System.Drawing.Size(0, 13);
|
---|
| 176 | this.lblError.TabIndex = 5;
|
---|
| 177 | //
|
---|
[778] | 178 | // HiveServerConsole
|
---|
| 179 | //
|
---|
[1483] | 180 | this.AcceptButton = this.btnLogin;
|
---|
[778] | 181 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 182 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1483] | 183 | this.ClientSize = new System.Drawing.Size(311, 225);
|
---|
[912] | 184 | this.Controls.Add(this.lblError);
|
---|
[1483] | 185 | this.Controls.Add(this.gpUser);
|
---|
[778] | 186 | this.Controls.Add(this.btnLogin);
|
---|
[1483] | 187 | this.Controls.Add(this.gbConfiguration);
|
---|
[778] | 188 | this.Name = "HiveServerConsole";
|
---|
| 189 | this.Text = "Server Console";
|
---|
[1164] | 190 | this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.HiveServerConsole_KeyPress);
|
---|
[1483] | 191 | this.gbConfiguration.ResumeLayout(false);
|
---|
| 192 | this.gbConfiguration.PerformLayout();
|
---|
| 193 | this.gpUser.ResumeLayout(false);
|
---|
| 194 | this.gpUser.PerformLayout();
|
---|
[778] | 195 | this.ResumeLayout(false);
|
---|
| 196 | this.PerformLayout();
|
---|
| 197 |
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | #endregion
|
---|
| 201 |
|
---|
[1483] | 202 | private System.Windows.Forms.GroupBox gbConfiguration;
|
---|
[778] | 203 | private System.Windows.Forms.Label lblPort;
|
---|
| 204 | private System.Windows.Forms.Label lblIp;
|
---|
| 205 | private System.Windows.Forms.TextBox tbPort;
|
---|
[978] | 206 | private System.Windows.Forms.TextBox tbIp;
|
---|
[778] | 207 | private System.Windows.Forms.Button btnLogin;
|
---|
[1483] | 208 | private System.Windows.Forms.GroupBox gpUser;
|
---|
[912] | 209 | private System.Windows.Forms.TextBox tbUserName;
|
---|
| 210 | private System.Windows.Forms.Label lblPwd;
|
---|
| 211 | private System.Windows.Forms.Label lblUsername;
|
---|
| 212 | private System.Windows.Forms.TextBox tbPwd;
|
---|
| 213 | private System.Windows.Forms.Label lblError;
|
---|
[778] | 214 | }
|
---|
| 215 | }
|
---|
| 216 |
|
---|