Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/HiveClientConsole.Designer.cs @ 953

Last change on this file since 953 was 933, checked in by whackl, 15 years ago

added wcf service to HiveClient (#397)

File size: 20.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.Hive.Client.Console {
23  partial class HiveClientConsole {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveClientConsole));
49      this.tcClientConsole = new System.Windows.Forms.TabControl();
50      this.tpConnection = new System.Windows.Forms.TabPage();
51      this.gbJobCommon = new System.Windows.Forms.GroupBox();
52      this.lvJobDetail = new System.Windows.Forms.ListView();
53      this.chJobId = new System.Windows.Forms.ColumnHeader();
54      this.chSince = new System.Windows.Forms.ColumnHeader();
55      this.chProgress = new System.Windows.Forms.ColumnHeader();
56      this.gbCommon = new System.Windows.Forms.GroupBox();
57      this.zGJobs = new ZedGraph.ZedGraphControl();
58      this.lbConnectionStatusCaption = new System.Windows.Forms.Label();
59      this.lbJobsAbortedCaption = new System.Windows.Forms.Label();
60      this.lbJobdoneCaption = new System.Windows.Forms.Label();
61      this.lbGuidCaption = new System.Windows.Forms.Label();
62      this.lbJobsFetchedCaption = new System.Windows.Forms.Label();
63      this.lbCsCaption = new System.Windows.Forms.Label();
64      this.gbEventLog = new System.Windows.Forms.GroupBox();
65      this.lvLog = new System.Windows.Forms.ListView();
66      this.chType = new System.Windows.Forms.ColumnHeader();
67      this.chId = new System.Windows.Forms.ColumnHeader();
68      this.chMessage = new System.Windows.Forms.ColumnHeader();
69      this.chDate = new System.Windows.Forms.ColumnHeader();
70      this.chTime = new System.Windows.Forms.ColumnHeader();
71      this.ilEventLog = new System.Windows.Forms.ImageList(this.components);
72      this.tabPage2 = new System.Windows.Forms.TabPage();
73      this.groupBox1 = new System.Windows.Forms.GroupBox();
74      this.gbResources = new System.Windows.Forms.GroupBox();
75      this.textBox2 = new System.Windows.Forms.TextBox();
76      this.lbMem = new System.Windows.Forms.Label();
77      this.gbServerConnection = new System.Windows.Forms.GroupBox();
78      this.btnDisconnect = new System.Windows.Forms.Button();
79      this.btConnect = new System.Windows.Forms.Button();
80      this.textBox1 = new System.Windows.Forms.TextBox();
81      this.tbIPAdress = new System.Windows.Forms.TextBox();
82      this.lbServerIPCaption = new System.Windows.Forms.Label();
83      this.lbPortCaption = new System.Windows.Forms.Label();
84      this.tcClientConsole.SuspendLayout();
85      this.tpConnection.SuspendLayout();
86      this.gbJobCommon.SuspendLayout();
87      this.gbCommon.SuspendLayout();
88      this.gbEventLog.SuspendLayout();
89      this.tabPage2.SuspendLayout();
90      this.gbResources.SuspendLayout();
91      this.gbServerConnection.SuspendLayout();
92      this.SuspendLayout();
93      //
94      // tcClientConsole
95      //
96      this.tcClientConsole.Controls.Add(this.tpConnection);
97      this.tcClientConsole.Controls.Add(this.tabPage2);
98      this.tcClientConsole.Dock = System.Windows.Forms.DockStyle.Fill;
99      this.tcClientConsole.Location = new System.Drawing.Point(0, 0);
100      this.tcClientConsole.Name = "tcClientConsole";
101      this.tcClientConsole.SelectedIndex = 0;
102      this.tcClientConsole.Size = new System.Drawing.Size(437, 508);
103      this.tcClientConsole.TabIndex = 1;
104      //
105      // tpConnection
106      //
107      this.tpConnection.Controls.Add(this.gbJobCommon);
108      this.tpConnection.Controls.Add(this.gbCommon);
109      this.tpConnection.Controls.Add(this.gbEventLog);
110      this.tpConnection.Location = new System.Drawing.Point(4, 22);
111      this.tpConnection.Name = "tpConnection";
112      this.tpConnection.Padding = new System.Windows.Forms.Padding(3);
113      this.tpConnection.RightToLeft = System.Windows.Forms.RightToLeft.No;
114      this.tpConnection.Size = new System.Drawing.Size(429, 482);
115      this.tpConnection.TabIndex = 0;
116      this.tpConnection.Text = "Status";
117      this.tpConnection.UseVisualStyleBackColor = true;
118      //
119      // gbJobCommon
120      //
121      this.gbJobCommon.Controls.Add(this.lvJobDetail);
122      this.gbJobCommon.Location = new System.Drawing.Point(8, 100);
123      this.gbJobCommon.Name = "gbJobCommon";
124      this.gbJobCommon.Size = new System.Drawing.Size(412, 158);
125      this.gbJobCommon.TabIndex = 13;
126      this.gbJobCommon.TabStop = false;
127      this.gbJobCommon.Text = "Jobs detail";
128      //
129      // lvJobDetail
130      //
131      this.lvJobDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
132            this.chJobId,
133            this.chSince,
134            this.chProgress});
135      this.lvJobDetail.FullRowSelect = true;
136      this.lvJobDetail.GridLines = true;
137      this.lvJobDetail.Location = new System.Drawing.Point(6, 19);
138      this.lvJobDetail.Name = "lvJobDetail";
139      this.lvJobDetail.Size = new System.Drawing.Size(398, 132);
140      this.lvJobDetail.TabIndex = 0;
141      this.lvJobDetail.UseCompatibleStateImageBehavior = false;
142      this.lvJobDetail.View = System.Windows.Forms.View.Details;
143      //
144      // chJobId
145      //
146      this.chJobId.Text = "ID";
147      //
148      // chSince
149      //
150      this.chSince.Text = "Since";
151      this.chSince.Width = 74;
152      //
153      // chProgress
154      //
155      this.chProgress.Text = "Progress";
156      this.chProgress.Width = 260;
157      //
158      // gbCommon
159      //
160      this.gbCommon.Controls.Add(this.zGJobs);
161      this.gbCommon.Controls.Add(this.lbConnectionStatusCaption);
162      this.gbCommon.Controls.Add(this.lbJobsAbortedCaption);
163      this.gbCommon.Controls.Add(this.lbJobdoneCaption);
164      this.gbCommon.Controls.Add(this.lbGuidCaption);
165      this.gbCommon.Controls.Add(this.lbJobsFetchedCaption);
166      this.gbCommon.Controls.Add(this.lbCsCaption);
167      this.gbCommon.Location = new System.Drawing.Point(8, 6);
168      this.gbCommon.Name = "gbCommon";
169      this.gbCommon.Size = new System.Drawing.Size(410, 88);
170      this.gbCommon.TabIndex = 14;
171      this.gbCommon.TabStop = false;
172      this.gbCommon.Text = "Common";
173      //
174      // zGJobs
175      //
176      this.zGJobs.Location = new System.Drawing.Point(309, 11);
177      this.zGJobs.Name = "zGJobs";
178      this.zGJobs.ScrollGrace = 0;
179      this.zGJobs.ScrollMaxX = 0;
180      this.zGJobs.ScrollMaxY = 0;
181      this.zGJobs.ScrollMaxY2 = 0;
182      this.zGJobs.ScrollMinX = 0;
183      this.zGJobs.ScrollMinY = 0;
184      this.zGJobs.ScrollMinY2 = 0;
185      this.zGJobs.Size = new System.Drawing.Size(95, 68);
186      this.zGJobs.TabIndex = 14;
187      //
188      // lbConnectionStatusCaption
189      //
190      this.lbConnectionStatusCaption.AutoSize = true;
191      this.lbConnectionStatusCaption.Location = new System.Drawing.Point(9, 42);
192      this.lbConnectionStatusCaption.Name = "lbConnectionStatusCaption";
193      this.lbConnectionStatusCaption.Size = new System.Drawing.Size(93, 13);
194      this.lbConnectionStatusCaption.TabIndex = 13;
195      this.lbConnectionStatusCaption.Text = "Connected status:";
196      //
197      // lbJobsAbortedCaption
198      //
199      this.lbJobsAbortedCaption.AutoSize = true;
200      this.lbJobsAbortedCaption.Location = new System.Drawing.Point(147, 66);
201      this.lbJobsAbortedCaption.Name = "lbJobsAbortedCaption";
202      this.lbJobsAbortedCaption.Size = new System.Drawing.Size(71, 13);
203      this.lbJobsAbortedCaption.TabIndex = 11;
204      this.lbJobsAbortedCaption.Text = "Jobs aborted:";
205      //
206      // lbJobdoneCaption
207      //
208      this.lbJobdoneCaption.AutoSize = true;
209      this.lbJobdoneCaption.Location = new System.Drawing.Point(159, 42);
210      this.lbJobdoneCaption.Name = "lbJobdoneCaption";
211      this.lbJobdoneCaption.Size = new System.Drawing.Size(59, 13);
212      this.lbJobdoneCaption.TabIndex = 10;
213      this.lbJobdoneCaption.Text = "Jobs done:";
214      //
215      // lbGuidCaption
216      //
217      this.lbGuidCaption.AutoSize = true;
218      this.lbGuidCaption.Location = new System.Drawing.Point(9, 19);
219      this.lbGuidCaption.Name = "lbGuidCaption";
220      this.lbGuidCaption.Size = new System.Drawing.Size(37, 13);
221      this.lbGuidCaption.TabIndex = 8;
222      this.lbGuidCaption.Text = "GUID:";
223      //
224      // lbJobsFetchedCaption
225      //
226      this.lbJobsFetchedCaption.AutoSize = true;
227      this.lbJobsFetchedCaption.Location = new System.Drawing.Point(147, 16);
228      this.lbJobsFetchedCaption.Name = "lbJobsFetchedCaption";
229      this.lbJobsFetchedCaption.Size = new System.Drawing.Size(71, 13);
230      this.lbJobsFetchedCaption.TabIndex = 12;
231      this.lbJobsFetchedCaption.Text = "Jobs fetched:";
232      //
233      // lbCsCaption
234      //
235      this.lbCsCaption.AutoSize = true;
236      this.lbCsCaption.Location = new System.Drawing.Point(9, 66);
237      this.lbCsCaption.Name = "lbCsCaption";
238      this.lbCsCaption.Size = new System.Drawing.Size(90, 13);
239      this.lbCsCaption.TabIndex = 9;
240      this.lbCsCaption.Text = "Connected since:";
241      //
242      // gbEventLog
243      //
244      this.gbEventLog.Controls.Add(this.lvLog);
245      this.gbEventLog.Location = new System.Drawing.Point(8, 264);
246      this.gbEventLog.Name = "gbEventLog";
247      this.gbEventLog.Size = new System.Drawing.Size(412, 207);
248      this.gbEventLog.TabIndex = 7;
249      this.gbEventLog.TabStop = false;
250      this.gbEventLog.Text = "Hive Client Log";
251      //
252      // lvLog
253      //
254      this.lvLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
255            this.chType,
256            this.chId,
257            this.chMessage,
258            this.chDate,
259            this.chTime});
260      this.lvLog.FullRowSelect = true;
261      this.lvLog.GridLines = true;
262      this.lvLog.LargeImageList = this.ilEventLog;
263      this.lvLog.Location = new System.Drawing.Point(6, 14);
264      this.lvLog.MultiSelect = false;
265      this.lvLog.Name = "lvLog";
266      this.lvLog.Size = new System.Drawing.Size(398, 187);
267      this.lvLog.SmallImageList = this.ilEventLog;
268      this.lvLog.TabIndex = 6;
269      this.lvLog.UseCompatibleStateImageBehavior = false;
270      this.lvLog.View = System.Windows.Forms.View.Details;
271      this.lvLog.DoubleClick += new System.EventHandler(this.lvLog_DoubleClick);
272      //
273      // chType
274      //
275      this.chType.Text = "Type";
276      this.chType.Width = 42;
277      //
278      // chId
279      //
280      this.chId.Text = "ID";
281      //
282      // chMessage
283      //
284      this.chMessage.Text = "Message";
285      this.chMessage.Width = 163;
286      //
287      // chDate
288      //
289      this.chDate.Text = "Date";
290      this.chDate.Width = 63;
291      //
292      // chTime
293      //
294      this.chTime.Text = "Time";
295      this.chTime.Width = 65;
296      //
297      // ilEventLog
298      //
299      this.ilEventLog.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilEventLog.ImageStream")));
300      this.ilEventLog.TransparentColor = System.Drawing.Color.Transparent;
301      this.ilEventLog.Images.SetKeyName(0, "Info.png");
302      this.ilEventLog.Images.SetKeyName(1, "Error.png");
303      //
304      // tabPage2
305      //
306      this.tabPage2.Controls.Add(this.groupBox1);
307      this.tabPage2.Controls.Add(this.gbResources);
308      this.tabPage2.Controls.Add(this.gbServerConnection);
309      this.tabPage2.Location = new System.Drawing.Point(4, 22);
310      this.tabPage2.Name = "tabPage2";
311      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
312      this.tabPage2.Size = new System.Drawing.Size(429, 482);
313      this.tabPage2.TabIndex = 1;
314      this.tabPage2.Text = "Settings";
315      this.tabPage2.UseVisualStyleBackColor = true;
316      //
317      // groupBox1
318      //
319      this.groupBox1.Location = new System.Drawing.Point(9, 185);
320      this.groupBox1.Name = "groupBox1";
321      this.groupBox1.Size = new System.Drawing.Size(409, 286);
322      this.groupBox1.TabIndex = 4;
323      this.groupBox1.TabStop = false;
324      this.groupBox1.Text = "Online time";
325      //
326      // gbResources
327      //
328      this.gbResources.Controls.Add(this.textBox2);
329      this.gbResources.Controls.Add(this.lbMem);
330      this.gbResources.Location = new System.Drawing.Point(8, 118);
331      this.gbResources.Name = "gbResources";
332      this.gbResources.Size = new System.Drawing.Size(410, 60);
333      this.gbResources.TabIndex = 3;
334      this.gbResources.TabStop = false;
335      this.gbResources.Text = "Resources";
336      //
337      // textBox2
338      //
339      this.textBox2.Location = new System.Drawing.Point(174, 25);
340      this.textBox2.Name = "textBox2";
341      this.textBox2.Size = new System.Drawing.Size(72, 20);
342      this.textBox2.TabIndex = 1;
343      //
344      // lbMem
345      //
346      this.lbMem.AutoSize = true;
347      this.lbMem.Location = new System.Drawing.Point(17, 25);
348      this.lbMem.Name = "lbMem";
349      this.lbMem.Size = new System.Drawing.Size(150, 13);
350      this.lbMem.TabIndex = 0;
351      this.lbMem.Text = "Maximum memory usage [MB]:";
352      //
353      // gbServerConnection
354      //
355      this.gbServerConnection.Controls.Add(this.btnDisconnect);
356      this.gbServerConnection.Controls.Add(this.btConnect);
357      this.gbServerConnection.Controls.Add(this.textBox1);
358      this.gbServerConnection.Controls.Add(this.tbIPAdress);
359      this.gbServerConnection.Controls.Add(this.lbServerIPCaption);
360      this.gbServerConnection.Controls.Add(this.lbPortCaption);
361      this.gbServerConnection.Location = new System.Drawing.Point(8, 6);
362      this.gbServerConnection.Name = "gbServerConnection";
363      this.gbServerConnection.Size = new System.Drawing.Size(410, 105);
364      this.gbServerConnection.TabIndex = 2;
365      this.gbServerConnection.TabStop = false;
366      this.gbServerConnection.Text = "Server connection";
367      //
368      // btnDisconnect
369      //
370      this.btnDisconnect.Location = new System.Drawing.Point(257, 51);
371      this.btnDisconnect.Name = "btnDisconnect";
372      this.btnDisconnect.Size = new System.Drawing.Size(147, 23);
373      this.btnDisconnect.TabIndex = 5;
374      this.btnDisconnect.Text = "Disconnect from server";
375      this.btnDisconnect.UseVisualStyleBackColor = true;
376      //
377      // btConnect
378      //
379      this.btConnect.Location = new System.Drawing.Point(257, 23);
380      this.btConnect.Name = "btConnect";
381      this.btConnect.Size = new System.Drawing.Size(147, 23);
382      this.btConnect.TabIndex = 4;
383      this.btConnect.Text = "Connect to server";
384      this.btConnect.UseVisualStyleBackColor = true;
385      //
386      // textBox1
387      //
388      this.textBox1.Location = new System.Drawing.Point(77, 51);
389      this.textBox1.Name = "textBox1";
390      this.textBox1.Size = new System.Drawing.Size(143, 20);
391      this.textBox1.TabIndex = 3;
392      //
393      // tbIPAdress
394      //
395      this.tbIPAdress.Location = new System.Drawing.Point(77, 25);
396      this.tbIPAdress.Name = "tbIPAdress";
397      this.tbIPAdress.Size = new System.Drawing.Size(143, 20);
398      this.tbIPAdress.TabIndex = 2;
399      //
400      // lbServerIPCaption
401      //
402      this.lbServerIPCaption.AutoSize = true;
403      this.lbServerIPCaption.Location = new System.Drawing.Point(17, 28);
404      this.lbServerIPCaption.Name = "lbServerIPCaption";
405      this.lbServerIPCaption.Size = new System.Drawing.Size(54, 13);
406      this.lbServerIPCaption.TabIndex = 0;
407      this.lbServerIPCaption.Text = "IP adress:";
408      //
409      // lbPortCaption
410      //
411      this.lbPortCaption.AutoSize = true;
412      this.lbPortCaption.Location = new System.Drawing.Point(17, 54);
413      this.lbPortCaption.Name = "lbPortCaption";
414      this.lbPortCaption.Size = new System.Drawing.Size(29, 13);
415      this.lbPortCaption.TabIndex = 1;
416      this.lbPortCaption.Text = "Port:";
417      //
418      // HiveClientConsole
419      //
420      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
421      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
422      this.ClientSize = new System.Drawing.Size(437, 508);
423      this.Controls.Add(this.tcClientConsole);
424      this.Name = "HiveClientConsole";
425      this.Text = "Client Console";
426      this.Load += new System.EventHandler(this.HiveClientConsole_Load);
427      this.Resize += new System.EventHandler(this.HiveClientConsole_Resize);
428      this.tcClientConsole.ResumeLayout(false);
429      this.tpConnection.ResumeLayout(false);
430      this.gbJobCommon.ResumeLayout(false);
431      this.gbCommon.ResumeLayout(false);
432      this.gbCommon.PerformLayout();
433      this.gbEventLog.ResumeLayout(false);
434      this.tabPage2.ResumeLayout(false);
435      this.gbResources.ResumeLayout(false);
436      this.gbResources.PerformLayout();
437      this.gbServerConnection.ResumeLayout(false);
438      this.gbServerConnection.PerformLayout();
439      this.ResumeLayout(false);
440
441    }
442
443    #endregion
444
445    private System.Windows.Forms.TabControl tcClientConsole;
446    private System.Windows.Forms.TabPage tpConnection;
447    private System.Windows.Forms.TabPage tabPage2;
448    private System.Windows.Forms.ListView lvLog;
449    private System.Windows.Forms.ColumnHeader chType;
450    private System.Windows.Forms.ColumnHeader chMessage;
451    private System.Windows.Forms.ColumnHeader chDate;
452    private System.Windows.Forms.ColumnHeader chTime;
453    private System.Windows.Forms.Label lbJobdoneCaption;
454    private System.Windows.Forms.Label lbCsCaption;
455    private System.Windows.Forms.Label lbGuidCaption;
456    private System.Windows.Forms.GroupBox gbEventLog;
457    private System.Windows.Forms.Label lbJobsFetchedCaption;
458    private System.Windows.Forms.Label lbJobsAbortedCaption;
459    private System.Windows.Forms.GroupBox gbJobCommon;
460    private System.Windows.Forms.GroupBox gbCommon;
461    private System.Windows.Forms.ListView lvJobDetail;
462    private System.Windows.Forms.ColumnHeader chJobId;
463    private System.Windows.Forms.ColumnHeader chSince;
464    private System.Windows.Forms.ColumnHeader chProgress;
465    private System.Windows.Forms.Label lbConnectionStatusCaption;
466    private System.Windows.Forms.GroupBox gbResources;
467    private System.Windows.Forms.GroupBox gbServerConnection;
468    private System.Windows.Forms.TextBox textBox1;
469    private System.Windows.Forms.TextBox tbIPAdress;
470    private System.Windows.Forms.Label lbServerIPCaption;
471    private System.Windows.Forms.Label lbPortCaption;
472    private System.Windows.Forms.Label lbMem;
473    private System.Windows.Forms.GroupBox groupBox1;
474    private System.Windows.Forms.TextBox textBox2;
475    private System.Windows.Forms.Button btnDisconnect;
476    private System.Windows.Forms.Button btConnect;
477    private ZedGraph.ZedGraphControl zGJobs;
478    private System.Windows.Forms.ColumnHeader chId;
479    private System.Windows.Forms.ImageList ilEventLog;
480  }
481}
482
Note: See TracBrowser for help on using the repository browser.