Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/ServerForm.designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 10.0 KB
Line 
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
22namespace HeuristicLab.Grid {
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.externalAddressTextBox = new System.Windows.Forms.TextBox();
49      this.startButton = new System.Windows.Forms.Button();
50      this.stopButton = new System.Windows.Forms.Button();
51      this.externalAddressLabel = new System.Windows.Forms.Label();
52      this.internalAddressLabel = new System.Windows.Forms.Label();
53      this.internalAddressTextBox = new System.Windows.Forms.TextBox();
54      this.runningJobsLabel = new System.Windows.Forms.Label();
55      this.runningJobsTextBox = new System.Windows.Forms.TextBox();
56      this.waitingJobsLabel = new System.Windows.Forms.Label();
57      this.waitingJobsTextBox = new System.Windows.Forms.TextBox();
58      this.waitingResultsLabel = new System.Windows.Forms.Label();
59      this.waitingResultsTextBox = new System.Windows.Forms.TextBox();
60      this.statusUpdateTimer = new System.Windows.Forms.Timer(this.components);
61      this.SuspendLayout();
62      //
63      // externalAddressTextBox
64      //
65      this.externalAddressTextBox.Location = new System.Drawing.Point(106, 6);
66      this.externalAddressTextBox.Name = "externalAddressTextBox";
67      this.externalAddressTextBox.ReadOnly = true;
68      this.externalAddressTextBox.Size = new System.Drawing.Size(229, 20);
69      this.externalAddressTextBox.TabIndex = 0;
70      //
71      // startButton
72      //
73      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
74      this.startButton.Location = new System.Drawing.Point(12, 160);
75      this.startButton.Name = "startButton";
76      this.startButton.Size = new System.Drawing.Size(75, 23);
77      this.startButton.TabIndex = 1;
78      this.startButton.Text = "St&art";
79      this.startButton.UseVisualStyleBackColor = true;
80      this.startButton.Click += new System.EventHandler(this.startButton_Click);
81      //
82      // stopButton
83      //
84      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
85      this.stopButton.Enabled = false;
86      this.stopButton.Location = new System.Drawing.Point(99, 160);
87      this.stopButton.Name = "stopButton";
88      this.stopButton.Size = new System.Drawing.Size(75, 23);
89      this.stopButton.TabIndex = 2;
90      this.stopButton.Text = "St&op";
91      this.stopButton.UseVisualStyleBackColor = true;
92      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
93      //
94      // externalAddressLabel
95      //
96      this.externalAddressLabel.AutoSize = true;
97      this.externalAddressLabel.Location = new System.Drawing.Point(12, 9);
98      this.externalAddressLabel.Name = "externalAddressLabel";
99      this.externalAddressLabel.Size = new System.Drawing.Size(88, 13);
100      this.externalAddressLabel.TabIndex = 3;
101      this.externalAddressLabel.Text = "&External address:";
102      //
103      // internalAddressLabel
104      //
105      this.internalAddressLabel.AutoSize = true;
106      this.internalAddressLabel.Location = new System.Drawing.Point(12, 34);
107      this.internalAddressLabel.Name = "internalAddressLabel";
108      this.internalAddressLabel.Size = new System.Drawing.Size(85, 13);
109      this.internalAddressLabel.TabIndex = 5;
110      this.internalAddressLabel.Text = "&Internal address:";
111      //
112      // internalAddressTextBox
113      //
114      this.internalAddressTextBox.Location = new System.Drawing.Point(106, 31);
115      this.internalAddressTextBox.Name = "internalAddressTextBox";
116      this.internalAddressTextBox.ReadOnly = true;
117      this.internalAddressTextBox.Size = new System.Drawing.Size(229, 20);
118      this.internalAddressTextBox.TabIndex = 4;
119      //
120      // runningJobsLabel
121      //
122      this.runningJobsLabel.AutoSize = true;
123      this.runningJobsLabel.Location = new System.Drawing.Point(12, 99);
124      this.runningJobsLabel.Name = "runningJobsLabel";
125      this.runningJobsLabel.Size = new System.Drawing.Size(72, 13);
126      this.runningJobsLabel.TabIndex = 9;
127      this.runningJobsLabel.Text = "&Running jobs:";
128      //
129      // runningJobsTextBox
130      //
131      this.runningJobsTextBox.Location = new System.Drawing.Point(106, 96);
132      this.runningJobsTextBox.Name = "runningJobsTextBox";
133      this.runningJobsTextBox.ReadOnly = true;
134      this.runningJobsTextBox.Size = new System.Drawing.Size(90, 20);
135      this.runningJobsTextBox.TabIndex = 8;
136      this.runningJobsTextBox.Text = "0";
137      this.runningJobsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
138      //
139      // waitingJobsLabel
140      //
141      this.waitingJobsLabel.AutoSize = true;
142      this.waitingJobsLabel.Location = new System.Drawing.Point(12, 74);
143      this.waitingJobsLabel.Name = "waitingJobsLabel";
144      this.waitingJobsLabel.Size = new System.Drawing.Size(68, 13);
145      this.waitingJobsLabel.TabIndex = 7;
146      this.waitingJobsLabel.Text = "&Waiting jobs:";
147      //
148      // waitingJobsTextBox
149      //
150      this.waitingJobsTextBox.Location = new System.Drawing.Point(106, 71);
151      this.waitingJobsTextBox.Name = "waitingJobsTextBox";
152      this.waitingJobsTextBox.ReadOnly = true;
153      this.waitingJobsTextBox.Size = new System.Drawing.Size(90, 20);
154      this.waitingJobsTextBox.TabIndex = 6;
155      this.waitingJobsTextBox.Text = "0";
156      this.waitingJobsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
157      //
158      // waitingResultsLabel
159      //
160      this.waitingResultsLabel.AutoSize = true;
161      this.waitingResultsLabel.Location = new System.Drawing.Point(12, 125);
162      this.waitingResultsLabel.Name = "waitingResultsLabel";
163      this.waitingResultsLabel.Size = new System.Drawing.Size(79, 13);
164      this.waitingResultsLabel.TabIndex = 11;
165      this.waitingResultsLabel.Text = "&Waiting results:";
166      //
167      // waitingResultsTextBox
168      //
169      this.waitingResultsTextBox.Location = new System.Drawing.Point(106, 122);
170      this.waitingResultsTextBox.Name = "waitingResultsTextBox";
171      this.waitingResultsTextBox.ReadOnly = true;
172      this.waitingResultsTextBox.Size = new System.Drawing.Size(90, 20);
173      this.waitingResultsTextBox.TabIndex = 10;
174      this.waitingResultsTextBox.Text = "0";
175      this.waitingResultsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
176      //
177      // statusUpdateTimer
178      //
179      this.statusUpdateTimer.Enabled = true;
180      this.statusUpdateTimer.Interval = 1000;
181      this.statusUpdateTimer.Tick += new System.EventHandler(this.statusUpdateTimer_Tick);
182      //
183      // ServerForm
184      //
185      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
186      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
187      this.ClientSize = new System.Drawing.Size(347, 195);
188      this.Controls.Add(this.waitingResultsLabel);
189      this.Controls.Add(this.waitingResultsTextBox);
190      this.Controls.Add(this.runningJobsLabel);
191      this.Controls.Add(this.runningJobsTextBox);
192      this.Controls.Add(this.waitingJobsLabel);
193      this.Controls.Add(this.waitingJobsTextBox);
194      this.Controls.Add(this.internalAddressLabel);
195      this.Controls.Add(this.internalAddressTextBox);
196      this.Controls.Add(this.externalAddressLabel);
197      this.Controls.Add(this.stopButton);
198      this.Controls.Add(this.startButton);
199      this.Controls.Add(this.externalAddressTextBox);
200      this.Name = "ServerForm";
201      this.Text = "Grid Server";
202      this.ResumeLayout(false);
203      this.PerformLayout();
204
205    }
206
207    #endregion
208
209    private System.Windows.Forms.TextBox externalAddressTextBox;
210    private System.Windows.Forms.Button startButton;
211    private System.Windows.Forms.Button stopButton;
212    private System.Windows.Forms.Label externalAddressLabel;
213    private System.Windows.Forms.Label internalAddressLabel;
214    private System.Windows.Forms.TextBox internalAddressTextBox;
215    private System.Windows.Forms.Label runningJobsLabel;
216    private System.Windows.Forms.TextBox runningJobsTextBox;
217    private System.Windows.Forms.Label waitingJobsLabel;
218    private System.Windows.Forms.TextBox waitingJobsTextBox;
219    private System.Windows.Forms.Label waitingResultsLabel;
220    private System.Windows.Forms.TextBox waitingResultsTextBox;
221    private System.Windows.Forms.Timer statusUpdateTimer;
222  }
223}
Note: See TracBrowser for help on using the repository browser.