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