Changeset 4144 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
- Timestamp:
- 08/04/10 14:34:40 (14 years ago)
- Location:
- branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HeuristicLab.Hive.Experiment.Views-3.3.csproj
r4133 r4144 67 67 <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll</HintPath> 68 68 </Reference> 69 <Reference Include="HeuristicLab.Core.Views-3.3"> 70 <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.Core.Views-3.3.dll</HintPath> 71 </Reference> 69 <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 72 70 <Reference Include="HeuristicLab.Data-3.3"> 73 71 <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.Data-3.3.dll</HintPath> -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.Designer.cs
r4133 r4144 48 48 this.tabControl = new System.Windows.Forms.TabControl(); 49 49 this.experimentTabPage = new System.Windows.Forms.TabPage(); 50 this.openExperimentButton = new System.Windows.Forms.Button(); 51 this.newExperimentButton = new System.Windows.Forms.Button(); 50 52 this.experimentNamedItemView = new HeuristicLab.Core.Views.NamedItemView(); 51 this.newExperimentButton = new System.Windows.Forms.Button(); 52 this.openExperimentButton = new System.Windows.Forms.Button(); 53 this.loadExperimentButton = new System.Windows.Forms.Button(); 53 this.viewExperimentButton = new System.Windows.Forms.Button(); 54 54 this.hiveStatusTabPage = new System.Windows.Forms.TabPage(); 55 55 this.jobListView = new HeuristicLab.Hive.Experiment.Views.JobItemListView(); … … 68 68 this.disconnectButton = new System.Windows.Forms.Button(); 69 69 this.reconnectButton = new System.Windows.Forms.Button(); 70 this.runsTabPage = new System.Windows.Forms.TabPage(); 71 this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView(); 70 72 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 71 73 this.tabControl.SuspendLayout(); … … 73 75 this.hiveStatusTabPage.SuspendLayout(); 74 76 this.logTabPage.SuspendLayout(); 77 this.runsTabPage.SuspendLayout(); 75 78 this.SuspendLayout(); 76 79 // … … 92 95 this.tabControl.Controls.Add(this.experimentTabPage); 93 96 this.tabControl.Controls.Add(this.hiveStatusTabPage); 97 this.tabControl.Controls.Add(this.runsTabPage); 94 98 this.tabControl.Controls.Add(this.logTabPage); 95 99 this.tabControl.Location = new System.Drawing.Point(0, 99); … … 101 105 // experimentTabPage 102 106 // 107 this.experimentTabPage.Controls.Add(this.openExperimentButton); 108 this.experimentTabPage.Controls.Add(this.newExperimentButton); 103 109 this.experimentTabPage.Controls.Add(this.experimentNamedItemView); 104 this.experimentTabPage.Controls.Add(this.newExperimentButton); 105 this.experimentTabPage.Controls.Add(this.openExperimentButton); 106 this.experimentTabPage.Controls.Add(this.loadExperimentButton); 110 this.experimentTabPage.Controls.Add(this.viewExperimentButton); 107 111 this.experimentTabPage.Location = new System.Drawing.Point(4, 22); 108 112 this.experimentTabPage.Name = "experimentTabPage"; … … 113 117 this.experimentTabPage.UseVisualStyleBackColor = true; 114 118 // 119 // openExperimentButton 120 // 121 this.openExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("openExperimentButton.Image"))); 122 this.openExperimentButton.Location = new System.Drawing.Point(36, 6); 123 this.openExperimentButton.Name = "openExperimentButton"; 124 this.openExperimentButton.Size = new System.Drawing.Size(24, 24); 125 this.openExperimentButton.TabIndex = 5; 126 this.toolTip.SetToolTip(this.openExperimentButton, "Open Experiment"); 127 this.openExperimentButton.UseVisualStyleBackColor = true; 128 this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click); 129 // 130 // newExperimentButton 131 // 132 this.newExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("newExperimentButton.Image"))); 133 this.newExperimentButton.Location = new System.Drawing.Point(6, 6); 134 this.newExperimentButton.Name = "newExperimentButton"; 135 this.newExperimentButton.Size = new System.Drawing.Size(24, 24); 136 this.newExperimentButton.TabIndex = 4; 137 this.toolTip.SetToolTip(this.newExperimentButton, "New Experiment"); 138 this.newExperimentButton.UseVisualStyleBackColor = true; 139 this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click); 140 // 115 141 // experimentNamedItemView 116 142 // … … 119 145 this.experimentNamedItemView.Caption = "NamedItem View"; 120 146 this.experimentNamedItemView.Content = null; 121 this.experimentNamedItemView.Location = new System.Drawing.Point( 144, 7);147 this.experimentNamedItemView.Location = new System.Drawing.Point(3, 36); 122 148 this.experimentNamedItemView.Name = "experimentNamedItemView"; 123 149 this.experimentNamedItemView.ReadOnly = false; 124 this.experimentNamedItemView.Size = new System.Drawing.Size( 577, 52);150 this.experimentNamedItemView.Size = new System.Drawing.Size(721, 52); 125 151 this.experimentNamedItemView.TabIndex = 3; 126 152 // 127 // newExperimentButton 128 // 129 this.newExperimentButton.Location = new System.Drawing.Point(6, 6); 130 this.newExperimentButton.Name = "newExperimentButton"; 131 this.newExperimentButton.Size = new System.Drawing.Size(131, 32); 132 this.newExperimentButton.TabIndex = 2; 133 this.newExperimentButton.Text = "New Experiment"; 134 this.newExperimentButton.UseVisualStyleBackColor = true; 135 this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click); 136 // 137 // openExperimentButton 138 // 139 this.openExperimentButton.Location = new System.Drawing.Point(6, 82); 140 this.openExperimentButton.Name = "openExperimentButton"; 141 this.openExperimentButton.Size = new System.Drawing.Size(131, 32); 142 this.openExperimentButton.TabIndex = 1; 143 this.openExperimentButton.Text = "Open Experiment"; 144 this.openExperimentButton.UseVisualStyleBackColor = true; 145 this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click); 146 // 147 // loadExperimentButton 148 // 149 this.loadExperimentButton.Location = new System.Drawing.Point(6, 44); 150 this.loadExperimentButton.Name = "loadExperimentButton"; 151 this.loadExperimentButton.Size = new System.Drawing.Size(131, 32); 152 this.loadExperimentButton.TabIndex = 0; 153 this.loadExperimentButton.Text = "Load Experiment"; 154 this.loadExperimentButton.UseVisualStyleBackColor = true; 155 this.loadExperimentButton.Click += new System.EventHandler(this.loadExperimentButton_Click); 153 // viewExperimentButton 154 // 155 this.viewExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 156 | System.Windows.Forms.AnchorStyles.Right))); 157 this.viewExperimentButton.Location = new System.Drawing.Point(0, 94); 158 this.viewExperimentButton.Name = "viewExperimentButton"; 159 this.viewExperimentButton.Size = new System.Drawing.Size(727, 23); 160 this.viewExperimentButton.TabIndex = 1; 161 this.viewExperimentButton.Text = "&Show Experiment"; 162 this.viewExperimentButton.UseVisualStyleBackColor = true; 163 this.viewExperimentButton.Click += new System.EventHandler(this.showExperimentButton_Click); 156 164 // 157 165 // hiveStatusTabPage … … 335 343 this.reconnectButton.UseVisualStyleBackColor = true; 336 344 this.reconnectButton.Click += new System.EventHandler(this.reconnectButton_Click); 345 // 346 // runsTabPage 347 // 348 this.runsTabPage.Controls.Add(this.runCollectionView); 349 this.runsTabPage.Location = new System.Drawing.Point(4, 22); 350 this.runsTabPage.Name = "runsTabPage"; 351 this.runsTabPage.Size = new System.Drawing.Size(727, 369); 352 this.runsTabPage.TabIndex = 4; 353 this.runsTabPage.Text = "Runs"; 354 this.runsTabPage.UseVisualStyleBackColor = true; 355 // 356 // runCollectionView 357 // 358 this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 359 | System.Windows.Forms.AnchorStyles.Left) 360 | System.Windows.Forms.AnchorStyles.Right))); 361 this.runCollectionView.Caption = "RunCollection View"; 362 this.runCollectionView.Content = null; 363 this.runCollectionView.Location = new System.Drawing.Point(0, 3); 364 this.runCollectionView.Name = "runCollectionView"; 365 this.runCollectionView.ReadOnly = false; 366 this.runCollectionView.Size = new System.Drawing.Size(727, 366); 367 this.runCollectionView.TabIndex = 0; 337 368 // 338 369 // HiveExperimentView … … 363 394 this.Controls.SetChildIndex(this.startButton, 0); 364 395 this.Controls.SetChildIndex(this.tabControl, 0); 365 this.Controls.SetChildIndex(this.nameLabel, 0);366 this.Controls.SetChildIndex(this.descriptionLabel, 0);367 this.Controls.SetChildIndex(this.nameTextBox, 0);368 this.Controls.SetChildIndex(this.descriptionTextBox, 0);369 396 this.Controls.SetChildIndex(this.resourceIdsLabel, 0); 370 397 this.Controls.SetChildIndex(this.serverUrlTextBox, 0); … … 372 399 this.Controls.SetChildIndex(this.disconnectButton, 0); 373 400 this.Controls.SetChildIndex(this.reconnectButton, 0); 401 this.Controls.SetChildIndex(this.nameLabel, 0); 402 this.Controls.SetChildIndex(this.descriptionLabel, 0); 403 this.Controls.SetChildIndex(this.nameTextBox, 0); 404 this.Controls.SetChildIndex(this.descriptionTextBox, 0); 374 405 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); 375 406 this.tabControl.ResumeLayout(false); … … 377 408 this.hiveStatusTabPage.ResumeLayout(false); 378 409 this.logTabPage.ResumeLayout(false); 410 this.runsTabPage.ResumeLayout(false); 379 411 this.ResumeLayout(false); 380 412 this.PerformLayout(); … … 396 428 private System.Windows.Forms.TextBox serverUrlTextBox; 397 429 private System.Windows.Forms.TextBox resourceIdsTextBox; 398 private System.Windows.Forms.Button newExperimentButton; 399 private System.Windows.Forms.Button openExperimentButton; 400 private System.Windows.Forms.Button loadExperimentButton; 430 private System.Windows.Forms.Button viewExperimentButton; 401 431 private Core.Views.NamedItemView experimentNamedItemView; 402 432 private System.Windows.Forms.TabPage logTabPage; … … 405 435 private System.Windows.Forms.Button disconnectButton; 406 436 private System.Windows.Forms.Button reconnectButton; 437 protected System.Windows.Forms.Button openExperimentButton; 438 protected System.Windows.Forms.Button newExperimentButton; 439 private System.Windows.Forms.TabPage runsTabPage; 440 private Optimization.Views.RunCollectionView runCollectionView; 407 441 408 442 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.cs
r4133 r4144 86 86 logView.Content = Content.Log; 87 87 jobListView.Content = Content.JobItems; 88 Content_ExperimentChanged(this, EventArgs.Empty); 88 89 } 89 90 } … … 93 94 executionTimeTextBox.Enabled = Content != null; 94 95 if (Content != null) { 95 openExperimentButton.Enabled = Content.Experiment != null;96 viewExperimentButton.Enabled = Content.Experiment != null; 96 97 experimentNamedItemView.Locked = Content.Experiment == null; 97 98 } … … 107 108 experimentNamedItemView.Content = Content.Experiment; 108 109 if (Content.Experiment != null) { 110 runCollectionView.Content = Content.Experiment.Runs; 109 111 Content.Prepare(); 110 112 } … … 210 212 } 211 213 212 private void loadExperimentButton_Click(object sender, EventArgs e) {214 private void openExperimentButton_Click(object sender, EventArgs e) { 213 215 OpenFileDialog openFileDialog = new OpenFileDialog(); 214 216 openFileDialog.Title = "Open Experimenter"; … … 223 225 } 224 226 225 private void openExperimentButton_Click(object sender, EventArgs e) {227 private void showExperimentButton_Click(object sender, EventArgs e) { 226 228 MainFormManager.MainForm.ShowContent(Content.Experiment); 227 229 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.resx
r4133 r4144 121 121 <value>102, 17</value> 122 122 </metadata> 123 <metadata name="errorProvider.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">124 <value>102, 17</value>125 </metadata>126 123 <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 127 124 <value>17, 17</value> 128 125 </metadata> 129 126 <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> 127 <data name="openExperimentButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> 128 <value> 129 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 130 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALDQAA 131 Cw0B7QfALAAAAn9JREFUOE+lk2tI01EYxhf0oU8WqVEIRpaIBWJgSPUhROmippS3QkkTylsXDMW8ts3b 132 1G06daVibuqaOq0sxbBCKBSJ0PJCialZUFSKqaGSt1//TbIsww8deOBwznl+5zkv71kHiP5rGAFrKb1Q 133 5ypR6bmaVU6m2kCiXJv007Om2XgwJEaNT4QiyDi/GF9mKRVgsWkav+CYQkR1utwAQfypphqZ4l/JIhOL 134 jvtGKfCOyDMB6O/WMjNea9L3MT1zIxoM5QrqdWnS1SA+kUq8w1V4hhUgqq1QMj1WtcK88KmIud5oqsqy 135 qCzOQFMopSQvhRvyBApkcQLzV91E1docpr9ol29eFMz0J0Bv2Kr6C3CrVMa3jyWm2EZzc12OSQ8M2TTo 136 ZdytzMCgSUVfIqFcfY2bqiSKlQmoc+JNaUSVJRlMvsvHGHuoVUx9lZKFIQkMp63UW2FtMBH6YuBVFF01 137 /lwO9aoQadSpTAxkwXs596oVtD+ULx36/Qkvg6HDl/k2D2YeufCmwoELZ45MCIA9olKVmK+vJQy3JVOv 138 l7M4KIae8CVAV6hgPMV8uxczLYeZbDrIaN1eJBG2nHazyDN1cZEymdHueG7rcuh8KiTpixYA56AziMVn 139 J5h9coyp5kOM1TvxudqejvRNBHrY4GRnZmcCqLMT6GlJ4Y4uGwZS4IUQ97kfs62eTD12YbzBmRGDAx+0 140 u+iVmyMO24njbqvG5VbOz4yjtjyL3vuRdOSKltUuX0+LbAON0o3UJFmiibPi+pXtBLrvWHR2tHZfBuSm 141 xZIrPk9mfAiJlwKMleWsvxsnj+7H9YAD+xxssbexwnqbBVs2m7HV3GxlI631E9fa/wGRpaRpa3TTbQAA 142 AABJRU5ErkJggg== 143 </value> 144 </data> 145 <data name="newExperimentButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> 146 <value> 147 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 148 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALDQAA 149 Cw0B7QfALAAAAaJJREFUOE+Nkk1LAkEYx5egU9Sla9AX6NKhLlH3IujSoXtBn0EI+gB5qVBIKyIMtEDo 150 BUIhK6qDSUj4gqYloilmvqa5rrr/Zlx3dkU0B/48z87O/zfzPDMcAE7SOg8sB2AkqYdIXIoAK4LyX17X 151 HiVzYPhC0NBUB1yR6Jfy5lx59rQXRAKEhl6Y4YhMnXOSmUDywRlYHV5YbG6YLp1UW2pgEyBoSdARbdNP 152 OszSSQxEZnkO2D+7w/TCWhtEOoGfqyE5KmKnVf/HIHBLcn4SiI21oGQPkw32J68M0VKvBKgvulgJdEey 153 O+sJNhlg9/i6aZalAEpz98xwQADhAaWJ2GOAWr0BCpFBCoCeIjOxgdCIHlYCiI8DGQ1QMjKzKIooVwSk 154 MuUmYGp+lf5rlcDeArhD6wMzqZOqUEe2UEE0WegNMFgcHYB6Q0SxXEUiXcJbNNsboD+xdwAqfA3p3C8i 155 n3l4QuneAFqfetDG5X94xFJFBCIZuHzJ/gHqxoVjObwGv/DojvcPUDfO9/4NpyeBm+dofwD5vrvFrtco 156 3zFd8J/oO/gDpYIVhUFyWDsAAAAASUVORK5CYII= 157 </value> 158 </data> 130 159 <data name="startButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> 131 160 <value> 132 161 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 133 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BgAA134 Cw YBZDTpJAAAALZJREFUOE9j/P//PwNFAGQAOi7bn+2GTRybGIZmkKKEGRH/iTUEpwGWZfpEGYLVgKgp162 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAgAA 163 CwIBm8luNgAAALZJREFUOE9j/P//PwNFAGQAOi7bn+2GTRybGIZmkKKEGRH/iTUEpwGWZfpEGYLVgKgp 135 164 Qf833Fr8nxhDsBoQPMEbZDtRhmA1wKfLGWwACEctCsDrEqwGODZb/M/YEAvWbNus/1+nWOG/RBo3iFZD 136 165 jwmsBpjX6KFo5k9gwaoZnIawxa1eqTLcZnyacRqgki8FdjYhzTgNkM4QJEozTgNEkjlx+pmoQMQW2rjy … … 141 170 <value> 142 171 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 143 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BgAA144 Cw YBZDTpJAAAAXJJREFUOE+tkj1IQmEYhWsoaIi2xmhpiYSgKFoiCMLJJYSEJiEI0mgIyqjA6vaLUKIU172 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAgAA 173 CwIBm8luNgAAAXJJREFUOE+tkj1IQmEYhWsoaIi2xmhpiYSgKFoiCMLJJYSEJiEI0mgIyqjA6vaLUKIU 145 174 iZlJKKUoWEbZDzVYCYlQYVxcNDIoRND8ud7idD83C27g7YNvPM8573nfcgBlgh4BCPmCxIX0Qtx/ATTu 146 175 Lyy78ph3ZKC2pTBlSWB86w2jhleMrD9jWB9N/jQsSkDEj5FPPERZ+J7yOL5j4PYzsPsYGL1piKR7nL64 … … 154 183 <value> 155 184 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 156 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BgAA157 Cw YBZDTpJAAAAYNJREFUOE9j/P//PwNFAGQAJZgizWDXI9veu/nvfxhuW/vtf+OKz/9rF7//XzHv1f+S185 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAgAA 186 CwIBm8luNgAAAYNJREFUOE9j/P//PwNFAGQAJZgizWDXI9veu/nvfxhuW/vtf+OKz/9rF7//XzHv1f+S 158 187 2c//F0x//L901mOgFoSrUQzo2vDr/6aT3/6vPPTl/4I9n/5ffvDzf+/ad/+bl74BG5I3/cV/3dBVuA0A 159 188 2bri4Jf/83Z9+n/ryS+Qwv8NS978L5378n/O1Of/k3qf/Vf1W4TbAJCT5+z49P/hyx9gzSBQMvvl/6wp … … 167 196 <value> 168 197 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 169 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BgAA170 Cw YBZDTpJAAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB198 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAgAA 199 CwIBm8luNgAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB 171 200 SPPVh3/+64auAqr9z4DOJ2hA29pv/289/f1f1W8R2AB0PkEDGld8/n/54e//cm6zwAag8wkaULv4/f8T 172 201 13//F7ObBDYAnU/QgIp5r/7vvvDzP79ZN9gAdD5BA0pmP/+//uTP/5wGrWAD0PkEDSiY/vj/gj2f/7Pq … … 177 206 <value> 178 207 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 179 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BQAA180 Cw UByY3ISQAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB208 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAQAA 209 CwEBNnBPWwAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB 181 210 SPPVh3/+64auAqr9z4DOJ2hA29pv/289/f1f1W8R2AB0PkEDGld8/n/54e//cm6zwAag8wkaULv4/f8T 182 211 13//F7ObBDYAnU/QgIp5r/7vvvDzP79ZN9gAdD5BA0pmP/+//uTP/5wGrWAD0PkEDSiY/vj/gj2f/7Pq … … 187 216 <value> 188 217 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 189 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAL BAAA190 Cw QBG8oqrQAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB218 YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAAAA 219 CwAB5DetvwAAAMZJREFUOE9j/P//PwNFAGQAJZgizWDXU2I7VgN6N//937Xh1/+8qY8+gRSg89EtxHAB 191 220 SPPVh3/+64auAqr9z4DOJ2hA29pv/289/f1f1W8R2AB0PkEDGld8/n/54e//cm6zwAag8wkaULv4/f8T 192 221 13//F7ObBDYAnU/QgIp5r/7vvvDzP79ZN9gAdD5BA0pmP/+//uTP/5wGrWAD0PkEDSiY/vj/gj2f/7Pq -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobItemView.Designer.cs
r4141 r4144 34 34 this.coresNeededTextBox = new System.Windows.Forms.TextBox(); 35 35 this.memoryNeededTextBox = new System.Windows.Forms.TextBox(); 36 this. pluginsNeededTextBox = new System.Windows.Forms.TextBox();36 this.exceptionTextBox = new System.Windows.Forms.TextBox(); 37 37 this.projectTextBox = new System.Windows.Forms.TextBox(); 38 38 this.percentageLabel = new System.Windows.Forms.Label(); … … 42 42 this.coresNeededLabel = new System.Windows.Forms.Label(); 43 43 this.memoryNeededLabel = new System.Windows.Forms.Label(); 44 this. pluginsNeededLabel = new System.Windows.Forms.Label();44 this.exceptionLabel = new System.Windows.Forms.Label(); 45 45 this.projectLabel = new System.Windows.Forms.Label(); 46 46 this.snapshotGroupBox = new System.Windows.Forms.GroupBox(); 47 this.requestSnapshotButton = new System.Windows.Forms.Button(); 47 48 this.openSnapshotButton = new System.Windows.Forms.Button(); 48 49 this.snapshotTimeText = new System.Windows.Forms.TextBox(); … … 56 57 this.tabControl = new System.Windows.Forms.TabControl(); 57 58 this.detailsTabPage = new System.Windows.Forms.TabPage(); 59 this.jobIdLabel = new System.Windows.Forms.Label(); 60 this.jobIdTextBox = new System.Windows.Forms.TextBox(); 58 61 this.logTabPage = new System.Windows.Forms.TabPage(); 59 62 this.logView = new HeuristicLab.Core.Views.LogView(); 60 this.requestSnapshotButton = new System.Windows.Forms.Button();61 63 this.snapshotGroupBox.SuspendLayout(); 62 64 this.jobStatusGroupBox.SuspendLayout(); … … 78 80 // 79 81 this.userIdLabel.AutoSize = true; 80 this.userIdLabel.Location = new System.Drawing.Point(3, 3);82 this.userIdLabel.Location = new System.Drawing.Point(3, 28); 81 83 this.userIdLabel.Name = "userIdLabel"; 82 84 this.userIdLabel.Size = new System.Drawing.Size(41, 13); … … 97 99 this.userIdTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 98 100 | System.Windows.Forms.AnchorStyles.Right))); 99 this.userIdTextBox.Location = new System.Drawing.Point(91, 3);101 this.userIdTextBox.Location = new System.Drawing.Point(91, 28); 100 102 this.userIdTextBox.Name = "userIdTextBox"; 101 103 this.userIdTextBox.Size = new System.Drawing.Size(448, 20); … … 131 133 this.priorityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 132 134 | System.Windows.Forms.AnchorStyles.Right))); 133 this.priorityTextBox.Location = new System.Drawing.Point(91, 25);135 this.priorityTextBox.Location = new System.Drawing.Point(91, 50); 134 136 this.priorityTextBox.Name = "priorityTextBox"; 135 137 this.priorityTextBox.Size = new System.Drawing.Size(448, 20); … … 140 142 this.coresNeededTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 141 143 | System.Windows.Forms.AnchorStyles.Right))); 142 this.coresNeededTextBox.Location = new System.Drawing.Point(91, 47);144 this.coresNeededTextBox.Location = new System.Drawing.Point(91, 72); 143 145 this.coresNeededTextBox.Name = "coresNeededTextBox"; 144 146 this.coresNeededTextBox.Size = new System.Drawing.Size(448, 20); … … 149 151 this.memoryNeededTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 150 152 | System.Windows.Forms.AnchorStyles.Right))); 151 this.memoryNeededTextBox.Location = new System.Drawing.Point(91, 69);153 this.memoryNeededTextBox.Location = new System.Drawing.Point(91, 94); 152 154 this.memoryNeededTextBox.Name = "memoryNeededTextBox"; 153 155 this.memoryNeededTextBox.Size = new System.Drawing.Size(448, 20); 154 156 this.memoryNeededTextBox.TabIndex = 9; 155 157 // 156 // pluginsNeededTextBox157 // 158 this. pluginsNeededTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)159 | System.Windows.Forms.AnchorStyles.Right))); 160 this. pluginsNeededTextBox.Location = new System.Drawing.Point(91, 91);161 this. pluginsNeededTextBox.Name = "pluginsNeededTextBox";162 this. pluginsNeededTextBox.Size = new System.Drawing.Size(448, 20);163 this. pluginsNeededTextBox.TabIndex = 10;158 // exceptionTextBox 159 // 160 this.exceptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 161 | System.Windows.Forms.AnchorStyles.Right))); 162 this.exceptionTextBox.Location = new System.Drawing.Point(91, 116); 163 this.exceptionTextBox.Name = "exceptionTextBox"; 164 this.exceptionTextBox.Size = new System.Drawing.Size(448, 20); 165 this.exceptionTextBox.TabIndex = 10; 164 166 // 165 167 // projectTextBox … … 167 169 this.projectTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 168 170 | System.Windows.Forms.AnchorStyles.Right))); 169 this.projectTextBox.Location = new System.Drawing.Point(91, 1 13);171 this.projectTextBox.Location = new System.Drawing.Point(91, 138); 170 172 this.projectTextBox.Name = "projectTextBox"; 171 173 this.projectTextBox.Size = new System.Drawing.Size(448, 20); … … 202 204 // 203 205 this.priorityLabel.AutoSize = true; 204 this.priorityLabel.Location = new System.Drawing.Point(3, 25);206 this.priorityLabel.Location = new System.Drawing.Point(3, 50); 205 207 this.priorityLabel.Name = "priorityLabel"; 206 208 this.priorityLabel.Size = new System.Drawing.Size(41, 13); … … 211 213 // 212 214 this.coresNeededLabel.AutoSize = true; 213 this.coresNeededLabel.Location = new System.Drawing.Point(3, 47);215 this.coresNeededLabel.Location = new System.Drawing.Point(3, 72); 214 216 this.coresNeededLabel.Name = "coresNeededLabel"; 215 217 this.coresNeededLabel.Size = new System.Drawing.Size(75, 13); … … 220 222 // 221 223 this.memoryNeededLabel.AutoSize = true; 222 this.memoryNeededLabel.Location = new System.Drawing.Point(3, 69);224 this.memoryNeededLabel.Location = new System.Drawing.Point(3, 94); 223 225 this.memoryNeededLabel.Name = "memoryNeededLabel"; 224 226 this.memoryNeededLabel.Size = new System.Drawing.Size(85, 13); … … 226 228 this.memoryNeededLabel.Text = "MemoryNeeded:"; 227 229 // 228 // pluginsNeededLabel229 // 230 this. pluginsNeededLabel.AutoSize = true;231 this. pluginsNeededLabel.Location = new System.Drawing.Point(3, 91);232 this. pluginsNeededLabel.Name = "pluginsNeededLabel";233 this. pluginsNeededLabel.Size = new System.Drawing.Size(82, 13);234 this. pluginsNeededLabel.TabIndex = 19;235 this. pluginsNeededLabel.Text = "PluginsNeeded:";230 // exceptionLabel 231 // 232 this.exceptionLabel.AutoSize = true; 233 this.exceptionLabel.Location = new System.Drawing.Point(3, 116); 234 this.exceptionLabel.Name = "exceptionLabel"; 235 this.exceptionLabel.Size = new System.Drawing.Size(57, 13); 236 this.exceptionLabel.TabIndex = 19; 237 this.exceptionLabel.Text = "Exception:"; 236 238 // 237 239 // projectLabel 238 240 // 239 241 this.projectLabel.AutoSize = true; 240 this.projectLabel.Location = new System.Drawing.Point(3, 1 13);242 this.projectLabel.Location = new System.Drawing.Point(3, 138); 241 243 this.projectLabel.Name = "projectLabel"; 242 244 this.projectLabel.Size = new System.Drawing.Size(43, 13); … … 254 256 this.snapshotGroupBox.Controls.Add(this.snapshotTimeLabel); 255 257 this.snapshotGroupBox.Controls.Add(this.snapshotStatusLabel); 256 this.snapshotGroupBox.Location = new System.Drawing.Point(6, 279);258 this.snapshotGroupBox.Location = new System.Drawing.Point(6, 304); 257 259 this.snapshotGroupBox.Name = "snapshotGroupBox"; 258 260 this.snapshotGroupBox.Size = new System.Drawing.Size(533, 100); … … 260 262 this.snapshotGroupBox.TabStop = false; 261 263 this.snapshotGroupBox.Text = "Latest Snapshot"; 264 // 265 // requestSnapshotButton 266 // 267 this.requestSnapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 268 this.requestSnapshotButton.Location = new System.Drawing.Point(307, 67); 269 this.requestSnapshotButton.Name = "requestSnapshotButton"; 270 this.requestSnapshotButton.Size = new System.Drawing.Size(107, 26); 271 this.requestSnapshotButton.TabIndex = 26; 272 this.requestSnapshotButton.Text = "Request Snapshot"; 273 this.requestSnapshotButton.UseVisualStyleBackColor = true; 274 this.requestSnapshotButton.Click += new System.EventHandler(this.requestSnapshotButton_Click); 262 275 // 263 276 // openSnapshotButton … … 341 354 this.jobStatusGroupBox.Controls.Add(this.dateCreatedLabel); 342 355 this.jobStatusGroupBox.Controls.Add(this.dateFinishedLabel); 343 this.jobStatusGroupBox.Location = new System.Drawing.Point(6, 1 39);356 this.jobStatusGroupBox.Location = new System.Drawing.Point(6, 164); 344 357 this.jobStatusGroupBox.Name = "jobStatusGroupBox"; 345 358 this.jobStatusGroupBox.Size = new System.Drawing.Size(533, 134); … … 372 385 // detailsTabPage 373 386 // 387 this.detailsTabPage.Controls.Add(this.jobIdLabel); 388 this.detailsTabPage.Controls.Add(this.jobIdTextBox); 374 389 this.detailsTabPage.Controls.Add(this.userIdLabel); 375 390 this.detailsTabPage.Controls.Add(this.jobStatusGroupBox); … … 379 394 this.detailsTabPage.Controls.Add(this.projectLabel); 380 395 this.detailsTabPage.Controls.Add(this.coresNeededTextBox); 381 this.detailsTabPage.Controls.Add(this. pluginsNeededLabel);396 this.detailsTabPage.Controls.Add(this.exceptionLabel); 382 397 this.detailsTabPage.Controls.Add(this.memoryNeededTextBox); 383 398 this.detailsTabPage.Controls.Add(this.memoryNeededLabel); 384 this.detailsTabPage.Controls.Add(this. pluginsNeededTextBox);399 this.detailsTabPage.Controls.Add(this.exceptionTextBox); 385 400 this.detailsTabPage.Controls.Add(this.coresNeededLabel); 386 401 this.detailsTabPage.Controls.Add(this.projectTextBox); … … 394 409 this.detailsTabPage.UseVisualStyleBackColor = true; 395 410 // 411 // jobIdLabel 412 // 413 this.jobIdLabel.AutoSize = true; 414 this.jobIdLabel.Location = new System.Drawing.Point(3, 6); 415 this.jobIdLabel.Name = "jobIdLabel"; 416 this.jobIdLabel.Size = new System.Drawing.Size(36, 13); 417 this.jobIdLabel.TabIndex = 25; 418 this.jobIdLabel.Text = "JobId:"; 419 // 420 // jobIdTextBox 421 // 422 this.jobIdTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 423 | System.Windows.Forms.AnchorStyles.Right))); 424 this.jobIdTextBox.Location = new System.Drawing.Point(91, 6); 425 this.jobIdTextBox.Name = "jobIdTextBox"; 426 this.jobIdTextBox.Size = new System.Drawing.Size(448, 20); 427 this.jobIdTextBox.TabIndex = 26; 428 // 396 429 // logTabPage 397 430 // … … 417 450 this.logView.Size = new System.Drawing.Size(536, 447); 418 451 this.logView.TabIndex = 0; 419 //420 // requestSnapshotButton421 //422 this.requestSnapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));423 this.requestSnapshotButton.Location = new System.Drawing.Point(307, 67);424 this.requestSnapshotButton.Name = "requestSnapshotButton";425 this.requestSnapshotButton.Size = new System.Drawing.Size(107, 26);426 this.requestSnapshotButton.TabIndex = 26;427 this.requestSnapshotButton.Text = "Request Snapshot";428 this.requestSnapshotButton.UseVisualStyleBackColor = true;429 this.requestSnapshotButton.Click += new System.EventHandler(this.requestSnapshotButton_Click);430 452 // 431 453 // JobItemView … … 460 482 private System.Windows.Forms.TextBox coresNeededTextBox; 461 483 private System.Windows.Forms.TextBox memoryNeededTextBox; 462 private System.Windows.Forms.TextBox pluginsNeededTextBox;484 private System.Windows.Forms.TextBox exceptionTextBox; 463 485 private System.Windows.Forms.TextBox projectTextBox; 464 486 private System.Windows.Forms.Label percentageLabel; … … 468 490 private System.Windows.Forms.Label coresNeededLabel; 469 491 private System.Windows.Forms.Label memoryNeededLabel; 470 private System.Windows.Forms.Label pluginsNeededLabel;492 private System.Windows.Forms.Label exceptionLabel; 471 493 private System.Windows.Forms.Label projectLabel; 472 494 private System.Windows.Forms.GroupBox snapshotGroupBox; … … 485 507 private Core.Views.LogView logView; 486 508 private System.Windows.Forms.Button requestSnapshotButton; 509 private System.Windows.Forms.Label jobIdLabel; 510 private System.Windows.Forms.TextBox jobIdTextBox; 487 511 } 488 512 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/JobItemView.cs
r4141 r4144 59 59 Invoke(new EventHandler(Content_JobDtoChanged), sender, e); 60 60 } else { 61 this.jobIdTextBox.Text = Content.JobDto.Id.ToString(); 61 62 this.stateTextBox.Text = Content.JobDto.State.ToString(); 62 63 this.userIdTextBox.Text = Content.JobDto.UserId.ToString(); … … 69 70 this.coresNeededTextBox.Text = Content.JobDto.CoresNeeded.ToString(); 70 71 this.memoryNeededTextBox.Text = Content.JobDto.MemoryNeeded.ToString(); 71 this. pluginsNeededTextBox.Text = string.Join(", ", Content.JobDto.PluginsNeeded.Select(x => x.Name + "-" + x.Version).ToArray());72 this.exceptionTextBox.Text = Content.JobDto.Exception; 72 73 this.projectTextBox.Text = Content.JobDto.Project != null ? Content.JobDto.Project.Name : "-"; 73 74 } … … 92 93 base.SetEnabledStateOfControls(); 93 94 openSnapshotButton.Enabled = Content != null && Content.LatestSnapshot != null; 95 this.jobIdTextBox.ReadOnly = this.ReadOnly; 94 96 this.stateTextBox.ReadOnly = this.ReadOnly; 95 97 this.userIdTextBox.ReadOnly = this.ReadOnly; … … 101 103 this.coresNeededTextBox.ReadOnly = this.ReadOnly; 102 104 this.memoryNeededTextBox.ReadOnly = this.ReadOnly; 103 this. pluginsNeededTextBox.ReadOnly = this.ReadOnly;105 this.exceptionTextBox.ReadOnly = this.ReadOnly; 104 106 this.projectTextBox.ReadOnly = this.ReadOnly; 105 107 this.snapshotStatusText.ReadOnly = this.ReadOnly;
Note: See TracChangeset
for help on using the changeset viewer.