[352] | 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.CEDMA.Server {
|
---|
[2094] | 23 | partial class ServerView {
|
---|
[352] | 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.addressTextBox = new System.Windows.Forms.TextBox();
|
---|
| 48 | this.externalAddressLabel = new System.Windows.Forms.Label();
|
---|
[375] | 49 | this.gridAddressLabel = new System.Windows.Forms.Label();
|
---|
[1898] | 50 | this.address = new System.Windows.Forms.TextBox();
|
---|
[1287] | 51 | this.connectButton = new System.Windows.Forms.Button();
|
---|
[2088] | 52 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 53 | this.executerTabPage = new System.Windows.Forms.TabPage();
|
---|
| 54 | this.dispatcherTabPage = new System.Windows.Forms.TabPage();
|
---|
| 55 | this.tabControl.SuspendLayout();
|
---|
[352] | 56 | this.SuspendLayout();
|
---|
| 57 | //
|
---|
| 58 | // addressTextBox
|
---|
| 59 | //
|
---|
| 60 | this.addressTextBox.Location = new System.Drawing.Point(106, 6);
|
---|
| 61 | this.addressTextBox.Name = "addressTextBox";
|
---|
| 62 | this.addressTextBox.ReadOnly = true;
|
---|
| 63 | this.addressTextBox.Size = new System.Drawing.Size(229, 20);
|
---|
| 64 | this.addressTextBox.TabIndex = 0;
|
---|
| 65 | //
|
---|
| 66 | // externalAddressLabel
|
---|
| 67 | //
|
---|
| 68 | this.externalAddressLabel.AutoSize = true;
|
---|
| 69 | this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
|
---|
| 70 | this.externalAddressLabel.Name = "externalAddressLabel";
|
---|
| 71 | this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
|
---|
| 72 | this.externalAddressLabel.TabIndex = 3;
|
---|
| 73 | this.externalAddressLabel.Text = "&Address:";
|
---|
| 74 | //
|
---|
[375] | 75 | // gridAddressLabel
|
---|
| 76 | //
|
---|
| 77 | this.gridAddressLabel.AutoSize = true;
|
---|
| 78 | this.gridAddressLabel.Location = new System.Drawing.Point(12, 35);
|
---|
| 79 | this.gridAddressLabel.Name = "gridAddressLabel";
|
---|
| 80 | this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
|
---|
| 81 | this.gridAddressLabel.TabIndex = 9;
|
---|
| 82 | this.gridAddressLabel.Text = "&Grid address:";
|
---|
| 83 | //
|
---|
[2075] | 84 | // address
|
---|
[375] | 85 | //
|
---|
[1898] | 86 | this.address.Location = new System.Drawing.Point(106, 32);
|
---|
[2075] | 87 | this.address.Name = "address";
|
---|
[1898] | 88 | this.address.Size = new System.Drawing.Size(160, 20);
|
---|
| 89 | this.address.TabIndex = 8;
|
---|
[375] | 90 | //
|
---|
[1287] | 91 | // connectButton
|
---|
[375] | 92 | //
|
---|
[1287] | 93 | this.connectButton.Location = new System.Drawing.Point(272, 30);
|
---|
| 94 | this.connectButton.Name = "connectButton";
|
---|
| 95 | this.connectButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 96 | this.connectButton.TabIndex = 10;
|
---|
| 97 | this.connectButton.Text = "Connect";
|
---|
| 98 | this.connectButton.UseVisualStyleBackColor = true;
|
---|
| 99 | this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
|
---|
[375] | 100 | //
|
---|
[2088] | 101 | // tabControl
|
---|
[1287] | 102 | //
|
---|
[2088] | 103 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[1287] | 104 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 105 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2088] | 106 | this.tabControl.Controls.Add(this.executerTabPage);
|
---|
| 107 | this.tabControl.Controls.Add(this.dispatcherTabPage);
|
---|
| 108 | this.tabControl.Location = new System.Drawing.Point(3, 58);
|
---|
| 109 | this.tabControl.Name = "tabControl";
|
---|
| 110 | this.tabControl.SelectedIndex = 0;
|
---|
| 111 | this.tabControl.Size = new System.Drawing.Size(573, 543);
|
---|
| 112 | this.tabControl.TabIndex = 14;
|
---|
[1287] | 113 | //
|
---|
[2088] | 114 | // executerTabPage
|
---|
[1287] | 115 | //
|
---|
[2088] | 116 | this.executerTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 117 | this.executerTabPage.Name = "executerTabPage";
|
---|
| 118 | this.executerTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 119 | this.executerTabPage.Size = new System.Drawing.Size(565, 517);
|
---|
| 120 | this.executerTabPage.TabIndex = 0;
|
---|
| 121 | this.executerTabPage.Text = "Executer";
|
---|
| 122 | this.executerTabPage.UseVisualStyleBackColor = true;
|
---|
[1287] | 123 | //
|
---|
[2088] | 124 | // dispatcherTabPage
|
---|
[1287] | 125 | //
|
---|
[2088] | 126 | this.dispatcherTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 127 | this.dispatcherTabPage.Name = "dispatcherTabPage";
|
---|
| 128 | this.dispatcherTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 129 | this.dispatcherTabPage.Size = new System.Drawing.Size(565, 517);
|
---|
| 130 | this.dispatcherTabPage.TabIndex = 1;
|
---|
| 131 | this.dispatcherTabPage.Text = "Dispatcher";
|
---|
| 132 | this.dispatcherTabPage.UseVisualStyleBackColor = true;
|
---|
[1287] | 133 | //
|
---|
[352] | 134 | // ServerForm
|
---|
| 135 | //
|
---|
| 136 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 137 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[2088] | 138 | this.Controls.Add(this.tabControl);
|
---|
[1287] | 139 | this.Controls.Add(this.connectButton);
|
---|
[375] | 140 | this.Controls.Add(this.gridAddressLabel);
|
---|
[1898] | 141 | this.Controls.Add(this.address);
|
---|
[352] | 142 | this.Controls.Add(this.externalAddressLabel);
|
---|
| 143 | this.Controls.Add(this.addressTextBox);
|
---|
| 144 | this.Name = "ServerForm";
|
---|
[2088] | 145 | this.Size = new System.Drawing.Size(579, 604);
|
---|
| 146 | this.tabControl.ResumeLayout(false);
|
---|
[352] | 147 | this.ResumeLayout(false);
|
---|
| 148 | this.PerformLayout();
|
---|
| 149 |
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | #endregion
|
---|
| 153 |
|
---|
| 154 | private System.Windows.Forms.TextBox addressTextBox;
|
---|
| 155 | private System.Windows.Forms.Label externalAddressLabel;
|
---|
[375] | 156 | private System.Windows.Forms.Label gridAddressLabel;
|
---|
[1898] | 157 | private System.Windows.Forms.TextBox address;
|
---|
[1287] | 158 | private System.Windows.Forms.Button connectButton;
|
---|
[2088] | 159 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 160 | private System.Windows.Forms.TabPage executerTabPage;
|
---|
| 161 | private System.Windows.Forms.TabPage dispatcherTabPage;
|
---|
[352] | 162 | }
|
---|
| 163 | }
|
---|