[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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.ComponentModel;
|
---|
| 25 | using System.Data;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Text;
|
---|
| 28 | using System.Windows.Forms;
|
---|
| 29 | using System.Diagnostics;
|
---|
| 30 | using HeuristicLab.PluginInfrastructure;
|
---|
| 31 | using HeuristicLab.PluginInfrastructure.GUI;
|
---|
| 32 | using System.Threading;
|
---|
| 33 |
|
---|
| 34 | namespace HeuristicLab {
|
---|
| 35 | public partial class MainForm : Form {
|
---|
| 36 |
|
---|
| 37 | private ListViewItem pluginManagerListViewItem;
|
---|
[1392] | 38 | private bool abortRequested;
|
---|
[2] | 39 |
|
---|
| 40 | public MainForm() {
|
---|
[1392] | 41 | abortRequested = false;
|
---|
[2] | 42 | SplashScreen splashScreen = new SplashScreen(1000, "Loading HeuristicLab...");
|
---|
| 43 | splashScreen.Owner = this;
|
---|
| 44 | splashScreen.Show();
|
---|
| 45 |
|
---|
| 46 | Application.DoEvents();
|
---|
| 47 | this.Enabled = false;
|
---|
| 48 |
|
---|
| 49 | PluginManager.Manager.Action += new PluginManagerActionEventHandler(splashScreen.Manager_Action);
|
---|
| 50 | PluginManager.Manager.Initialize();
|
---|
| 51 |
|
---|
| 52 | InitializeComponent();
|
---|
| 53 |
|
---|
| 54 | RefreshApplicationsList();
|
---|
| 55 |
|
---|
| 56 | this.Enabled = true;
|
---|
| 57 | this.Visible = true;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | private void RefreshApplicationsList() {
|
---|
[601] | 61 | applicationsListView.Items.Clear();
|
---|
[16] | 62 |
|
---|
[2] | 63 | pluginManagerListViewItem = new ListViewItem("Plugin Manager", 0);
|
---|
| 64 | pluginManagerListViewItem.Group = applicationsListView.Groups["Plugin Management"];
|
---|
| 65 | pluginManagerListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(pluginManagerListViewItem, "-"));
|
---|
| 66 | pluginManagerListViewItem.SubItems.Add(new ListViewItem.ListViewSubItem(pluginManagerListViewItem, "Install, upgrade or delete plugins"));
|
---|
| 67 | pluginManagerListViewItem.ToolTipText = "Install, upgrade or delete plugins";
|
---|
| 68 |
|
---|
| 69 | applicationsListView.Items.Add(pluginManagerListViewItem);
|
---|
| 70 |
|
---|
[1394] | 71 | foreach (ApplicationInfo info in PluginManager.Manager.InstalledApplications) {
|
---|
[2] | 72 | ListViewItem item = new ListViewItem(info.Name, 0);
|
---|
| 73 | item.Tag = info;
|
---|
| 74 | item.Group = applicationsListView.Groups["Applications"];
|
---|
| 75 | item.SubItems.Add(new ListViewItem.ListViewSubItem(item, info.Version.ToString()));
|
---|
| 76 | item.SubItems.Add(new ListViewItem.ListViewSubItem(item, info.Description));
|
---|
| 77 | item.ToolTipText = info.Description;
|
---|
| 78 | applicationsListView.Items.Add(item);
|
---|
| 79 | }
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | private void applicationsListView_ItemActivate(object sender, EventArgs e) {
|
---|
[1394] | 83 | if (applicationsListView.SelectedItems.Count > 0) {
|
---|
[2] | 84 | ListViewItem selected = applicationsListView.SelectedItems[0];
|
---|
[1394] | 85 | if (selected == pluginManagerListViewItem) {
|
---|
| 86 | try {
|
---|
| 87 | Cursor = Cursors.AppStarting;
|
---|
| 88 | ManagerForm form = new ManagerForm();
|
---|
| 89 | this.Visible = false;
|
---|
| 90 | form.ShowDialog(this);
|
---|
| 91 | RefreshApplicationsList();
|
---|
| 92 | this.Visible = true;
|
---|
| 93 | }
|
---|
| 94 | finally {
|
---|
| 95 | Cursor = Cursors.Arrow;
|
---|
| 96 | }
|
---|
[2] | 97 | } else {
|
---|
| 98 | ApplicationInfo app = (ApplicationInfo)applicationsListView.SelectedItems[0].Tag;
|
---|
[596] | 99 | SplashScreen splashScreen = new SplashScreen(2000, "Loading " + app.Name);
|
---|
[2] | 100 | splashScreen.Owner = this;
|
---|
| 101 | splashScreen.Show();
|
---|
| 102 | PluginManager.Manager.Action += new PluginManagerActionEventHandler(splashScreen.Manager_Action);
|
---|
[17] | 103 | Thread t = new Thread(delegate() {
|
---|
[242] | 104 | bool stopped = false;
|
---|
| 105 | do {
|
---|
| 106 | try {
|
---|
[1394] | 107 | if (!abortRequested)
|
---|
[1392] | 108 | PluginManager.Manager.Run(app);
|
---|
[242] | 109 | stopped = true;
|
---|
[1394] | 110 | }
|
---|
| 111 | catch (Exception ex) {
|
---|
[242] | 112 | stopped = false;
|
---|
| 113 | ThreadPool.QueueUserWorkItem(delegate(object exception) { ShowErrorMessageBox((Exception)exception); }, ex);
|
---|
| 114 | Thread.Sleep(5000); // sleep 5 seconds before autorestart
|
---|
| 115 | }
|
---|
[1394] | 116 | } while (!abortRequested && !stopped && app.AutoRestart);
|
---|
[17] | 117 | });
|
---|
[209] | 118 | t.SetApartmentState(ApartmentState.STA); // needed for the AdvancedOptimizationFrontent
|
---|
[17] | 119 | t.Start();
|
---|
[2] | 120 | }
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | private void applicationsListBox_SelectedIndexChanged(object sender, ListViewItemSelectionChangedEventArgs e) {
|
---|
[1394] | 125 | if (e.IsSelected) {
|
---|
[2] | 126 | startButton.Enabled = true;
|
---|
| 127 | } else {
|
---|
| 128 | startButton.Enabled = false;
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | private void largeIconsButton_Click(object sender, EventArgs e) {
|
---|
| 133 | applicationsListView.View = View.LargeIcon;
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 | private void listButton_Click(object sender, EventArgs e) {
|
---|
| 137 | applicationsListView.View = View.List;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | private void detailsButton_Click(object sender, EventArgs e) {
|
---|
| 141 | applicationsListView.View = View.Details;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
[241] | 144 | public void ShowErrorMessageBox(Exception ex) {
|
---|
| 145 | MessageBox.Show(BuildErrorMessage(ex),
|
---|
| 146 | "Error - " + ex.GetType().Name,
|
---|
| 147 | MessageBoxButtons.OK,
|
---|
| 148 | MessageBoxIcon.Error);
|
---|
| 149 | }
|
---|
| 150 | private string BuildErrorMessage(Exception ex) {
|
---|
| 151 | StringBuilder sb = new StringBuilder();
|
---|
| 152 | sb.Append("Sorry, but something went wrong!\n\n" + ex.Message + "\n\n" + ex.StackTrace);
|
---|
| 153 |
|
---|
[1394] | 154 | while (ex.InnerException != null) {
|
---|
[241] | 155 | ex = ex.InnerException;
|
---|
| 156 | sb.Append("\n\n-----\n\n" + ex.Message + "\n\n" + ex.StackTrace);
|
---|
| 157 | }
|
---|
| 158 | return sb.ToString();
|
---|
| 159 | }
|
---|
[1392] | 160 |
|
---|
| 161 | private void MainForm_FormClosing(object sender, FormClosingEventArgs e) {
|
---|
| 162 | abortRequested = true;
|
---|
| 163 | }
|
---|
[2] | 164 | }
|
---|
| 165 | }
|
---|