Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.Designer.cs @ 1089

Last change on this file since 1089 was 1089, checked in by aleitner, 15 years ago

panel for details which shows an image and a close button if details should be closed (#452)

File size: 21.3 KB
Line 
1namespace HeuristicLab.Hive.Server.ServerConsole {
2  partial class HiveServerManagementConsole {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveServerManagementConsole));
28      this.menuStrip1 = new System.Windows.Forms.MenuStrip();
29      this.informationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
30      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
31      this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
32      this.jobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33      this.userToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
34      this.userToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
35      this.groupToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
36      this.tcManagementConsole = new System.Windows.Forms.TabControl();
37      this.tpClientControl = new System.Windows.Forms.TabPage();
38      this.scClientControl = new System.Windows.Forms.SplitContainer();
39      this.tvClientControl = new System.Windows.Forms.TreeView();
40      this.plClientDetails = new System.Windows.Forms.Panel();
41      this.pbClientControl = new System.Windows.Forms.PictureBox();
42      this.lvClientControl = new System.Windows.Forms.ListView();
43      this.ilClientControl = new System.Windows.Forms.ImageList(this.components);
44      this.tpJobControl = new System.Windows.Forms.TabPage();
45      this.scJobControl = new System.Windows.Forms.SplitContainer();
46      this.tvJobControl = new System.Windows.Forms.TreeView();
47      this.lvJobControl = new System.Windows.Forms.ListView();
48      this.ilJobControl = new System.Windows.Forms.ImageList(this.components);
49      this.tpUserControl = new System.Windows.Forms.TabPage();
50      this.scUserControl = new System.Windows.Forms.SplitContainer();
51      this.tvUserControl = new System.Windows.Forms.TreeView();
52      this.lvUserControl = new System.Windows.Forms.ListView();
53      this.ilUserControl = new System.Windows.Forms.ImageList(this.components);
54      this.treeView2 = new System.Windows.Forms.TreeView();
55      this.listView2 = new System.Windows.Forms.ListView();
56      this.timerSyncronize = new System.Windows.Forms.Timer(this.components);
57      this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
58      this.btnClose = new System.Windows.Forms.Button();
59      this.lblClientName = new System.Windows.Forms.Label();
60      this.menuStrip1.SuspendLayout();
61      this.tcManagementConsole.SuspendLayout();
62      this.tpClientControl.SuspendLayout();
63      this.scClientControl.Panel1.SuspendLayout();
64      this.scClientControl.Panel2.SuspendLayout();
65      this.scClientControl.SuspendLayout();
66      this.plClientDetails.SuspendLayout();
67      ((System.ComponentModel.ISupportInitialize)(this.pbClientControl)).BeginInit();
68      this.tpJobControl.SuspendLayout();
69      this.scJobControl.Panel1.SuspendLayout();
70      this.scJobControl.Panel2.SuspendLayout();
71      this.scJobControl.SuspendLayout();
72      this.tpUserControl.SuspendLayout();
73      this.scUserControl.Panel1.SuspendLayout();
74      this.scUserControl.Panel2.SuspendLayout();
75      this.scUserControl.SuspendLayout();
76      ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
77      this.SuspendLayout();
78      //
79      // menuStrip1
80      //
81      this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
82            this.informationToolStripMenuItem,
83            this.addToolStripMenuItem});
84      this.menuStrip1.Location = new System.Drawing.Point(0, 0);
85      this.menuStrip1.Name = "menuStrip1";
86      this.menuStrip1.Size = new System.Drawing.Size(651, 24);
87      this.menuStrip1.TabIndex = 0;
88      this.menuStrip1.Text = "menuStrip1";
89      //
90      // informationToolStripMenuItem
91      //
92      this.informationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
93            this.closeToolStripMenuItem});
94      this.informationToolStripMenuItem.Name = "informationToolStripMenuItem";
95      this.informationToolStripMenuItem.Size = new System.Drawing.Size(81, 20);
96      this.informationToolStripMenuItem.Text = "Management";
97      //
98      // closeToolStripMenuItem
99      //
100      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
101      this.closeToolStripMenuItem.Size = new System.Drawing.Size(111, 22);
102      this.closeToolStripMenuItem.Text = "Close";
103      this.closeToolStripMenuItem.Click += new System.EventHandler(this.Close_Click);
104      //
105      // addToolStripMenuItem
106      //
107      this.addToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
108            this.jobToolStripMenuItem,
109            this.userToolStripMenuItem});
110      this.addToolStripMenuItem.Name = "addToolStripMenuItem";
111      this.addToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
112      this.addToolStripMenuItem.Text = "Add";
113      //
114      // jobToolStripMenuItem
115      //
116      this.jobToolStripMenuItem.Name = "jobToolStripMenuItem";
117      this.jobToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
118      this.jobToolStripMenuItem.Text = "Job";
119      this.jobToolStripMenuItem.Click += new System.EventHandler(this.JobToolStripMenuItem1_Click);
120      //
121      // userToolStripMenuItem
122      //
123      this.userToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
124            this.userToolStripMenuItem1,
125            this.groupToolStripMenuItem2});
126      this.userToolStripMenuItem.Name = "userToolStripMenuItem";
127      this.userToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
128      this.userToolStripMenuItem.Text = "User";
129      //
130      // userToolStripMenuItem1
131      //
132      this.userToolStripMenuItem1.Name = "userToolStripMenuItem1";
133      this.userToolStripMenuItem1.Size = new System.Drawing.Size(114, 22);
134      this.userToolStripMenuItem1.Text = "User";
135      this.userToolStripMenuItem1.Click += new System.EventHandler(this.UserToolStripMenuItem1_Click);
136      //
137      // groupToolStripMenuItem2
138      //
139      this.groupToolStripMenuItem2.Name = "groupToolStripMenuItem2";
140      this.groupToolStripMenuItem2.Size = new System.Drawing.Size(114, 22);
141      this.groupToolStripMenuItem2.Text = "Group";
142      this.groupToolStripMenuItem2.Click += new System.EventHandler(this.GroupToolStripMenuItem2_Click);
143      //
144      // tcManagementConsole
145      //
146      this.tcManagementConsole.Controls.Add(this.tpClientControl);
147      this.tcManagementConsole.Controls.Add(this.tpJobControl);
148      this.tcManagementConsole.Controls.Add(this.tpUserControl);
149      this.tcManagementConsole.Dock = System.Windows.Forms.DockStyle.Fill;
150      this.tcManagementConsole.Location = new System.Drawing.Point(0, 24);
151      this.tcManagementConsole.Name = "tcManagementConsole";
152      this.tcManagementConsole.SelectedIndex = 0;
153      this.tcManagementConsole.Size = new System.Drawing.Size(651, 378);
154      this.tcManagementConsole.TabIndex = 1;
155      //
156      // tpClientControl
157      //
158      this.tpClientControl.AllowDrop = true;
159      this.tpClientControl.Controls.Add(this.scClientControl);
160      this.tpClientControl.Location = new System.Drawing.Point(4, 22);
161      this.tpClientControl.Name = "tpClientControl";
162      this.tpClientControl.Padding = new System.Windows.Forms.Padding(3);
163      this.tpClientControl.Size = new System.Drawing.Size(643, 352);
164      this.tpClientControl.TabIndex = 0;
165      this.tpClientControl.Text = "Client Control";
166      this.tpClientControl.UseVisualStyleBackColor = true;
167      //
168      // scClientControl
169      //
170      this.scClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
171      this.scClientControl.Location = new System.Drawing.Point(3, 3);
172      this.scClientControl.Name = "scClientControl";
173      //
174      // scClientControl.Panel1
175      //
176      this.scClientControl.Panel1.Controls.Add(this.tvClientControl);
177      //
178      // scClientControl.Panel2
179      //
180      //this.scClientControl.Panel2.Controls.Add(this.plClientDetails);
181      this.scClientControl.Panel2.Controls.Add(this.lvClientControl);
182      this.scClientControl.Size = new System.Drawing.Size(637, 346);
183      this.scClientControl.SplitterDistance = 139;
184      this.scClientControl.TabIndex = 0;
185      //
186      // tvClientControl
187      //
188      this.tvClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
189      this.tvClientControl.Location = new System.Drawing.Point(0, 0);
190      this.tvClientControl.Name = "tvClientControl";
191      this.tvClientControl.Size = new System.Drawing.Size(139, 346);
192      this.tvClientControl.TabIndex = 0;
193      //
194      // plClientDetails
195      //
196      this.plClientDetails.BackColor = System.Drawing.SystemColors.Window;
197      this.plClientDetails.Controls.Add(this.lblClientName);
198      this.plClientDetails.Controls.Add(this.btnClose);
199      this.plClientDetails.Controls.Add(this.pbClientControl);
200      this.plClientDetails.Dock = System.Windows.Forms.DockStyle.Fill;
201      this.plClientDetails.Location = new System.Drawing.Point(0, 0);
202      this.plClientDetails.Name = "plClientDetails";
203      this.plClientDetails.Size = new System.Drawing.Size(494, 346);
204      this.plClientDetails.TabIndex = 1;
205      //
206      // pbClientControl
207      //
208      this.pbClientControl.Location = new System.Drawing.Point(3, 4);
209      this.pbClientControl.Name = "pbClientControl";
210      this.pbClientControl.Size = new System.Drawing.Size(60, 50);
211      this.pbClientControl.TabIndex = 0;
212      this.pbClientControl.TabStop = false;
213      //
214      // lvClientControl
215      //
216      this.lvClientControl.AllowDrop = true;
217      this.lvClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
218      this.lvClientControl.ImeMode = System.Windows.Forms.ImeMode.Off;
219      this.lvClientControl.LargeImageList = this.ilClientControl;
220      this.lvClientControl.Location = new System.Drawing.Point(0, 0);
221      this.lvClientControl.Name = "lvClientControl";
222      this.lvClientControl.Size = new System.Drawing.Size(494, 346);
223      this.lvClientControl.TabIndex = 0;
224      this.lvClientControl.UseCompatibleStateImageBehavior = false;
225      this.lvClientControl.Click += new System.EventHandler(this.OnClientClicked);
226      //
227      // ilClientControl
228      //
229      this.ilClientControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilClientControl.ImageStream")));
230      this.ilClientControl.TransparentColor = System.Drawing.Color.Transparent;
231      this.ilClientControl.Images.SetKeyName(0, "monitor-green.png");
232      this.ilClientControl.Images.SetKeyName(1, "monitor-orange.png");
233      this.ilClientControl.Images.SetKeyName(2, "monitor-red.png");
234      //
235      // tpJobControl
236      //
237      this.tpJobControl.Controls.Add(this.scJobControl);
238      this.tpJobControl.Location = new System.Drawing.Point(4, 22);
239      this.tpJobControl.Name = "tpJobControl";
240      this.tpJobControl.Padding = new System.Windows.Forms.Padding(3);
241      this.tpJobControl.Size = new System.Drawing.Size(643, 352);
242      this.tpJobControl.TabIndex = 1;
243      this.tpJobControl.Text = "Job Control";
244      this.tpJobControl.UseVisualStyleBackColor = true;
245      //
246      // scJobControl
247      //
248      this.scJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
249      this.scJobControl.Location = new System.Drawing.Point(3, 3);
250      this.scJobControl.Name = "scJobControl";
251      //
252      // scJobControl.Panel1
253      //
254      this.scJobControl.Panel1.Controls.Add(this.tvJobControl);
255      //
256      // scJobControl.Panel2
257      //
258      this.scJobControl.Panel2.Controls.Add(this.lvJobControl);
259      this.scJobControl.Size = new System.Drawing.Size(637, 346);
260      this.scJobControl.SplitterDistance = 139;
261      this.scJobControl.TabIndex = 1;
262      //
263      // tvJobControl
264      //
265      this.tvJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
266      this.tvJobControl.Location = new System.Drawing.Point(0, 0);
267      this.tvJobControl.Name = "tvJobControl";
268      this.tvJobControl.Size = new System.Drawing.Size(139, 346);
269      this.tvJobControl.TabIndex = 2;
270      //
271      // lvJobControl
272      //
273      this.lvJobControl.AllowDrop = true;
274      this.lvJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
275      this.lvJobControl.LargeImageList = this.ilJobControl;
276      this.lvJobControl.Location = new System.Drawing.Point(0, 0);
277      this.lvJobControl.Name = "lvJobControl";
278      this.lvJobControl.Size = new System.Drawing.Size(494, 346);
279      this.lvJobControl.TabIndex = 0;
280      this.lvJobControl.UseCompatibleStateImageBehavior = false;
281      //
282      // ilJobControl
283      //
284      this.ilJobControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilJobControl.ImageStream")));
285      this.ilJobControl.TransparentColor = System.Drawing.Color.Transparent;
286      this.ilJobControl.Images.SetKeyName(0, "PlayHS.png");
287      //
288      // tpUserControl
289      //
290      this.tpUserControl.Controls.Add(this.scUserControl);
291      this.tpUserControl.Location = new System.Drawing.Point(4, 22);
292      this.tpUserControl.Name = "tpUserControl";
293      this.tpUserControl.Padding = new System.Windows.Forms.Padding(3);
294      this.tpUserControl.Size = new System.Drawing.Size(643, 352);
295      this.tpUserControl.TabIndex = 2;
296      this.tpUserControl.Text = "User Control";
297      this.tpUserControl.UseVisualStyleBackColor = true;
298      //
299      // scUserControl
300      //
301      this.scUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
302      this.scUserControl.Location = new System.Drawing.Point(3, 3);
303      this.scUserControl.Name = "scUserControl";
304      //
305      // scUserControl.Panel1
306      //
307      this.scUserControl.Panel1.Controls.Add(this.tvUserControl);
308      //
309      // scUserControl.Panel2
310      //
311      this.scUserControl.Panel2.Controls.Add(this.lvUserControl);
312      this.scUserControl.Size = new System.Drawing.Size(637, 346);
313      this.scUserControl.SplitterDistance = 139;
314      this.scUserControl.TabIndex = 1;
315      //
316      // tvUserControl
317      //
318      this.tvUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
319      this.tvUserControl.Location = new System.Drawing.Point(0, 0);
320      this.tvUserControl.Name = "tvUserControl";
321      this.tvUserControl.Size = new System.Drawing.Size(139, 346);
322      this.tvUserControl.TabIndex = 1;
323      //
324      // lvUserControl
325      //
326      this.lvUserControl.AllowDrop = true;
327      this.lvUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
328      this.lvUserControl.LargeImageList = this.ilUserControl;
329      this.lvUserControl.Location = new System.Drawing.Point(0, 0);
330      this.lvUserControl.Name = "lvUserControl";
331      this.lvUserControl.Size = new System.Drawing.Size(494, 346);
332      this.lvUserControl.TabIndex = 1;
333      this.lvUserControl.UseCompatibleStateImageBehavior = false;
334      //
335      // ilUserControl
336      //
337      this.ilUserControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilUserControl.ImageStream")));
338      this.ilUserControl.TransparentColor = System.Drawing.Color.Transparent;
339      this.ilUserControl.Images.SetKeyName(0, "Users.png");
340      //
341      // treeView2
342      //
343      this.treeView2.Dock = System.Windows.Forms.DockStyle.Fill;
344      this.treeView2.LineColor = System.Drawing.Color.Empty;
345      this.treeView2.Location = new System.Drawing.Point(0, 0);
346      this.treeView2.Name = "treeView2";
347      this.treeView2.Size = new System.Drawing.Size(139, 346);
348      this.treeView2.TabIndex = 0;
349      //
350      // listView2
351      //
352      this.listView2.Dock = System.Windows.Forms.DockStyle.Fill;
353      this.listView2.Location = new System.Drawing.Point(0, 0);
354      this.listView2.Name = "listView2";
355      this.listView2.Size = new System.Drawing.Size(494, 346);
356      this.listView2.TabIndex = 0;
357      this.listView2.UseCompatibleStateImageBehavior = false;
358      //
359      // timerSyncronize
360      //
361      this.timerSyncronize.Interval = 10000;
362      //
363      // btnClose
364      //
365      this.btnClose.Location = new System.Drawing.Point(414, 4);
366      this.btnClose.Name = "btnClose";
367      this.btnClose.Size = new System.Drawing.Size(75, 23);
368      this.btnClose.TabIndex = 1;
369      this.btnClose.Text = "Close";
370      this.btnClose.UseVisualStyleBackColor = true;
371      this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
372      //
373      // lblClientName
374      //
375      this.lblClientName.AutoSize = true;
376      this.lblClientName.Location = new System.Drawing.Point(79, 19);
377      this.lblClientName.Name = "lblClientName";
378      this.lblClientName.Size = new System.Drawing.Size(35, 13);
379      this.lblClientName.TabIndex = 2;
380      this.lblClientName.Text = "label1";
381      //
382      // HiveServerManagementConsole
383      //
384      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
385      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
386      this.ClientSize = new System.Drawing.Size(651, 402);
387      this.Controls.Add(this.tcManagementConsole);
388      this.Controls.Add(this.menuStrip1);
389      this.MainMenuStrip = this.menuStrip1;
390      this.Name = "HiveServerManagementConsole";
391      this.Text = "Management Console";
392      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiveServerConsoleInformation_FormClosing);
393      this.menuStrip1.ResumeLayout(false);
394      this.menuStrip1.PerformLayout();
395      this.tcManagementConsole.ResumeLayout(false);
396      this.tpClientControl.ResumeLayout(false);
397      this.scClientControl.Panel1.ResumeLayout(false);
398      this.scClientControl.Panel2.ResumeLayout(false);
399      this.scClientControl.ResumeLayout(false);
400      this.plClientDetails.ResumeLayout(false);
401      this.plClientDetails.PerformLayout();
402      ((System.ComponentModel.ISupportInitialize)(this.pbClientControl)).EndInit();
403      this.tpJobControl.ResumeLayout(false);
404      this.scJobControl.Panel1.ResumeLayout(false);
405      this.scJobControl.Panel2.ResumeLayout(false);
406      this.scJobControl.ResumeLayout(false);
407      this.tpUserControl.ResumeLayout(false);
408      this.scUserControl.Panel1.ResumeLayout(false);
409      this.scUserControl.Panel2.ResumeLayout(false);
410      this.scUserControl.ResumeLayout(false);
411      ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
412      this.ResumeLayout(false);
413      this.PerformLayout();
414
415    }
416
417    #endregion
418
419    private System.Windows.Forms.MenuStrip menuStrip1;
420    private System.Windows.Forms.ToolStripMenuItem informationToolStripMenuItem;
421    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
422    private System.Windows.Forms.TabControl tcManagementConsole;
423    private System.Windows.Forms.TabPage tpClientControl;
424    private System.Windows.Forms.TabPage tpJobControl;
425    private System.Windows.Forms.SplitContainer scClientControl;
426    private System.Windows.Forms.TabPage tpUserControl;
427    private System.Windows.Forms.TreeView tvClientControl;
428    private System.Windows.Forms.ListView lvClientControl;
429    private System.Windows.Forms.SplitContainer scJobControl;
430    private System.Windows.Forms.ListView lvJobControl;
431    private System.Windows.Forms.SplitContainer scUserControl;
432    private System.Windows.Forms.TreeView treeView2;
433    private System.Windows.Forms.ListView listView2;
434    private System.Windows.Forms.TreeView tvJobControl;
435    private System.Windows.Forms.TreeView tvUserControl;
436    private System.Windows.Forms.ListView lvUserControl;
437    private System.Windows.Forms.ImageList ilClientControl;
438    private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
439    private System.Windows.Forms.ToolStripMenuItem jobToolStripMenuItem;
440    private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem;
441    private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem1;
442    private System.Windows.Forms.ToolStripMenuItem groupToolStripMenuItem2;
443    private System.Windows.Forms.ImageList ilUserControl;
444    private System.Windows.Forms.Timer timerSyncronize;
445    private System.Windows.Forms.ImageList ilJobControl;
446    private System.Windows.Forms.BindingSource bindingSource1;
447    private System.Windows.Forms.Panel plClientDetails;
448    private System.Windows.Forms.PictureBox pbClientControl;
449    private System.Windows.Forms.Button btnClose;
450    private System.Windows.Forms.Label lblClientName;
451  }
452}
Note: See TracBrowser for help on using the repository browser.