[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 |
|
---|
[16427] | 22 | using System.Windows.Forms;
|
---|
| 23 |
|
---|
[8924] | 24 | namespace HeuristicLab.Clients.Hive.JobManager.Views {
|
---|
[16117] | 25 | partial class HiveProjectSelector {
|
---|
[7910] | 26 | /// <summary>
|
---|
| 27 | /// Required designer variable.
|
---|
| 28 | /// </summary>
|
---|
| 29 | private System.ComponentModel.IContainer components = null;
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Clean up any resources being used.
|
---|
| 33 | /// </summary>
|
---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 35 | protected override void Dispose(bool disposing) {
|
---|
| 36 | if (disposing && (components != null)) {
|
---|
| 37 | components.Dispose();
|
---|
| 38 | }
|
---|
| 39 | base.Dispose(disposing);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | #region Component Designer generated code
|
---|
| 43 |
|
---|
| 44 | /// <summary>
|
---|
| 45 | /// Required method for Designer support - do not modify
|
---|
| 46 | /// the contents of this method with the code editor.
|
---|
| 47 | /// </summary>
|
---|
| 48 | private void InitializeComponent() {
|
---|
| 49 | this.components = new System.ComponentModel.Container();
|
---|
[16117] | 50 | this.projectsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 51 | this.projectsImageList = new System.Windows.Forms.ImageList(this.components);
|
---|
| 52 | this.resourcesImageList = new System.Windows.Forms.ImageList(this.components);
|
---|
[7910] | 53 | this.searchLabel = new System.Windows.Forms.Label();
|
---|
| 54 | this.searchTextBox = new System.Windows.Forms.TextBox();
|
---|
| 55 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[16117] | 56 | this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
---|
| 57 | this.projectsTreeView = new System.Windows.Forms.TreeView();
|
---|
| 58 | this.resourcesTreeView = new HeuristicLab.Clients.Hive.Views.TreeView.NoDoubleClickTreeView();
|
---|
| 59 | this.summaryGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 60 | this.coresLabel = new System.Windows.Forms.Label();
|
---|
| 61 | this.coresSummaryLabel = new System.Windows.Forms.Label();
|
---|
| 62 | this.memoryLabel = new System.Windows.Forms.Label();
|
---|
| 63 | this.memorySummaryLabel = new System.Windows.Forms.Label();
|
---|
| 64 | this.projectsGroupBox.SuspendLayout();
|
---|
| 65 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
---|
| 66 | this.splitContainer2.Panel1.SuspendLayout();
|
---|
| 67 | this.splitContainer2.Panel2.SuspendLayout();
|
---|
| 68 | this.splitContainer2.SuspendLayout();
|
---|
| 69 | this.summaryGroupBox.SuspendLayout();
|
---|
[7910] | 70 | this.SuspendLayout();
|
---|
| 71 | //
|
---|
[16117] | 72 | // projectsGroupBox
|
---|
[7910] | 73 | //
|
---|
[16117] | 74 | this.projectsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 75 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 77 | this.projectsGroupBox.Controls.Add(this.searchLabel);
|
---|
| 78 | this.projectsGroupBox.Controls.Add(this.splitContainer2);
|
---|
| 79 | this.projectsGroupBox.Controls.Add(this.searchTextBox);
|
---|
| 80 | this.projectsGroupBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 81 | this.projectsGroupBox.Name = "projectsGroupBox";
|
---|
| 82 | this.projectsGroupBox.Size = new System.Drawing.Size(426, 461);
|
---|
| 83 | this.projectsGroupBox.TabIndex = 0;
|
---|
| 84 | this.projectsGroupBox.TabStop = false;
|
---|
| 85 | this.projectsGroupBox.Text = "Available Projects";
|
---|
[7910] | 86 | //
|
---|
[16117] | 87 | // projectsImageList
|
---|
[7910] | 88 | //
|
---|
[16117] | 89 | this.projectsImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 90 | this.projectsImageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 91 | this.projectsImageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
[7910] | 92 | //
|
---|
[16117] | 93 | // resourcesImageList
|
---|
[7910] | 94 | //
|
---|
[16117] | 95 | this.resourcesImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 96 | this.resourcesImageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 97 | this.resourcesImageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
[7910] | 98 | //
|
---|
| 99 | // searchLabel
|
---|
| 100 | //
|
---|
| 101 | this.searchLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
|
---|
[16117] | 102 | this.searchLabel.Location = new System.Drawing.Point(6, 19);
|
---|
[7910] | 103 | this.searchLabel.Name = "searchLabel";
|
---|
| 104 | this.searchLabel.Size = new System.Drawing.Size(20, 20);
|
---|
| 105 | this.searchLabel.TabIndex = 0;
|
---|
| 106 | this.toolTip.SetToolTip(this.searchLabel, "Enter string to search for resources");
|
---|
| 107 | //
|
---|
| 108 | // searchTextBox
|
---|
| 109 | //
|
---|
[16117] | 110 | this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7910] | 111 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[16117] | 112 | this.searchTextBox.Location = new System.Drawing.Point(32, 19);
|
---|
[7910] | 113 | this.searchTextBox.Name = "searchTextBox";
|
---|
[16117] | 114 | this.searchTextBox.Size = new System.Drawing.Size(388, 20);
|
---|
[7910] | 115 | this.searchTextBox.TabIndex = 1;
|
---|
| 116 | this.toolTip.SetToolTip(this.searchTextBox, "Enter string to search for resources");
|
---|
| 117 | this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
|
---|
[16427] | 118 | this.searchTextBox.MouseDown += new MouseEventHandler(this.searchTextBox_MouseDown);
|
---|
[7910] | 119 | //
|
---|
[16117] | 120 | // splitContainer2
|
---|
[7910] | 121 | //
|
---|
[16117] | 122 | this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 123 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[7910] | 124 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[16117] | 125 | this.splitContainer2.Location = new System.Drawing.Point(6, 45);
|
---|
| 126 | this.splitContainer2.Name = "splitContainer2";
|
---|
[7910] | 127 | //
|
---|
[16117] | 128 | // splitContainer2.Panel1
|
---|
[7910] | 129 | //
|
---|
[16117] | 130 | this.splitContainer2.Panel1.Controls.Add(this.projectsTreeView);
|
---|
| 131 | //
|
---|
| 132 | // splitContainer2.Panel2
|
---|
| 133 | //
|
---|
| 134 | this.splitContainer2.Panel2.Controls.Add(this.resourcesTreeView);
|
---|
| 135 | this.splitContainer2.Size = new System.Drawing.Size(414, 410);
|
---|
| 136 | this.splitContainer2.SplitterDistance = 204;
|
---|
| 137 | this.splitContainer2.TabIndex = 4;
|
---|
| 138 | //
|
---|
| 139 | // projectsTreeView
|
---|
| 140 | //
|
---|
| 141 | this.projectsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 142 | this.projectsTreeView.HideSelection = false;
|
---|
| 143 | this.projectsTreeView.ImageIndex = 0;
|
---|
| 144 | this.projectsTreeView.ImageList = this.projectsImageList;
|
---|
| 145 | this.projectsTreeView.Location = new System.Drawing.Point(0, 0);
|
---|
| 146 | this.projectsTreeView.Name = "projectsTreeView";
|
---|
| 147 | this.projectsTreeView.SelectedImageIndex = 0;
|
---|
| 148 | this.projectsTreeView.ShowNodeToolTips = true;
|
---|
| 149 | this.projectsTreeView.Size = new System.Drawing.Size(204, 410);
|
---|
| 150 | this.projectsTreeView.TabIndex = 3;
|
---|
[16427] | 151 | this.projectsTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.projectsTreeView_MouseDown);
|
---|
[16117] | 152 | this.projectsTreeView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.projectsTreeView_MouseDoubleClick);
|
---|
| 153 | this.projectsTreeView.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.projectsTreeView_BeforeSelect);
|
---|
| 154 | this.projectsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.projectsTreeView_AfterSelect);
|
---|
| 155 | //
|
---|
| 156 | // resourcesTreeView
|
---|
| 157 | //
|
---|
| 158 | this.resourcesTreeView.CheckBoxes = true;
|
---|
| 159 | this.resourcesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 160 | this.resourcesTreeView.ImageIndex = 0;
|
---|
| 161 | this.resourcesTreeView.ImageList = this.resourcesImageList;
|
---|
| 162 | this.resourcesTreeView.Location = new System.Drawing.Point(0, 0);
|
---|
| 163 | this.resourcesTreeView.Name = "resourcesTreeView";
|
---|
| 164 | this.resourcesTreeView.SelectedImageIndex = 0;
|
---|
| 165 | this.resourcesTreeView.Size = new System.Drawing.Size(206, 410);
|
---|
| 166 | this.resourcesTreeView.TabIndex = 0;
|
---|
| 167 | this.resourcesTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.resourcesTreeView_NodeMouseDoubleClick);
|
---|
| 168 | this.resourcesTreeView.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.resourcesTreeView_BeforeCheck);
|
---|
| 169 | this.resourcesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.resourcesTreeView_AfterCheck);
|
---|
| 170 | this.resourcesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.resourcesTreeView_MouseDown);
|
---|
| 171 | this.resourcesTreeView.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.resourcesTreeView_BeforeSelect);
|
---|
| 172 | //
|
---|
| 173 | // summaryGroupBox
|
---|
| 174 | //
|
---|
| 175 | this.summaryGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 176 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 177 | this.summaryGroupBox.Controls.Add(this.memorySummaryLabel);
|
---|
| 178 | this.summaryGroupBox.Controls.Add(this.memoryLabel);
|
---|
| 179 | this.summaryGroupBox.Controls.Add(this.coresSummaryLabel);
|
---|
| 180 | this.summaryGroupBox.Controls.Add(this.coresLabel);
|
---|
| 181 | this.summaryGroupBox.Location = new System.Drawing.Point(3, 470);
|
---|
| 182 | this.summaryGroupBox.Name = "summaryGroupBox";
|
---|
| 183 | this.summaryGroupBox.Size = new System.Drawing.Size(426, 71);
|
---|
| 184 | this.summaryGroupBox.TabIndex = 1;
|
---|
| 185 | this.summaryGroupBox.TabStop = false;
|
---|
| 186 | this.summaryGroupBox.Text = "Computing Resources";
|
---|
| 187 | //
|
---|
| 188 | // coresLabel
|
---|
| 189 | //
|
---|
| 190 | this.coresLabel.AutoSize = true;
|
---|
| 191 | this.coresLabel.Location = new System.Drawing.Point(6, 22);
|
---|
| 192 | this.coresLabel.Name = "coresLabel";
|
---|
| 193 | this.coresLabel.Size = new System.Drawing.Size(37, 13);
|
---|
| 194 | this.coresLabel.TabIndex = 1;
|
---|
| 195 | this.coresLabel.Text = "Cores:";
|
---|
| 196 | //
|
---|
| 197 | // coresSummaryLabel
|
---|
| 198 | //
|
---|
| 199 | this.coresSummaryLabel.AutoSize = true;
|
---|
| 200 | this.coresSummaryLabel.Location = new System.Drawing.Point(59, 22);
|
---|
| 201 | this.coresSummaryLabel.Name = "coresSummaryLabel";
|
---|
| 202 | this.coresSummaryLabel.Size = new System.Drawing.Size(124, 13);
|
---|
| 203 | this.coresSummaryLabel.TabIndex = 5;
|
---|
| 204 | this.coresSummaryLabel.Text = "0 Total (0 Free / 0 Used)";
|
---|
| 205 | //
|
---|
| 206 | // memoryLabel
|
---|
| 207 | //
|
---|
| 208 | this.memoryLabel.AutoSize = true;
|
---|
| 209 | this.memoryLabel.Location = new System.Drawing.Point(6, 48);
|
---|
| 210 | this.memoryLabel.Name = "memoryLabel";
|
---|
| 211 | this.memoryLabel.Size = new System.Drawing.Size(47, 13);
|
---|
| 212 | this.memoryLabel.TabIndex = 7;
|
---|
| 213 | this.memoryLabel.Text = "Memory:";
|
---|
| 214 | //
|
---|
| 215 | // memorySummaryLabel
|
---|
| 216 | //
|
---|
| 217 | this.memorySummaryLabel.AutoSize = true;
|
---|
| 218 | this.memorySummaryLabel.Location = new System.Drawing.Point(59, 48);
|
---|
| 219 | this.memorySummaryLabel.Name = "memorySummaryLabel";
|
---|
| 220 | this.memorySummaryLabel.Size = new System.Drawing.Size(223, 13);
|
---|
| 221 | this.memorySummaryLabel.TabIndex = 8;
|
---|
| 222 | this.memorySummaryLabel.Text = "0.00 GB Total (0.00 GB Free / 0.00 GB Used)";
|
---|
| 223 | //
|
---|
| 224 | // HiveProjectSelector
|
---|
| 225 | //
|
---|
[7967] | 226 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[16117] | 227 | this.Controls.Add(this.summaryGroupBox);
|
---|
| 228 | this.Controls.Add(this.projectsGroupBox);
|
---|
| 229 | this.Name = "HiveProjectSelector";
|
---|
| 230 | this.Size = new System.Drawing.Size(432, 544);
|
---|
| 231 | this.Load += new System.EventHandler(this.HiveProjectSelector_Load);
|
---|
| 232 | this.projectsGroupBox.ResumeLayout(false);
|
---|
| 233 | this.projectsGroupBox.PerformLayout();
|
---|
| 234 | this.splitContainer2.Panel1.ResumeLayout(false);
|
---|
| 235 | this.splitContainer2.Panel2.ResumeLayout(false);
|
---|
| 236 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
---|
| 237 | this.splitContainer2.ResumeLayout(false);
|
---|
| 238 | this.summaryGroupBox.ResumeLayout(false);
|
---|
| 239 | this.summaryGroupBox.PerformLayout();
|
---|
[7910] | 240 | this.ResumeLayout(false);
|
---|
| 241 |
|
---|
| 242 | }
|
---|
| 243 |
|
---|
| 244 | #endregion
|
---|
| 245 |
|
---|
[16117] | 246 | protected System.Windows.Forms.GroupBox projectsGroupBox;
|
---|
[7910] | 247 | protected System.Windows.Forms.Label searchLabel;
|
---|
| 248 | protected System.Windows.Forms.TextBox searchTextBox;
|
---|
[16117] | 249 | protected System.Windows.Forms.ImageList projectsImageList;
|
---|
[7910] | 250 | protected System.Windows.Forms.ToolTip toolTip;
|
---|
[16117] | 251 | private System.Windows.Forms.ImageList resourcesImageList;
|
---|
| 252 | private System.Windows.Forms.SplitContainer splitContainer2;
|
---|
| 253 | protected System.Windows.Forms.TreeView projectsTreeView;
|
---|
| 254 | protected HeuristicLab.Clients.Hive.Views.TreeView.NoDoubleClickTreeView resourcesTreeView;
|
---|
| 255 | private System.Windows.Forms.GroupBox summaryGroupBox;
|
---|
| 256 | protected System.Windows.Forms.Label coresLabel;
|
---|
| 257 | protected System.Windows.Forms.Label memorySummaryLabel;
|
---|
| 258 | protected System.Windows.Forms.Label memoryLabel;
|
---|
| 259 | protected System.Windows.Forms.Label coresSummaryLabel;
|
---|
[7910] | 260 | }
|
---|
| 261 | }
|
---|