Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginAdministrator/3.3/PluginView.cs @ 3352

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

Integrated PluginAdministrator plugin into HL3.3 solution. #918 (Integrate deployment service into trunk and HL3.3 solution file)

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