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 {
|
---|
23 | partial class ServerForm {
|
---|
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.components = new System.ComponentModel.Container();
|
---|
48 | this.addressTextBox = new System.Windows.Forms.TextBox();
|
---|
49 | this.externalAddressLabel = new System.Windows.Forms.Label();
|
---|
50 | this.gridAddressLabel = new System.Windows.Forms.Label();
|
---|
51 | this.gridAddress = new System.Windows.Forms.TextBox();
|
---|
52 | this.connectButton = new System.Windows.Forms.Button();
|
---|
53 | this.listBox = new System.Windows.Forms.ListBox();
|
---|
54 | this.refreshTimer = new System.Windows.Forms.Timer(this.components);
|
---|
55 | this.maxActiveJobsUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
56 | this.label1 = new System.Windows.Forms.Label();
|
---|
57 | ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobsUpDown)).BeginInit();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // addressTextBox
|
---|
61 | //
|
---|
62 | this.addressTextBox.Location = new System.Drawing.Point(106, 6);
|
---|
63 | this.addressTextBox.Name = "addressTextBox";
|
---|
64 | this.addressTextBox.ReadOnly = true;
|
---|
65 | this.addressTextBox.Size = new System.Drawing.Size(229, 20);
|
---|
66 | this.addressTextBox.TabIndex = 0;
|
---|
67 | //
|
---|
68 | // externalAddressLabel
|
---|
69 | //
|
---|
70 | this.externalAddressLabel.AutoSize = true;
|
---|
71 | this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
|
---|
72 | this.externalAddressLabel.Name = "externalAddressLabel";
|
---|
73 | this.externalAddressLabel.Size = new System.Drawing.Size(48, 13);
|
---|
74 | this.externalAddressLabel.TabIndex = 3;
|
---|
75 | this.externalAddressLabel.Text = "&Address:";
|
---|
76 | //
|
---|
77 | // gridAddressLabel
|
---|
78 | //
|
---|
79 | this.gridAddressLabel.AutoSize = true;
|
---|
80 | this.gridAddressLabel.Location = new System.Drawing.Point(12, 35);
|
---|
81 | this.gridAddressLabel.Name = "gridAddressLabel";
|
---|
82 | this.gridAddressLabel.Size = new System.Drawing.Size(69, 13);
|
---|
83 | this.gridAddressLabel.TabIndex = 9;
|
---|
84 | this.gridAddressLabel.Text = "&Grid address:";
|
---|
85 | //
|
---|
86 | // gridAddress
|
---|
87 | //
|
---|
88 | this.gridAddress.Location = new System.Drawing.Point(106, 32);
|
---|
89 | this.gridAddress.Name = "gridAddress";
|
---|
90 | this.gridAddress.Size = new System.Drawing.Size(160, 20);
|
---|
91 | this.gridAddress.TabIndex = 8;
|
---|
92 | //
|
---|
93 | // connectButton
|
---|
94 | //
|
---|
95 | this.connectButton.Location = new System.Drawing.Point(272, 30);
|
---|
96 | this.connectButton.Name = "connectButton";
|
---|
97 | this.connectButton.Size = new System.Drawing.Size(75, 23);
|
---|
98 | this.connectButton.TabIndex = 10;
|
---|
99 | this.connectButton.Text = "Connect";
|
---|
100 | this.connectButton.UseVisualStyleBackColor = true;
|
---|
101 | this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
|
---|
102 | //
|
---|
103 | // listBox
|
---|
104 | //
|
---|
105 | this.listBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
106 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
107 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
108 | this.listBox.FormattingEnabled = true;
|
---|
109 | this.listBox.Location = new System.Drawing.Point(12, 84);
|
---|
110 | this.listBox.Name = "listBox";
|
---|
111 | this.listBox.Size = new System.Drawing.Size(350, 251);
|
---|
112 | this.listBox.TabIndex = 11;
|
---|
113 | //
|
---|
114 | // refreshTimer
|
---|
115 | //
|
---|
116 | this.refreshTimer.Interval = 1000;
|
---|
117 | this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
|
---|
118 | //
|
---|
119 | // maxActiveJobsUpDown
|
---|
120 | //
|
---|
121 | this.maxActiveJobsUpDown.Enabled = false;
|
---|
122 | this.maxActiveJobsUpDown.Location = new System.Drawing.Point(106, 59);
|
---|
123 | this.maxActiveJobsUpDown.Maximum = new decimal(new int[] {
|
---|
124 | 64,
|
---|
125 | 0,
|
---|
126 | 0,
|
---|
127 | 0});
|
---|
128 | this.maxActiveJobsUpDown.Name = "maxActiveJobsUpDown";
|
---|
129 | this.maxActiveJobsUpDown.Size = new System.Drawing.Size(120, 20);
|
---|
130 | this.maxActiveJobsUpDown.TabIndex = 12;
|
---|
131 | this.maxActiveJobsUpDown.ValueChanged += new System.EventHandler(this.maxActiveJobsUpDown_ValueChanged);
|
---|
132 | //
|
---|
133 | // label1
|
---|
134 | //
|
---|
135 | this.label1.AutoSize = true;
|
---|
136 | this.label1.Enabled = false;
|
---|
137 | this.label1.Location = new System.Drawing.Point(12, 61);
|
---|
138 | this.label1.Name = "label1";
|
---|
139 | this.label1.Size = new System.Drawing.Size(84, 13);
|
---|
140 | this.label1.TabIndex = 13;
|
---|
141 | this.label1.Text = "&Max active jobs:";
|
---|
142 | //
|
---|
143 | // ServerForm
|
---|
144 | //
|
---|
145 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
146 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
147 | this.ClientSize = new System.Drawing.Size(374, 342);
|
---|
148 | this.Controls.Add(this.label1);
|
---|
149 | this.Controls.Add(this.maxActiveJobsUpDown);
|
---|
150 | this.Controls.Add(this.listBox);
|
---|
151 | this.Controls.Add(this.connectButton);
|
---|
152 | this.Controls.Add(this.gridAddressLabel);
|
---|
153 | this.Controls.Add(this.gridAddress);
|
---|
154 | this.Controls.Add(this.externalAddressLabel);
|
---|
155 | this.Controls.Add(this.addressTextBox);
|
---|
156 | this.Name = "ServerForm";
|
---|
157 | this.Text = "CEDMA Server";
|
---|
158 | ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobsUpDown)).EndInit();
|
---|
159 | this.ResumeLayout(false);
|
---|
160 | this.PerformLayout();
|
---|
161 |
|
---|
162 | }
|
---|
163 |
|
---|
164 | #endregion
|
---|
165 |
|
---|
166 | private System.Windows.Forms.TextBox addressTextBox;
|
---|
167 | private System.Windows.Forms.Label externalAddressLabel;
|
---|
168 | private System.Windows.Forms.Label gridAddressLabel;
|
---|
169 | private System.Windows.Forms.TextBox gridAddress;
|
---|
170 | private System.Windows.Forms.Button connectButton;
|
---|
171 | private System.Windows.Forms.ListBox listBox;
|
---|
172 | private System.Windows.Forms.Timer refreshTimer;
|
---|
173 | private System.Windows.Forms.NumericUpDown maxActiveJobsUpDown;
|
---|
174 | private System.Windows.Forms.Label label1;
|
---|
175 | }
|
---|
176 | }
|
---|