Changeset 6791 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.3/Views/RefreshableHiveExperimentView.Designer.cs
- Timestamp:
- 09/16/11 20:19:53 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.3/Views/RefreshableHiveExperimentView.Designer.cs
r6727 r6791 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 22 using HeuristicLab.Clients.Hive.Views.ExperimentManager; 23 using HeuristicLab.MainForm.WindowsForms; 24 namespace HeuristicLab.Clients.Hive.ExperimentManager.Views { 1 namespace HeuristicLab.Clients.Hive.ExperimentManager.Views { 25 2 partial class RefreshableHiveExperimentView { 26 3 /// <summary> … … 50 27 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RefreshableHiveExperimentView)); 51 28 this.tabControl = new System.Windows.Forms.TabControl(); 52 this. jobsTabPage = new System.Windows.Forms.TabPage();29 this.tasksTabPage = new System.Windows.Forms.TabPage(); 53 30 this.jobsTreeView = new HeuristicLab.Clients.Hive.Views.ExperimentManager.HiveTaskItemTreeView(); 31 this.permissionTabPage = new System.Windows.Forms.TabPage(); 32 this.refreshPermissionsButton = new System.Windows.Forms.Button(); 33 this.hiveExperimentPermissionListView = new HeuristicLab.Clients.Hive.ExperimentManager.Views.HiveExperimentPermissionListView(); 34 this.runsTabPage = new System.Windows.Forms.TabPage(); 54 35 this.stateTabPage = new System.Windows.Forms.TabPage(); 55 36 this.stateLogViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 56 this.sharingTabPage = new System.Windows.Forms.TabPage();57 this.refreshPermissionsButton = new System.Windows.Forms.Button();58 this.hiveExperimentPermissionListView = new HeuristicLab.Clients.Hive.ExperimentManager.Views.HiveExperimentPermissionListView();59 37 this.logTabPage = new System.Windows.Forms.TabPage(); 60 38 this.logView = new HeuristicLab.Core.Views.LogView(); … … 81 59 this.jobsLabel = new System.Windows.Forms.Label(); 82 60 this.tabControl.SuspendLayout(); 83 this.jobsTabPage.SuspendLayout(); 61 this.tasksTabPage.SuspendLayout(); 62 this.permissionTabPage.SuspendLayout(); 84 63 this.stateTabPage.SuspendLayout(); 85 this.sharingTabPage.SuspendLayout();86 64 this.logTabPage.SuspendLayout(); 87 65 this.infoGroupBox.SuspendLayout(); … … 93 71 | System.Windows.Forms.AnchorStyles.Left) 94 72 | System.Windows.Forms.AnchorStyles.Right))); 95 this.tabControl.Controls.Add(this.jobsTabPage); 73 this.tabControl.Controls.Add(this.tasksTabPage); 74 this.tabControl.Controls.Add(this.permissionTabPage); 75 this.tabControl.Controls.Add(this.runsTabPage); 96 76 this.tabControl.Controls.Add(this.stateTabPage); 97 this.tabControl.Controls.Add(this.sharingTabPage);98 77 this.tabControl.Controls.Add(this.logTabPage); 99 78 this.tabControl.Location = new System.Drawing.Point(0, 78); … … 104 83 this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged); 105 84 // 106 // jobsTabPage107 // 108 this. jobsTabPage.Controls.Add(this.jobsTreeView);109 this. jobsTabPage.Location = new System.Drawing.Point(4, 22);110 this. jobsTabPage.Name = "jobsTabPage";111 this. jobsTabPage.Size = new System.Drawing.Size(709, 426);112 this. jobsTabPage.TabIndex = 5;113 this. jobsTabPage.Text = "Jobs";114 this. jobsTabPage.UseVisualStyleBackColor = true;85 // tasksTabPage 86 // 87 this.tasksTabPage.Controls.Add(this.jobsTreeView); 88 this.tasksTabPage.Location = new System.Drawing.Point(4, 22); 89 this.tasksTabPage.Name = "tasksTabPage"; 90 this.tasksTabPage.Size = new System.Drawing.Size(709, 426); 91 this.tasksTabPage.TabIndex = 5; 92 this.tasksTabPage.Text = "Tasks"; 93 this.tasksTabPage.UseVisualStyleBackColor = true; 115 94 // 116 95 // jobsTreeView … … 131 110 this.jobsTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.jobsTreeView_DragOver); 132 111 // 133 // stateTabPage 134 // 135 this.stateTabPage.Controls.Add(this.stateLogViewHost); 136 this.stateTabPage.Location = new System.Drawing.Point(4, 22); 137 this.stateTabPage.Name = "stateTabPage"; 138 this.stateTabPage.Size = new System.Drawing.Size(709, 426); 139 this.stateTabPage.TabIndex = 6; 140 this.stateTabPage.Text = "States"; 141 this.stateTabPage.UseVisualStyleBackColor = true; 142 // 143 // stateLogViewHost 144 // 145 this.stateLogViewHost.Caption = "StateLog View"; 146 this.stateLogViewHost.Content = null; 147 this.stateLogViewHost.Dock = System.Windows.Forms.DockStyle.Fill; 148 this.stateLogViewHost.Enabled = false; 149 this.stateLogViewHost.Location = new System.Drawing.Point(0, 0); 150 this.stateLogViewHost.Name = "stateLogViewHost"; 151 this.stateLogViewHost.ReadOnly = false; 152 this.stateLogViewHost.Size = new System.Drawing.Size(709, 426); 153 this.stateLogViewHost.TabIndex = 0; 154 this.stateLogViewHost.ViewsLabelVisible = true; 155 this.stateLogViewHost.ViewType = null; 156 // 157 // sharingTabPage 158 // 159 this.sharingTabPage.Controls.Add(this.refreshPermissionsButton); 160 this.sharingTabPage.Controls.Add(this.hiveExperimentPermissionListView); 161 this.sharingTabPage.Location = new System.Drawing.Point(4, 22); 162 this.sharingTabPage.Name = "sharingTabPage"; 163 this.sharingTabPage.Size = new System.Drawing.Size(709, 426); 164 this.sharingTabPage.TabIndex = 7; 165 this.sharingTabPage.Text = "Sharing"; 166 this.sharingTabPage.UseVisualStyleBackColor = true; 112 // permissionTabPage 113 // 114 this.permissionTabPage.Controls.Add(this.refreshPermissionsButton); 115 this.permissionTabPage.Controls.Add(this.hiveExperimentPermissionListView); 116 this.permissionTabPage.Location = new System.Drawing.Point(4, 22); 117 this.permissionTabPage.Name = "permissionTabPage"; 118 this.permissionTabPage.Size = new System.Drawing.Size(709, 426); 119 this.permissionTabPage.TabIndex = 7; 120 this.permissionTabPage.Text = "Permissions"; 121 this.permissionTabPage.UseVisualStyleBackColor = true; 167 122 // 168 123 // refreshPermissionsButton … … 188 143 this.hiveExperimentPermissionListView.Name = "hiveExperimentPermissionListView"; 189 144 this.hiveExperimentPermissionListView.ReadOnly = false; 145 this.hiveExperimentPermissionListView.ShowDetails = true; 190 146 this.hiveExperimentPermissionListView.Size = new System.Drawing.Size(703, 390); 191 147 this.hiveExperimentPermissionListView.TabIndex = 0; 148 // 149 // runsTabPage 150 // 151 this.runsTabPage.Location = new System.Drawing.Point(4, 22); 152 this.runsTabPage.Name = "runsTabPage"; 153 this.runsTabPage.Padding = new System.Windows.Forms.Padding(3); 154 this.runsTabPage.Size = new System.Drawing.Size(709, 426); 155 this.runsTabPage.TabIndex = 8; 156 this.runsTabPage.Text = "Runs"; 157 this.runsTabPage.UseVisualStyleBackColor = true; 158 // 159 // stateTabPage 160 // 161 this.stateTabPage.Controls.Add(this.stateLogViewHost); 162 this.stateTabPage.Location = new System.Drawing.Point(4, 22); 163 this.stateTabPage.Name = "stateTabPage"; 164 this.stateTabPage.Size = new System.Drawing.Size(709, 426); 165 this.stateTabPage.TabIndex = 6; 166 this.stateTabPage.Text = "Execution History"; 167 this.stateTabPage.UseVisualStyleBackColor = true; 168 // 169 // stateLogViewHost 170 // 171 this.stateLogViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 172 | System.Windows.Forms.AnchorStyles.Left) 173 | System.Windows.Forms.AnchorStyles.Right))); 174 this.stateLogViewHost.Caption = "StateLog View"; 175 this.stateLogViewHost.Content = null; 176 this.stateLogViewHost.Enabled = false; 177 this.stateLogViewHost.Location = new System.Drawing.Point(3, 3); 178 this.stateLogViewHost.Name = "stateLogViewHost"; 179 this.stateLogViewHost.ReadOnly = false; 180 this.stateLogViewHost.Size = new System.Drawing.Size(703, 420); 181 this.stateLogViewHost.TabIndex = 0; 182 this.stateLogViewHost.ViewsLabelVisible = true; 183 this.stateLogViewHost.ViewType = null; 192 184 // 193 185 // logTabPage … … 203 195 // logView 204 196 // 197 this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 198 | System.Windows.Forms.AnchorStyles.Left) 199 | System.Windows.Forms.AnchorStyles.Right))); 205 200 this.logView.Caption = "Log View"; 206 201 this.logView.Content = null; 207 this.logView.Dock = System.Windows.Forms.DockStyle.Fill; 208 this.logView.Location = new System.Drawing.Point(0, 0); 202 this.logView.Location = new System.Drawing.Point(3, 3); 209 203 this.logView.Name = "logView"; 210 204 this.logView.ReadOnly = false; 211 this.logView.Size = new System.Drawing.Size(70 9, 426);205 this.logView.Size = new System.Drawing.Size(703, 420); 212 206 this.logView.TabIndex = 0; 213 207 // … … 284 278 // 285 279 this.resourceIdsLabel.AutoSize = true; 286 this.resourceIdsLabel.Location = new System.Drawing.Point( 4, 56);280 this.resourceIdsLabel.Location = new System.Drawing.Point(3, 56); 287 281 this.resourceIdsLabel.Name = "resourceIdsLabel"; 288 this.resourceIdsLabel.Size = new System.Drawing.Size( 70, 13);282 this.resourceIdsLabel.Size = new System.Drawing.Size(61, 13); 289 283 this.resourceIdsLabel.TabIndex = 12; 290 this.resourceIdsLabel.Text = "Resource Ids:";284 this.resourceIdsLabel.Text = "Resources:"; 291 285 // 292 286 // resourceNamesTextBox … … 294 288 this.resourceNamesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 295 289 | System.Windows.Forms.AnchorStyles.Right))); 296 this.resourceNamesTextBox.Location = new System.Drawing.Point(7 3, 53);290 this.resourceNamesTextBox.Location = new System.Drawing.Point(70, 52); 297 291 this.resourceNamesTextBox.Name = "resourceNamesTextBox"; 298 292 this.resourceNamesTextBox.Size = new System.Drawing.Size(415, 20); … … 303 297 // 304 298 this.nameLabel.AutoSize = true; 305 this.nameLabel.Location = new System.Drawing.Point( 1, 27);299 this.nameLabel.Location = new System.Drawing.Point(3, 30); 306 300 this.nameLabel.Name = "nameLabel"; 307 301 this.nameLabel.Size = new System.Drawing.Size(38, 13); … … 313 307 this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 314 308 | System.Windows.Forms.AnchorStyles.Right))); 315 this.nameTextBox.Location = new System.Drawing.Point(7 3, 27);309 this.nameTextBox.Location = new System.Drawing.Point(70, 27); 316 310 this.nameTextBox.Name = "nameTextBox"; 317 311 this.nameTextBox.Size = new System.Drawing.Size(501, 20); … … 334 328 this.isPrivilegedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 335 329 this.isPrivilegedCheckBox.AutoSize = true; 336 this.isPrivilegedCheckBox.Location = new System.Drawing.Point(49 4, 55);330 this.isPrivilegedCheckBox.Location = new System.Drawing.Point(491, 53); 337 331 this.isPrivilegedCheckBox.Name = "isPrivilegedCheckBox"; 338 this.isPrivilegedCheckBox.Size = new System.Drawing.Size( 80, 17);332 this.isPrivilegedCheckBox.Size = new System.Drawing.Size(72, 17); 339 333 this.isPrivilegedCheckBox.TabIndex = 26; 340 this.isPrivilegedCheckBox.Text = " IsPrivileged";334 this.isPrivilegedCheckBox.Text = "Privileged"; 341 335 this.toolTip.SetToolTip(this.isPrivilegedCheckBox, "If checked, the task will be executed in a privileged sandbox on the slave."); 342 336 this.isPrivilegedCheckBox.UseVisualStyleBackColor = true; … … 348 342 this.refreshAutomaticallyCheckBox.Location = new System.Drawing.Point(30, 5); 349 343 this.refreshAutomaticallyCheckBox.Name = "refreshAutomaticallyCheckBox"; 350 this.refreshAutomaticallyCheckBox.Size = new System.Drawing.Size(12 8, 17);344 this.refreshAutomaticallyCheckBox.Size = new System.Drawing.Size(127, 17); 351 345 this.refreshAutomaticallyCheckBox.TabIndex = 24; 352 this.refreshAutomaticallyCheckBox.Text = "&Refresh Automatically";346 this.refreshAutomaticallyCheckBox.Text = "&Refresh automatically"; 353 347 this.refreshAutomaticallyCheckBox.UseVisualStyleBackColor = true; 354 348 this.refreshAutomaticallyCheckBox.Validated += new System.EventHandler(this.refreshAutomaticallyCheckBox_Validated); … … 368 362 this.infoGroupBox.TabIndex = 25; 369 363 this.infoGroupBox.TabStop = false; 370 this.infoGroupBox.Text = " Info";364 this.infoGroupBox.Text = "Tasks"; 371 365 // 372 366 // finishedTextBox … … 420 414 this.jobsLabel.Location = new System.Drawing.Point(6, 19); 421 415 this.jobsLabel.Name = "jobsLabel"; 422 this.jobsLabel.Size = new System.Drawing.Size( 32, 13);416 this.jobsLabel.Size = new System.Drawing.Size(46, 13); 423 417 this.jobsLabel.TabIndex = 0; 424 this.jobsLabel.Text = " Jobs:";418 this.jobsLabel.Text = "Waiting:"; 425 419 // 426 420 // RefreshableHiveExperimentView … … 446 440 this.Size = new System.Drawing.Size(717, 560); 447 441 this.tabControl.ResumeLayout(false); 448 this.jobsTabPage.ResumeLayout(false); 442 this.tasksTabPage.ResumeLayout(false); 443 this.permissionTabPage.ResumeLayout(false); 449 444 this.stateTabPage.ResumeLayout(false); 450 this.sharingTabPage.ResumeLayout(false);451 445 this.logTabPage.ResumeLayout(false); 452 446 this.infoGroupBox.ResumeLayout(false); … … 469 463 private System.Windows.Forms.TabPage logTabPage; 470 464 private Core.Views.LogView logView; 471 private System.Windows.Forms.TabPage jobsTabPage;472 private H iveTaskItemTreeView jobsTreeView;465 private System.Windows.Forms.TabPage tasksTabPage; 466 private HeuristicLab.Clients.Hive.Views.ExperimentManager.HiveTaskItemTreeView jobsTreeView; 473 467 private System.Windows.Forms.Label nameLabel; 474 468 private System.Windows.Forms.TextBox nameTextBox; … … 485 479 private System.Windows.Forms.CheckBox isPrivilegedCheckBox; 486 480 private System.Windows.Forms.TabPage stateTabPage; 487 private ViewHost stateLogViewHost;488 private System.Windows.Forms.TabPage sharingTabPage;481 private HeuristicLab.MainForm.WindowsForms.ViewHost stateLogViewHost; 482 private System.Windows.Forms.TabPage permissionTabPage; 489 483 private HiveExperimentPermissionListView hiveExperimentPermissionListView; 490 484 private System.Windows.Forms.Button refreshPermissionsButton; 485 private System.Windows.Forms.TabPage runsTabPage; 491 486 492 487 }
Note: See TracChangeset
for help on using the changeset viewer.