Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBRunView.cs @ 9456

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Core.Views;
25using HeuristicLab.MainForm;
26using HeuristicLab.PluginInfrastructure;
27
28namespace HeuristicLab.Clients.OKB.RunCreation.Views {
29  [View("OKBRun View")]
30  [Content(typeof(OKBRun), true)]
31  public sealed partial class OKBRunView : ItemView {
32    public new OKBRun Content {
33      get { return (OKBRun)base.Content; }
34      set { base.Content = value; }
35    }
36
37    public OKBRunView() {
38      InitializeComponent();
39    }
40
41    protected override void DeregisterContentEvents() {
42      Content.StoredChanged -= new System.EventHandler(Content_StoredChanged);
43      base.DeregisterContentEvents();
44    }
45    protected override void RegisterContentEvents() {
46      base.RegisterContentEvents();
47      Content.StoredChanged += new System.EventHandler(Content_StoredChanged);
48    }
49
50    protected override void OnContentChanged() {
51      base.OnContentChanged();
52      viewHost.Content = Content == null ? null : Content.WrappedRun;
53    }
54
55    protected override void SetEnabledStateOfControls() {
56      base.SetEnabledStateOfControls();
57      storeButton.Enabled = (Content != null) && !ReadOnly && !Locked && !Content.Stored;
58    }
59
60    #region Content Events
61    private void Content_StoredChanged(object sender, System.EventArgs e) {
62      storeButton.Enabled = !Content.Stored;
63    }
64    #endregion
65
66    #region Control Events
67    private void storeButton_Click(object sender, System.EventArgs e) {
68      try {
69        Content.Store();
70      }
71      catch (MissingClientRegistrationException) {
72        MessageBox.Show("You have to register your client to be able to store OKB runs." + Environment.NewLine
73          + " Please click in the menu bar on Services -> Access -> Client Information and register your client. ", "Missing client registration", MessageBoxButtons.OK, MessageBoxIcon.Information);
74      }
75      catch (Exception ex) {
76        ErrorHandling.ShowErrorDialog(this, "Store failed.", ex);
77      }
78    }
79    #endregion
80  }
81}
Note: See TracBrowser for help on using the repository browser.