[6033] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Windows.Forms;
|
---|
| 24 | using HeuristicLab.Clients.Hive.ExperimentManager;
|
---|
| 25 | using HeuristicLab.MainForm;
|
---|
| 26 |
|
---|
| 27 | namespace 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) {
|
---|
[6178] | 45 | if (Content != null && Content.Job != null && Content.ItemJob.Item != null) {
|
---|
| 46 | runCollectionViewHost.Content = Content.ItemJob.Item.Runs;
|
---|
[6033] | 47 | } else {
|
---|
| 48 | runCollectionViewHost.Content = null;
|
---|
| 49 | }
|
---|
| 50 | }
|
---|
| 51 | #region Content Events
|
---|
| 52 |
|
---|
| 53 | protected override void SetEnabledStateOfControls() {
|
---|
| 54 | base.SetEnabledStateOfControls();
|
---|
| 55 |
|
---|
[6168] | 56 | this.restartButton.Enabled = Content != null && !Content.Job.Command.HasValue && Content.Job.State == JobState.Paused;
|
---|
| 57 | this.pauseButton.Enabled = Content != null && !Content.Job.Command.HasValue && Content.Job.State == JobState.Calculating;
|
---|
| 58 | this.stopButton.Enabled = Content != null && !Content.Job.Command.HasValue && (Content.Job.State == JobState.Calculating || Content.Job.State == JobState.Waiting || Content.Job.State == JobState.Paused);
|
---|
[6033] | 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 | }
|
---|