Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/OptimizerHiveJobView.cs @ 6033

Last change on this file since 6033 was 6033, checked in by cneumuel, 13 years ago

#1233

  • created baseclass for jobs (ItemJob) which derives OperatorJobs and EngineJobs
  • created special view for OptimizerJobs which derives from a more general view
  • removed logic from domain class HiveExperiment and moved it into RefreshableHiveExperiment
  • improved ItemTreeView
  • corrected plugin dependencies
  • fixed bug in database trigger when deleting HiveExperiments
  • added delete cascade for Plugin and PluginData
  • lots of fixes
File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 System;
23using System.Windows.Forms;
24using HeuristicLab.Clients.Hive.ExperimentManager;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Clients.Hive.Views {
28  [View("HiveJob View")]
29  [Content(typeof(OptimizerHiveJob), true)]
30  public partial class OptimizerHiveJobView : HiveJobView {
31    public new OptimizerHiveJob Content {
32      get { return (OptimizerHiveJob)base.Content; }
33      set {
34        if (base.Content != value) {
35          base.Content = value;
36        }
37      }
38    }
39
40    public OptimizerHiveJobView() {
41      InitializeComponent();
42    }
43
44    protected override void Job_ItemChanged(object sender, EventArgs e) {
45      if (Content != null && Content.Job != null && Content.JobItem.Item != null) {
46        runCollectionViewHost.Content = Content.JobItem.Item.Runs;
47      } else {
48        runCollectionViewHost.Content = null;
49      }
50    }
51    #region Content Events
52
53    protected override void SetEnabledStateOfControls() {
54      base.SetEnabledStateOfControls();
55
56      this.restartButton.Enabled = Content != null && Content.Job.State == JobState.Paused;
57      this.pauseButton.Enabled = Content != null && Content.Job.State == JobState.Calculating;
58      this.stopButton.Enabled = Content != null && (Content.Job.State == JobState.Calculating || Content.Job.State == JobState.Waiting || Content.Job.State == JobState.Paused);
59    }
60    #endregion
61
62    #region Child Control Events
63    private void restartButton_Click(object sender, EventArgs e) {
64      Content.Restart();
65    }
66
67    private void pauseButton_Click(object sender, EventArgs e) {
68      Content.Pause();
69    }
70
71    private void stopButton_Click(object sender, EventArgs e) {
72      Content.Stop();
73    }
74    #endregion
75  }
76}
Note: See TracBrowser for help on using the repository browser.