Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/InstalledPluginsView.cs @ 13348

Last change on this file since 13348 was 13338, checked in by gkronber, 9 years ago

#2522:

  • moved UI components out of HeuristicLab.PluginInfrastructure -> HeuristicLab.PluginInfrastructure.UI
  • moved ErrorDialog to HeuristicLab.MainForm.WindowsForms
  • moved ErrorHandling (for building an error message string) to HeuristicLab.Common
  • Changed exception handlers in Views to use MainForm.ShowError()
  • Changed usages for ErrorDialog in non-UI components to throw exceptions instead.
File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Linq;
25using System.Windows.Forms;
26using HeuristicLab.PluginInfrastructure.Manager;
27
28namespace HeuristicLab.PluginInfrastructure.UI {
29  internal partial class InstalledPluginsView : InstallationManagerControl {
30
31    private ListViewGroup enabledPluginsGroup;
32    private ListViewGroup disabledPluginsGroup;
33
34    private PluginManager pluginManager;
35    public PluginManager PluginManager {
36      get { return pluginManager; }
37      set {
38        pluginManager = value;
39        UpdateControl();
40      }
41    }
42
43    // private InstallationManager installationManager;
44    // public InstallationManager InstallationManager {
45    //   get { return installationManager; }
46    //   set { installationManager = value; }
47    // }
48
49    public InstalledPluginsView()
50      : base() {
51      InitializeComponent();
52      enabledPluginsGroup = localPluginsListView.Groups["activePluginsGroup"];
53      disabledPluginsGroup = localPluginsListView.Groups["disabledPluginsGroup"];
54      pluginImageList.Images.Add(Resources.Plugin);
55      UpdateControl();
56    }
57
58
59    private void UpdateControl() {
60      ClearPluginList();
61      if (pluginManager != null) {
62        localPluginsListView.SuppressItemCheckedEvents = true;
63        foreach (var plugin in pluginManager.Plugins) {
64          var item = CreateListViewItem(plugin);
65          if (plugin.PluginState == PluginState.Enabled) {
66            item.Group = enabledPluginsGroup;
67          } else if (plugin.PluginState == PluginState.Disabled) {
68            item.Group = disabledPluginsGroup;
69          }
70          localPluginsListView.Items.Add(item);
71        }
72        localPluginsListView.SuppressItemCheckedEvents = false;
73      }
74      Util.ResizeColumns(localPluginsListView.Columns.OfType<ColumnHeader>());
75    }
76
77    private void ClearPluginList() {
78      List<ListViewItem> itemsToRemove = new List<ListViewItem>(localPluginsListView.Items.OfType<ListViewItem>());
79      itemsToRemove.ForEach(item => localPluginsListView.Items.Remove(item));
80    }
81
82    private static ListViewItem CreateListViewItem(PluginDescription plugin) {
83      ListViewItem item = new ListViewItem(new string[] { plugin.Name, plugin.Version.ToString(), plugin.Description });
84      item.Tag = plugin;
85      item.ImageIndex = 0;
86      return item;
87    }
88
89
90    private void localPluginsListView_ItemActivate(object sender, EventArgs e) {
91      if (localPluginsListView.SelectedItems.Count > 0) {
92        var plugin = (PluginDescription)localPluginsListView.SelectedItems[0].Tag;
93        PluginView pluginView = new PluginView(plugin);
94        pluginView.Show(this);
95      }
96    }
97  }
98}
Note: See TracBrowser for help on using the repository browser.