Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelectorDialog.cs @ 7910

Last change on this file since 7910 was 7910, checked in by jkarder, 12 years ago

#1711:

  • added resource selection dialog
  • added extension method that returns all descendants of a TreeNode
  • relaxed service access permissions
File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Collections.Generic;
23using System.Threading.Tasks;
24using System.Windows.Forms;
25using HeuristicLab.PluginInfrastructure;
26
27namespace HeuristicLab.Clients.Hive.JobManager.Views {
28  public partial class HiveResourceSelectorDialog : Form {
29    public HiveResourceSelector HiveResourceSelector {
30      get { return hiveResourceSelector; }
31    }
32
33    public HiveResourceSelectorDialog() {
34      InitializeComponent();
35    }
36
37    public ISet<Resource> GetSelectedResources() { return hiveResourceSelector.SelectedResources; }
38
39    private void HiveResourceSelectorDialog_Load(object sender, System.EventArgs e) {
40      HiveAdminClient.Instance.Refreshed += new System.EventHandler(Instance_Refreshed);
41      DownloadResources();
42    }
43
44    private void HiveResourceSelectorDialog_FormClosing(object sender, FormClosingEventArgs e) {
45      HiveAdminClient.Instance.Refreshed -= new System.EventHandler(Instance_Refreshed);
46    }
47
48    void Instance_Refreshed(object sender, System.EventArgs e) {
49      hiveResourceSelector.Content = HiveAdminClient.Instance.Resources;
50    }
51
52    private void refreshButton_Click(object sender, System.EventArgs e) {
53      DownloadResources();
54    }
55
56    private void DownloadResources() {
57      var task = System.Threading.Tasks.Task.Factory.StartNew(DownloadResourcesAsync);
58      task.ContinueWith(t => {
59        hiveResourceSelector.FinishProgressView();
60        ErrorHandling.ShowErrorDialog(this, "An error occurred while downloading the tasks.", t.Exception);
61      }, TaskContinuationOptions.OnlyOnFaulted);
62    }
63
64    private void DownloadResourcesAsync() {
65      hiveResourceSelector.StartProgressView();
66      HiveAdminClient.Instance.Refresh();
67      hiveResourceSelector.FinishProgressView();
68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.