Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/HiveJobs/ControllableHiveJobView.cs @ 6373

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

#1233

  • moved ExperimentManager into separate plugin
  • moved Administration into separate plugin
File size: 2.7 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 System;
23using System.Windows.Forms;
24using HeuristicLab.Clients.Hive.Views;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Clients.Hive.Views {
28  [View("HiveJob View")]
29  [Content(typeof(HiveJob<>), true)]
30  public partial class ControllableHiveJobView : 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 ControllableHiveJobView() {
41      InitializeComponent();
42    }
43
44    protected override void Job_ItemChanged(object sender, EventArgs e) {
45      if (Content != null && Content.Job != null && Content.ItemJob.Item != null) {
46        runCollectionViewHost.Content = Content.ItemJob.Item.Runs;
47      } else {
48        runCollectionViewHost.Content = null;
49      }
50    }
51    #region Content Events
52    #endregion
53
54    #region Child Control Events
55    private void restartButton_Click(object sender, EventArgs e) {
56      Content.Restart();
57    }
58
59    private void pauseButton_Click(object sender, EventArgs e) {
60      Content.Pause();
61    }
62
63    private void stopButton_Click(object sender, EventArgs e) {
64      Content.Stop();
65    }
66    #endregion
67
68    protected override void SetEnabledStateOfControls() {
69      base.SetEnabledStateOfControls();
70
71      this.restartButton.Enabled = Content != null && !Content.Job.Command.HasValue && (Content.Job.State == JobState.Paused || Content.Job.State == JobState.Failed || Content.Job.State == JobState.Aborted);
72      this.pauseButton.Enabled = Content != null && !Content.Job.Command.HasValue && Content.Job.State == JobState.Calculating;
73      this.stopButton.Enabled = Content != null && !Content.Job.Command.HasValue && (Content.Job.State == JobState.Calculating || Content.Job.State == JobState.Waiting || Content.Job.State == JobState.Paused);
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.