Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB data model and services (#1174)

File size: 3.2 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        algorithmClassCollectionView.Content = null;
56        algorithmCollectionView.Content = null;
57      } else {
58        algorithmClassCollectionView.Content = Content.AlgorithmClasses;
59        algorithmCollectionView.Content = Content.Algorithms;
60      }
61    }
62
63    protected override void SetEnabledStateOfControls() {
64      base.SetEnabledStateOfControls();
65      refreshButton.Enabled = Content != null;
66      algorithmClassCollectionView.Enabled = Content != null;
67      algorithmCollectionView.Enabled = Content != null;
68    }
69
70    private void Content_Refreshing(object sender, EventArgs e) {
71      if (InvokeRequired) {
72        Invoke(new EventHandler(Content_Refreshing), sender, e);
73      } else {
74        Enabled = false;
75        Cursor = Cursors.AppStarting;
76      }
77    }
78    private void Content_Refreshed(object sender, EventArgs e) {
79      if (InvokeRequired) {
80        Invoke(new EventHandler(Content_Refreshed), sender, e);
81      } else {
82        algorithmClassCollectionView.Content = Content.AlgorithmClasses;
83        algorithmCollectionView.Content = Content.Algorithms;
84        Cursor = Cursors.Default;
85        Enabled = true;
86      }
87    }
88
89    private void refreshButton_Click(object sender, EventArgs e) {
90      Content.Refresh();
91    }
92  }
93}
Note: See TracBrowser for help on using the repository browser.