Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBRunView.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

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