Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 10.7 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.Windows.Forms;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Core.Views;
28using HeuristicLab.MainForm;
29using HeuristicLab.PluginInfrastructure;
30
31namespace HeuristicLab.Optimization.Views {
32  /// <summary>
33  /// The base class for visual representations of items.
34  /// </summary>
35  [View("Algorithm View")]
36  [Content(typeof(Algorithm), true)]
37  [Content(typeof(IAlgorithm), false)]
38  public partial class AlgorithmView : NamedItemView {
39    private TypeSelectorDialog problemTypeSelectorDialog;
40
41    public new IAlgorithm Content {
42      get { return (IAlgorithm)base.Content; }
43      set { base.Content = value; }
44    }
45
46    /// <summary>
47    /// Initializes a new instance of <see cref="ItemBaseView"/>.
48    /// </summary>
49    public AlgorithmView() {
50      InitializeComponent();
51    }
52
53    protected override void OnInitialized(EventArgs e) {
54      // Set order of tab pages according to z order.
55      // NOTE: This is required due to a bug in the VS designer.
56      List<Control> tabPages = new List<Control>();
57      for (int i = 0; i < tabControl.Controls.Count; i++) {
58        tabPages.Add(tabControl.Controls[i]);
59      }
60      tabControl.Controls.Clear();
61      foreach (Control control in tabPages)
62        tabControl.Controls.Add(control);
63
64      base.OnInitialized(e);
65    }
66
67    protected override void DeregisterContentEvents() {
68      Content.ExceptionOccurred -= new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred);
69      Content.ExecutionStateChanged -= new EventHandler(Content_ExecutionStateChanged);
70      Content.ExecutionTimeChanged -= new EventHandler(Content_ExecutionTimeChanged);
71      Content.Prepared -= new EventHandler(Content_Prepared);
72      Content.ProblemChanged -= new EventHandler(Content_ProblemChanged);
73      base.DeregisterContentEvents();
74    }
75    protected override void RegisterContentEvents() {
76      base.RegisterContentEvents();
77      Content.ExceptionOccurred += new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred);
78      Content.ExecutionStateChanged += new EventHandler(Content_ExecutionStateChanged);
79      Content.ExecutionTimeChanged += new EventHandler(Content_ExecutionTimeChanged);
80      Content.Prepared += new EventHandler(Content_Prepared);
81      Content.ProblemChanged += new EventHandler(Content_ProblemChanged);
82    }
83
84    protected override void OnContentChanged() {
85      base.OnContentChanged();
86      if (Content == null) {
87        parameterCollectionView.Content = null;
88        problemViewHost.Content = null;
89        resultsView.Content = null;
90        runsView.Content = null;
91        executionTimeTextBox.Text = "-";
92      } else {
93        parameterCollectionView.Content = Content.Parameters;
94        problemViewHost.ViewType = null;
95        problemViewHost.Content = Content.Problem;
96        resultsView.Content = Content.Results.AsReadOnly();
97        runsView.Content = Content.Runs;
98        executionTimeTextBox.Text = Content.ExecutionTime.ToString();
99      }
100    }
101
102    protected override void SetEnabledStateOfControls() {
103      base.SetEnabledStateOfControls();
104      parameterCollectionView.Enabled = Content != null;
105      newProblemButton.Enabled = Content != null && !ReadOnly;
106      openProblemButton.Enabled = Content != null && !ReadOnly;
107      problemViewHost.Enabled = Content != null;
108      resultsView.Enabled = Content != null;
109      runsView.Enabled = Content != null;
110      executionTimeTextBox.Enabled = Content != null;
111      SetEnabledStateOfExecutableButtons();
112    }
113
114    protected override void OnClosed(FormClosedEventArgs e) {
115      if ((Content != null) && (Content.ExecutionState == ExecutionState.Started)) Content.Stop();
116      base.OnClosed(e);
117    }
118
119    #region Content Events
120    protected virtual void Content_ProblemChanged(object sender, EventArgs e) {
121      if (InvokeRequired)
122        Invoke(new EventHandler(Content_ProblemChanged), sender, e);
123      else {
124        problemViewHost.ViewType = null;
125        problemViewHost.Content = Content.Problem;
126      }
127    }
128    protected virtual void Content_Prepared(object sender, EventArgs e) {
129      if (InvokeRequired)
130        Invoke(new EventHandler(Content_Prepared), sender, e);
131      else
132        resultsView.Content = Content.Results.AsReadOnly();
133    }
134    protected virtual void Content_ExecutionStateChanged(object sender, EventArgs e) {
135      if (InvokeRequired)
136        Invoke(new EventHandler(Content_ExecutionStateChanged), sender, e);
137      else {
138        ReadOnly = Content.ExecutionState == ExecutionState.Started;
139        Locked = Content.ExecutionState == ExecutionState.Started;
140        SetEnabledStateOfExecutableButtons();
141      }
142    }
143    protected virtual void Content_ExecutionTimeChanged(object sender, EventArgs e) {
144      if (InvokeRequired)
145        Invoke(new EventHandler(Content_ExecutionTimeChanged), sender, e);
146      else
147        executionTimeTextBox.Text = Content.ExecutionTime.ToString();
148    }
149    protected virtual void Content_ExceptionOccurred(object sender, EventArgs<Exception> e) {
150      if (InvokeRequired)
151        Invoke(new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred), sender, e);
152      else
153        ErrorHandling.ShowErrorDialog(this, e.Value);
154    }
155    #endregion
156
157    #region Control Events
158    protected virtual void newProblemButton_Click(object sender, EventArgs e) {
159      if (problemTypeSelectorDialog == null) {
160        problemTypeSelectorDialog = new TypeSelectorDialog();
161        problemTypeSelectorDialog.Caption = "Select Problem";
162        problemTypeSelectorDialog.TypeSelector.Caption = "Available Problems";
163        problemTypeSelectorDialog.TypeSelector.Configure(Content.ProblemType, false, true);
164      }
165      if (problemTypeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
166        try {
167          Content.Problem = (IProblem)problemTypeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
168        }
169        catch (Exception ex) {
170          ErrorHandling.ShowErrorDialog(this, ex);
171        }
172      }
173    }
174    protected virtual void openProblemButton_Click(object sender, EventArgs e) {
175      openFileDialog.Title = "Open Problem";
176      if (openFileDialog.ShowDialog(this) == DialogResult.OK) {
177        newProblemButton.Enabled = openProblemButton.Enabled = false;
178        problemViewHost.Enabled = false;
179
180        ContentManager.LoadAsync(openFileDialog.FileName, delegate(IStorableContent content, Exception error) {
181          try {
182            if (error != null) throw error;
183            IProblem problem = content as IProblem;
184            if (problem == null)
185              Invoke(new Action(() =>
186                MessageBox.Show(this, "The selected file does not contain a problem.", "Invalid File", MessageBoxButtons.OK, MessageBoxIcon.Error)));
187            else if (!Content.ProblemType.IsInstanceOfType(problem))
188              Invoke(new Action(() =>
189                MessageBox.Show(this, "The selected file contains a problem type which is not supported by this algorithm.", "Invalid Problem Type", MessageBoxButtons.OK, MessageBoxIcon.Error)));
190            else
191              Content.Problem = problem;
192          }
193          catch (Exception ex) {
194            Invoke(new Action(() => ErrorHandling.ShowErrorDialog(this, ex)));
195          }
196          finally {
197            Invoke(new Action(delegate() {
198              problemViewHost.Enabled = true;
199              newProblemButton.Enabled = openProblemButton.Enabled = true;
200            }));
201          }
202        });
203      }
204    }
205    protected virtual void startButton_Click(object sender, EventArgs e) {
206      Content.Start();
207    }
208    protected virtual void pauseButton_Click(object sender, EventArgs e) {
209      Content.Pause();
210    }
211    protected virtual void stopButton_Click(object sender, EventArgs e) {
212      Content.Stop();
213    }
214    protected virtual void resetButton_Click(object sender, EventArgs e) {
215      Content.Prepare(false);
216    }
217    protected virtual void problemViewHost_DragEnterOver(object sender, DragEventArgs e) {
218      e.Effect = DragDropEffects.None;
219      Type type = e.Data.GetData("Type") as Type;
220      if ((type != null) && (Content.ProblemType.IsAssignableFrom(type))) {
221        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
222        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
223        else if ((e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) e.Effect = DragDropEffects.Copy;
224        else if ((e.AllowedEffect & DragDropEffects.Move) == DragDropEffects.Move) e.Effect = DragDropEffects.Move;
225        else if ((e.AllowedEffect & DragDropEffects.Link) == DragDropEffects.Link) e.Effect = DragDropEffects.Link;
226      }
227    }
228    protected virtual void problemViewHost_DragDrop(object sender, DragEventArgs e) {
229      if (e.Effect != DragDropEffects.None) {
230        IProblem problem = e.Data.GetData("Value") as IProblem;
231        if ((e.Effect & DragDropEffects.Copy) == DragDropEffects.Copy) problem = (IProblem)problem.Clone();
232        Content.Problem = problem;
233      }
234    }
235    #endregion
236
237    #region Helpers
238    private void SetEnabledStateOfExecutableButtons() {
239      if (Content == null) {
240        startButton.Enabled = pauseButton.Enabled = stopButton.Enabled = resetButton.Enabled = false;
241      } else {
242        startButton.Enabled = (Content.ExecutionState == ExecutionState.Prepared) || (Content.ExecutionState == ExecutionState.Paused);
243        pauseButton.Enabled = Content.ExecutionState == ExecutionState.Started;
244        stopButton.Enabled = (Content.ExecutionState == ExecutionState.Started) || (Content.ExecutionState == ExecutionState.Paused);
245        resetButton.Enabled = Content.ExecutionState != ExecutionState.Started;
246      }
247    }
248    #endregion
249  }
250}
Note: See TracBrowser for help on using the repository browser.