1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 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.Diagnostics;
|
---|
25 | using System.Linq;
|
---|
26 | using System.Reflection;
|
---|
27 | using System.Windows.Forms;
|
---|
28 | using HeuristicLab.PluginInfrastructure.Advanced;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.PluginInfrastructure.Starter {
|
---|
31 | /// <summary>
|
---|
32 | /// Shows product, version and copyright information for HeuristicLab and all plugins.
|
---|
33 | /// </summary>
|
---|
34 | public partial class AboutDialog : Form {
|
---|
35 | /// <summary>
|
---|
36 | /// Creates a new about dialog with all plugins loaded in the current application.
|
---|
37 | /// </summary>
|
---|
38 | public AboutDialog() {
|
---|
39 | InitializeComponent();
|
---|
40 | var curAssembly = this.GetType().Assembly;
|
---|
41 | productTextBox.Text = GetProduct(curAssembly);
|
---|
42 | versionTextBox.Text = GetVersion();
|
---|
43 | copyrightTextBox.Text = GetCopyright(curAssembly);
|
---|
44 | imageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.Plugin);
|
---|
45 | pictureBox.Image = HeuristicLab.PluginInfrastructure.Resources.HeuristicLabLogo;
|
---|
46 | licenseTextBox.Text = HeuristicLab.PluginInfrastructure.Resources.LicenseText;
|
---|
47 | UpdatePluginList(ApplicationManager.Manager.Plugins);
|
---|
48 | ActiveControl = okButton;
|
---|
49 | }
|
---|
50 |
|
---|
51 | /// <summary>
|
---|
52 | /// Creates a new about dialog listing all plugins in the <paramref name="plugins"/> enumerable.
|
---|
53 | /// </summary>
|
---|
54 | /// <param name="plugins">Enumerable of plugins that should be listed.</param>
|
---|
55 | public AboutDialog(IEnumerable<IPluginDescription> plugins)
|
---|
56 | : this() {
|
---|
57 | UpdatePluginList(plugins);
|
---|
58 | }
|
---|
59 |
|
---|
60 | private void UpdatePluginList(IEnumerable<IPluginDescription> plugins) {
|
---|
61 | pluginListView.Items.Clear();
|
---|
62 | foreach (var plugin in plugins) {
|
---|
63 | ListViewItem pluginItem = CreateListViewItem(plugin);
|
---|
64 | pluginListView.Items.Add(pluginItem);
|
---|
65 | }
|
---|
66 | Util.ResizeColumns(pluginListView.Columns.OfType<ColumnHeader>());
|
---|
67 | }
|
---|
68 |
|
---|
69 | private ListViewItem CreateListViewItem(IPluginDescription plugin) {
|
---|
70 | ListViewItem item = new ListViewItem(new string[] { plugin.Name, plugin.Version.ToString(), plugin.Description });
|
---|
71 | item.Tag = plugin;
|
---|
72 | item.ImageIndex = 0;
|
---|
73 | return item;
|
---|
74 | }
|
---|
75 |
|
---|
76 | private string GetCopyright(Assembly asm) {
|
---|
77 | AssemblyCopyrightAttribute attribute = GetAttribute<AssemblyCopyrightAttribute>(asm);
|
---|
78 | return attribute.Copyright;
|
---|
79 | }
|
---|
80 |
|
---|
81 | private string GetVersion() {
|
---|
82 | FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location);
|
---|
83 | return pluginInfrastructureVersion.FileVersion;
|
---|
84 | }
|
---|
85 |
|
---|
86 | private string GetProduct(Assembly asm) {
|
---|
87 | AssemblyProductAttribute attribute = GetAttribute<AssemblyProductAttribute>(asm);
|
---|
88 | return attribute.Product;
|
---|
89 | }
|
---|
90 |
|
---|
91 | private T GetAttribute<T>(Assembly asm) {
|
---|
92 | return (T)asm.GetCustomAttributes(typeof(T), false).Single();
|
---|
93 | }
|
---|
94 |
|
---|
95 | private void okButton_Click(object sender, EventArgs e) {
|
---|
96 | Close();
|
---|
97 | }
|
---|
98 |
|
---|
99 | private void pluginListView_ItemActivate(object sender, EventArgs e) {
|
---|
100 | if (pluginListView.SelectedItems.Count > 0) {
|
---|
101 | PluginView view = new PluginView((IPluginDescription)pluginListView.SelectedItems[0].Tag);
|
---|
102 | view.Show(this);
|
---|
103 | }
|
---|
104 | }
|
---|
105 |
|
---|
106 | private void licenseTextBox_LinkClicked(object sender, LinkClickedEventArgs e) {
|
---|
107 | System.Diagnostics.Process.Start(e.LinkText);
|
---|
108 | }
|
---|
109 |
|
---|
110 | private void webLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
|
---|
111 | System.Diagnostics.Process.Start(webLinkLabel.Text);
|
---|
112 | }
|
---|
113 |
|
---|
114 | private void mailLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
|
---|
115 | System.Diagnostics.Process.Start("mailto:" + mailLinkLabel.Text);
|
---|
116 | }
|
---|
117 | }
|
---|
118 | }
|
---|