Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/PluginView.cs @ 3608

Last change on this file since 3608 was 3608, checked in by gkronber, 14 years ago

Changed plugin manager GUI as suggested by reviewers. #989 (Implement review comments in plugin infrastructure)

File size: 5.3 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
21using System;
22using System.Collections.Generic;
23using System.ComponentModel;
24using System.Drawing;
25using System.Data;
26using System.Linq;
27using System.Text;
28using System.Windows.Forms;
29using HeuristicLab.PluginInfrastructure;
30using System.IO;
31using HeuristicLab.PluginInfrastructure.Manager;
32
33namespace HeuristicLab.PluginInfrastructure.Advanced {
34  internal partial class PluginView : Form {
35    private const string IMAGE_KEY_PLUGIN = "Plugin";
36    private const string IMAGE_KEY_ASSEMBLY = "Assembly";
37    private const string IMAGE_KEY_FILE = "File";
38    private const string IMAGE_KEY_DOCUMENT = "Document";
39
40    private IPluginDescription plugin;
41
42    public PluginView() {
43      InitializeComponent();
44      PopulateImageList();
45    }
46
47    public PluginView(IPluginDescription plugin) {
48      InitializeComponent();
49      PopulateImageList();
50
51      this.plugin = plugin;
52      this.Text = "Plugin Details: " + plugin.ToString();
53      UpdateControls();
54    }
55
56    private void PopulateImageList() {
57      pluginsImageList.Images.Add(IMAGE_KEY_PLUGIN, HeuristicLab.PluginInfrastructure.Resources.Resources.plugin_16);
58      filesImageList.Images.Add(IMAGE_KEY_ASSEMBLY, HeuristicLab.PluginInfrastructure.Resources.Resources.Assembly);
59      filesImageList.Images.Add(IMAGE_KEY_FILE, HeuristicLab.PluginInfrastructure.Resources.Resources.File);
60      filesImageList.Images.Add(IMAGE_KEY_DOCUMENT, HeuristicLab.PluginInfrastructure.Resources.Resources.Document);
61    }
62
63    public void UpdateControls() {
64      string appDir = Path.GetDirectoryName(Application.ExecutablePath);
65      nameTextBox.Text = plugin.Name;
66      versionTextBox.Text = plugin.Version.ToString();
67      contactTextBox.Text = CombineStrings(plugin.ContactName, plugin.ContactEmail);
68      descriptionTextBox.Text = plugin.Description;
69      var localPlugin = plugin as PluginDescription;
70      if (localPlugin != null) {
71        stateTextBox.Text = localPlugin.PluginState.ToString();
72        errorTextBox.Text = localPlugin.LoadingErrorInformation;
73      }
74      foreach (PluginDescription dependency in plugin.Dependencies) {
75        var depItem = new ListViewItem(new string[] { dependency.Name, dependency.Version.ToString(), dependency.Description });
76        depItem.Tag = dependency;
77        depItem.ImageKey = IMAGE_KEY_PLUGIN;
78        dependenciesListView.Items.Add(depItem);
79      }
80      foreach (var file in plugin.Files) {
81        string displayedFileName = file.Name.Replace(appDir, string.Empty);
82        displayedFileName = displayedFileName.TrimStart(Path.DirectorySeparatorChar);
83        var fileItem = new ListViewItem(new string[] { displayedFileName, file.Type.ToString() });
84        if (file.Type == PluginFileType.Assembly) {
85          fileItem.ImageKey = IMAGE_KEY_ASSEMBLY;
86        } else if (file.Type == PluginFileType.License) {
87          fileItem.ImageKey = IMAGE_KEY_DOCUMENT;
88        } else fileItem.ImageKey = IMAGE_KEY_FILE;
89        filesListView.Items.Add(fileItem);
90      }
91      foreach (ColumnHeader column in dependenciesListView.Columns) {
92        if (dependenciesListView.Items.Count > 0)
93          column.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
94        else column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
95      }
96      foreach (ColumnHeader column in filesListView.Columns) {
97        if (filesListView.Items.Count > 0)
98          column.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
99        else
100          column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
101      }
102      licenseButton.Enabled = !string.IsNullOrEmpty(plugin.LicenseText);
103    }
104
105    private string CombineStrings(string a, string b) {
106      if (string.IsNullOrEmpty(a))
107        // a is empty
108        if (!string.IsNullOrEmpty(b)) return CombineStrings(b, string.Empty);
109        else return string.Empty;
110      // a is not empty
111      else if (string.IsNullOrEmpty(b)) return a;
112      // and b are not empty
113      else return a + ", " + b;
114    }
115
116    private void licenseButton_Click(object sender, EventArgs e) {
117      LicenseView view = new LicenseView(plugin);
118      view.Show();
119    }
120
121    private void dependenciesListView_ItemActivate(object sender, EventArgs e) {
122      if (dependenciesListView.SelectedItems.Count > 0) {
123        var dep = (PluginDescription)dependenciesListView.SelectedItems[0].Tag;
124        PluginView view = new PluginView(dep);
125        view.Show();
126      }
127    }
128  }
129}
Note: See TracBrowser for help on using the repository browser.