Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/AdministratorView.cs @ 4466

Last change on this file since 4466 was 4466, checked in by swagner, 14 years ago

Worked on OKB (#1174)

File size: 3.7 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.MainForm;
25using HeuristicLab.MainForm.WindowsForms;
26
27namespace HeuristicLab.Clients.OKB {
28  [View("OKB Administrator")]
29  [Content(typeof(Administrator), true)]
30  public sealed partial class AdministratorView : AsynchronousContentView {
31    public new Administrator Content {
32      get { return (Administrator)base.Content; }
33      set { base.Content = value; }
34    }
35
36    public AdministratorView() {
37      InitializeComponent();
38    }
39
40    protected override void DeregisterContentEvents() {
41      Content.Refreshing -= new EventHandler(Content_Refreshing);
42      Content.Refreshed -= new EventHandler(Content_Refreshed);
43      base.DeregisterContentEvents();
44    }
45
46    protected override void RegisterContentEvents() {
47      base.RegisterContentEvents();
48      Content.Refreshing += new EventHandler(Content_Refreshing);
49      Content.Refreshed += new EventHandler(Content_Refreshed);
50    }
51
52    protected override void OnContentChanged() {
53      base.OnContentChanged();
54      if (Content == null) {
55        platformCollectionView.Content = null;
56        algorithmClassCollectionView.Content = null;
57        algorithmCollectionView.Content = null;
58        dataTypeCollectionView.Content = null;
59      } else {
60        platformCollectionView.Content = Content.Platforms;
61        algorithmClassCollectionView.Content = Content.AlgorithmClasses;
62        algorithmCollectionView.Content = Content.Algorithms;
63        dataTypeCollectionView.Content = Content.DataTypes;
64      }
65    }
66
67    protected override void SetEnabledStateOfControls() {
68      base.SetEnabledStateOfControls();
69      refreshButton.Enabled = Content != null;
70      platformCollectionView.Enabled = Content != null;
71      algorithmClassCollectionView.Enabled = Content != null;
72      algorithmCollectionView.Enabled = Content != null;
73      dataTypeCollectionView.Enabled = Content != null;
74    }
75
76    private void Content_Refreshing(object sender, EventArgs e) {
77      if (InvokeRequired) {
78        Invoke(new EventHandler(Content_Refreshing), sender, e);
79      } else {
80        Cursor = Cursors.AppStarting;
81        refreshButton.Enabled = false;
82        tabControl.Enabled = false;
83      }
84    }
85    private void Content_Refreshed(object sender, EventArgs e) {
86      if (InvokeRequired) {
87        Invoke(new EventHandler(Content_Refreshed), sender, e);
88      } else {
89        platformCollectionView.Content = Content.Platforms;
90        algorithmClassCollectionView.Content = Content.AlgorithmClasses;
91        algorithmCollectionView.Content = Content.Algorithms;
92        dataTypeCollectionView.Content = Content.DataTypes;
93        refreshButton.Enabled = true;
94        tabControl.Enabled = true;
95        Cursor = Cursors.Default;
96      }
97    }
98
99    private void refreshButton_Click(object sender, EventArgs e) {
100      Content.Refresh();
101    }
102  }
103}
Note: See TracBrowser for help on using the repository browser.