Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2457_ExpertSystem/HeuristicLab.OptimizationExpertSystem/3.3/Menu/0_Config/30_DownloadFromOkbMenuItem.cs @ 18183

Last change on this file since 18183 was 16958, checked in by abeham, 6 years ago

#2457: adapted to trunk

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Collections.Generic;
24using System.Drawing;
25using HeuristicLab.Common;
26using HeuristicLab.Common.Resources;
27using HeuristicLab.MainForm;
28
29namespace HeuristicLab.OptimizationExpertSystem.Menu {
30  internal class DownloadFromOKBMenuItem : MenuItemBase {
31    public override Image Image { get { return VSImageLibrary.ArrowDown; } }
32
33    public override string Name {
34      get { return "Download"; }
35    }
36
37    public override IEnumerable<string> Structure {
38      get { return new[] { "Config", "OKB" }; }
39    }
40
41    public override int Position {
42      get { return 30; }
43    }
44
45    public override string ToolTipText {
46      get {
47        return @"Download relevant runs, including algorithm instances
48and problem instances from the OKB server.";
49      }
50    }
51
52    public override void Execute() {
53      MainForm.ExpertSystem.UpdateKnowledgeBaseAsync();
54    }
55   
56    protected override void OnToolStripItemSet(EventArgs e) {
57      base.OnToolStripItemSet(e);
58      SetToolStripItemEnabled(MainForm.ExpertSystem.Problem.ProblemId != -1);
59      MainForm.ExpertSystem.Problem.ProblemChanged += OnProblemChanged;
60      MainForm.ExpertSystem.DownloadStarted += OnDownloadStarted;
61    }
62
63    private void OnProblemChanged(object sender, EventArgs e) {
64      SetToolStripItemEnabled(MainForm.ExpertSystem.Problem.ProblemId != -1);
65    }
66
67    private void OnDownloadStarted(object sender, EventArgs<IProgress> e) {
68      SetToolStripItemEnabled(false);
69      e.Value.ProgressStateChanged += DownloadProgressOnStateChanged;
70    }
71
72    private void DownloadProgressOnStateChanged(object sender, EventArgs eventArgs) {
73      var progress = (IProgress)sender;
74      if (progress.ProgressState == ProgressState.Finished || progress.ProgressState == ProgressState.CancelRequested) {
75        SetToolStripItemEnabled(true);
76        progress.ProgressStateChanged -= DownloadProgressOnStateChanged;
77      }
78    }
79
80    private void SetToolStripItemEnabled(bool state) {
81      if (ToolStripItem.Owner != null && ToolStripItem.Owner.InvokeRequired) { ToolStripItem.Owner.Invoke((Action<bool>)SetToolStripItemEnabled, state); return; }
82      ToolStripItem.Enabled = state;
83    }
84  }
85}
Note: See TracBrowser for help on using the repository browser.