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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Windows.Forms;
|
---|
26 | using HeuristicLab.PluginInfrastructure.Manager;
|
---|
27 |
|
---|
28 | namespace 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 | }
|
---|