Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administration/3.4/Views/ResourcesView.Designer.cs @ 6688

Last change on this file since 6688 was 6688, checked in by ascheibe, 13 years ago

#1233 some renaming to be more consistent with OKB

File size: 12.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
22using HeuristicLab.Clients.Hive.Administrator.Views.Common;
23namespace HeuristicLab.Clients.Hive.Administrator.Views {
24  partial class ResourcesView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.components = new System.ComponentModel.Container();
49      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ResourcesView));
50      this.imageListSlaveGroups = new System.Windows.Forms.ImageList(this.components);
51      this.splitSlaves = new System.Windows.Forms.SplitContainer();
52      this.updateSlaveGroup = new HeuristicLab.Clients.Hive.Administrator.Views.Common.UpdateControl();
53      this.btnSave = new System.Windows.Forms.Button();
54      this.btnRemoveGroup = new System.Windows.Forms.Button();
55      this.btnAddGroup = new System.Windows.Forms.Button();
56      this.treeSlaveGroup = new System.Windows.Forms.TreeView();
57      this.tabSlaveGroup = new System.Windows.Forms.TabControl();
58      this.tabDetails = new System.Windows.Forms.TabPage();
59      this.slaveView = new HeuristicLab.Clients.Hive.Administrator.Views.SlaveView();
60      this.tabSchedule = new System.Windows.Forms.TabPage();
61      this.updateScheduleControl = new HeuristicLab.Clients.Hive.Administrator.Views.Common.UpdateControl();
62      this.scheduleView = new HeuristicLab.Clients.Hive.Administrator.Views.ScheduleView();
63      ((System.ComponentModel.ISupportInitialize)(this.splitSlaves)).BeginInit();
64      this.splitSlaves.Panel1.SuspendLayout();
65      this.splitSlaves.Panel2.SuspendLayout();
66      this.splitSlaves.SuspendLayout();
67      this.tabSlaveGroup.SuspendLayout();
68      this.tabDetails.SuspendLayout();
69      this.tabSchedule.SuspendLayout();
70      this.SuspendLayout();
71      //
72      // imageListSlaveGroups
73      //
74      this.imageListSlaveGroups.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
75      this.imageListSlaveGroups.ImageSize = new System.Drawing.Size(16, 16);
76      this.imageListSlaveGroups.TransparentColor = System.Drawing.Color.Transparent;
77      //
78      // splitSlaves
79      //
80      this.splitSlaves.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.splitSlaves.Location = new System.Drawing.Point(3, 3);
84      this.splitSlaves.Name = "splitSlaves";
85      //
86      // splitSlaves.Panel1
87      //
88      this.splitSlaves.Panel1.Controls.Add(this.updateSlaveGroup);
89      this.splitSlaves.Panel1.Controls.Add(this.btnSave);
90      this.splitSlaves.Panel1.Controls.Add(this.btnRemoveGroup);
91      this.splitSlaves.Panel1.Controls.Add(this.btnAddGroup);
92      this.splitSlaves.Panel1.Controls.Add(this.treeSlaveGroup);
93      //
94      // splitSlaves.Panel2
95      //
96      this.splitSlaves.Panel2.Controls.Add(this.tabSlaveGroup);
97      this.splitSlaves.Size = new System.Drawing.Size(847, 547);
98      this.splitSlaves.SplitterDistance = 249;
99      this.splitSlaves.TabIndex = 3;
100      //
101      // updateSlaveGroup
102      //
103      this.updateSlaveGroup.Location = new System.Drawing.Point(94, 3);
104      this.updateSlaveGroup.Name = "updateSlaveGroup";
105      this.updateSlaveGroup.Size = new System.Drawing.Size(75, 24);
106      this.updateSlaveGroup.TabIndex = 6;
107      this.updateSlaveGroup.UpdateAction = null;
108      //
109      // btnSave
110      //
111      this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
112      this.btnSave.Location = new System.Drawing.Point(63, 3);
113      this.btnSave.Name = "btnSave";
114      this.btnSave.Size = new System.Drawing.Size(24, 24);
115      this.btnSave.TabIndex = 5;
116      this.btnSave.UseVisualStyleBackColor = true;
117      this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
118      //
119      // btnRemoveGroup
120      //
121      this.btnRemoveGroup.Image = ((System.Drawing.Image)(resources.GetObject("btnRemoveGroup.Image")));
122      this.btnRemoveGroup.Location = new System.Drawing.Point(33, 3);
123      this.btnRemoveGroup.Name = "btnRemoveGroup";
124      this.btnRemoveGroup.Size = new System.Drawing.Size(24, 24);
125      this.btnRemoveGroup.TabIndex = 2;
126      this.btnRemoveGroup.UseVisualStyleBackColor = true;
127      this.btnRemoveGroup.Click += new System.EventHandler(this.btnRemoveGroup_Click);
128      //
129      // btnAddGroup
130      //
131      this.btnAddGroup.Image = ((System.Drawing.Image)(resources.GetObject("btnAddGroup.Image")));
132      this.btnAddGroup.Location = new System.Drawing.Point(3, 3);
133      this.btnAddGroup.Name = "btnAddGroup";
134      this.btnAddGroup.Size = new System.Drawing.Size(24, 24);
135      this.btnAddGroup.TabIndex = 1;
136      this.btnAddGroup.UseVisualStyleBackColor = true;
137      this.btnAddGroup.Click += new System.EventHandler(this.btnAddGroup_Click);
138      //
139      // treeSlaveGroup
140      //
141      this.treeSlaveGroup.AllowDrop = true;
142      this.treeSlaveGroup.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
143                  | System.Windows.Forms.AnchorStyles.Left)
144                  | System.Windows.Forms.AnchorStyles.Right)));
145      this.treeSlaveGroup.ImageIndex = 0;
146      this.treeSlaveGroup.ImageList = this.imageListSlaveGroups;
147      this.treeSlaveGroup.Location = new System.Drawing.Point(3, 33);
148      this.treeSlaveGroup.Name = "treeSlaveGroup";
149      this.treeSlaveGroup.SelectedImageIndex = 0;
150      this.treeSlaveGroup.Size = new System.Drawing.Size(243, 511);
151      this.treeSlaveGroup.TabIndex = 0;
152      this.treeSlaveGroup.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeSlaveGroup_ItemDrag);
153      this.treeSlaveGroup.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeSlaveGroup_NodeMouseClick);
154      this.treeSlaveGroup.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeSlaveGroup_DragDrop);
155      this.treeSlaveGroup.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeSlaveGroup_DragEnter);
156      this.treeSlaveGroup.DragOver += new System.Windows.Forms.DragEventHandler(this.treeSlaveGroup_DragOver);
157      this.treeSlaveGroup.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.treeSlaveGroup_QueryContinueDrag);
158      //
159      // tabSlaveGroup
160      //
161      this.tabSlaveGroup.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
162                  | System.Windows.Forms.AnchorStyles.Left)
163                  | System.Windows.Forms.AnchorStyles.Right)));
164      this.tabSlaveGroup.Controls.Add(this.tabDetails);
165      this.tabSlaveGroup.Controls.Add(this.tabSchedule);
166      this.tabSlaveGroup.Location = new System.Drawing.Point(3, 3);
167      this.tabSlaveGroup.Name = "tabSlaveGroup";
168      this.tabSlaveGroup.SelectedIndex = 0;
169      this.tabSlaveGroup.Size = new System.Drawing.Size(585, 541);
170      this.tabSlaveGroup.TabIndex = 1;
171      this.tabSlaveGroup.SelectedIndexChanged += new System.EventHandler(this.tabSlaveGroup_SelectedIndexChanged);
172      //
173      // tabDetails
174      //
175      this.tabDetails.Controls.Add(this.slaveView);
176      this.tabDetails.Location = new System.Drawing.Point(4, 22);
177      this.tabDetails.Name = "tabDetails";
178      this.tabDetails.Padding = new System.Windows.Forms.Padding(3);
179      this.tabDetails.Size = new System.Drawing.Size(577, 515);
180      this.tabDetails.TabIndex = 0;
181      this.tabDetails.Text = "Details";
182      this.tabDetails.UseVisualStyleBackColor = true;
183      //
184      // slaveView
185      //
186      this.slaveView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
187                  | System.Windows.Forms.AnchorStyles.Right)));
188      this.slaveView.Caption = "SlaveView";
189      this.slaveView.Content = null;
190      this.slaveView.Location = new System.Drawing.Point(7, 7);
191      this.slaveView.Name = "slaveView";
192      this.slaveView.ReadOnly = false;
193      this.slaveView.Size = new System.Drawing.Size(564, 210);
194      this.slaveView.TabIndex = 0;
195      //
196      // tabSchedule
197      //
198      this.tabSchedule.Controls.Add(this.updateScheduleControl);
199      this.tabSchedule.Controls.Add(this.scheduleView);
200      this.tabSchedule.Location = new System.Drawing.Point(4, 22);
201      this.tabSchedule.Name = "tabSchedule";
202      this.tabSchedule.Padding = new System.Windows.Forms.Padding(3);
203      this.tabSchedule.Size = new System.Drawing.Size(577, 515);
204      this.tabSchedule.TabIndex = 1;
205      this.tabSchedule.Text = "Schedule";
206      this.tabSchedule.UseVisualStyleBackColor = true;
207      //
208      // updateScheduleControl
209      //
210      this.updateScheduleControl.Location = new System.Drawing.Point(6, 6);
211      this.updateScheduleControl.Name = "updateScheduleControl";
212      this.updateScheduleControl.Size = new System.Drawing.Size(75, 24);
213      this.updateScheduleControl.TabIndex = 5;
214      this.updateScheduleControl.UpdateAction = null;
215      //
216      // scheduleView
217      //
218      this.scheduleView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
219                  | System.Windows.Forms.AnchorStyles.Left)
220                  | System.Windows.Forms.AnchorStyles.Right)));
221      this.scheduleView.Caption = "ScheduleView";
222      this.scheduleView.Content = null;
223      this.scheduleView.Location = new System.Drawing.Point(3, 36);
224      this.scheduleView.Name = "scheduleView";
225      this.scheduleView.ReadOnly = false;
226      this.scheduleView.ResourceId = new System.Guid("00000000-0000-0000-0000-000000000000");
227      this.scheduleView.Size = new System.Drawing.Size(568, 473);
228      this.scheduleView.TabIndex = 0;
229      //
230      // ResourcesView
231      //
232      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
233      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
234      this.Controls.Add(this.splitSlaves);
235      this.Name = "ResourcesView";
236      this.Size = new System.Drawing.Size(853, 553);
237      this.splitSlaves.Panel1.ResumeLayout(false);
238      this.splitSlaves.Panel2.ResumeLayout(false);
239      ((System.ComponentModel.ISupportInitialize)(this.splitSlaves)).EndInit();
240      this.splitSlaves.ResumeLayout(false);
241      this.tabSlaveGroup.ResumeLayout(false);
242      this.tabDetails.ResumeLayout(false);
243      this.tabSchedule.ResumeLayout(false);
244      this.ResumeLayout(false);
245
246    }
247
248    #endregion
249
250    private System.Windows.Forms.SplitContainer splitSlaves;
251    private System.Windows.Forms.Button btnRemoveGroup;
252    private System.Windows.Forms.Button btnAddGroup;
253    private System.Windows.Forms.TreeView treeSlaveGroup;
254    private System.Windows.Forms.TabControl tabSlaveGroup;
255    private System.Windows.Forms.TabPage tabDetails;
256    private System.Windows.Forms.TabPage tabSchedule;
257    private SlaveView slaveView;
258    private System.Windows.Forms.ImageList imageListSlaveGroups;
259    private ScheduleView scheduleView;
260    private UpdateControl updateScheduleControl;
261    private System.Windows.Forms.Button btnSave;
262    private UpdateControl updateSlaveGroup;
263  }
264}
Note: See TracBrowser for help on using the repository browser.