Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.cs @ 3557

Last change on this file since 3557 was 3557, checked in by mkommend, 14 years ago

changed logic of showing new views (ticket #972)

File size: 5.9 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.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.MainForm;
28using HeuristicLab.PluginInfrastructure;
29
30namespace HeuristicLab.Optimization.Views {
31  /// <summary>
32  /// The base class for visual representations of items.
33  /// </summary>
34  [View("EngineAlgorithm View")]
35  [Content(typeof(EngineAlgorithm), true)]
36  public partial class EngineAlgorithmView : AlgorithmView {
37    private List<Type> engineTypes;
38
39    public new EngineAlgorithm Content {
40      get { return (EngineAlgorithm)base.Content; }
41      set { base.Content = value; }
42    }
43
44    /// <summary>
45    /// Initializes a new instance of <see cref="ItemBaseView"/>.
46    /// </summary>
47    public EngineAlgorithmView() {
48      InitializeComponent();
49    }
50
51    /// <summary>
52    /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
53    /// </summary>
54    /// <param name="item">The item that should be displayed.</param>
55    public EngineAlgorithmView(EngineAlgorithm content)
56      : this() {
57      Content = content;
58    }
59
60    protected override void DeregisterContentEvents() {
61      Content.EngineChanged -= new EventHandler(Content_EngineChanged);
62      Content.OperatorGraphChanged -= new EventHandler(Content_OperatorGraphChanged);
63      base.DeregisterContentEvents();
64    }
65    protected override void RegisterContentEvents() {
66      base.RegisterContentEvents();
67      Content.EngineChanged += new EventHandler(Content_EngineChanged);
68      Content.OperatorGraphChanged += new EventHandler(Content_OperatorGraphChanged);
69    }
70
71    protected override void OnContentChanged() {
72      base.OnContentChanged();
73
74      if (engineTypes == null) {
75        engineTypes = ApplicationManager.Manager.GetTypes(typeof(IEngine)).
76                      OrderBy(x => {
77                        string name = ItemAttribute.GetName(x);
78                        if (name != null) return name;
79                        else return x.GetPrettyName();
80                      }).ToList();
81        foreach (Type t in engineTypes) {
82          string name = ItemAttribute.GetName(t);
83          if (name == null) name = t.GetPrettyName();
84          engineComboBox.Items.Add(name);
85        }
86      }
87
88      if (Content == null) {
89        engineViewHost.Content = null;
90        operatorGraphViewHost.Content = null;
91      } else {
92        if (Content.Engine == null)
93          engineComboBox.SelectedIndex = -1;
94        else
95          engineComboBox.SelectedIndex = engineTypes.IndexOf(Content.Engine.GetType());
96        engineViewHost.ViewType = null;
97        engineViewHost.Content = Content.Engine;
98        operatorGraphViewHost.ViewType = null;
99        operatorGraphViewHost.Content = Content.OperatorGraph;
100      }
101      SetEnableStateOfControls();
102    }
103
104    protected override void OnReadOnlyChanged() {
105      base.OnReadOnlyChanged();
106      SetEnableStateOfControls();
107    }
108    protected override void OnLockedChanged() {
109      base.OnLockedChanged();
110      SetEnableStateOfControls();
111    }
112    private void SetEnableStateOfControls() {
113      engineViewHost.Enabled = Content != null;
114      newOperatorGraphButton.Enabled = false;
115      openOperatorGraphButton.Enabled = false;
116      operatorGraphViewHost.Enabled = Content != null;
117      engineComboBox.Enabled = Content != null && !ReadOnly;
118      createUserDefinedAlgorithmButton.Enabled = Content != null && !Locked;
119    }
120
121    protected virtual void Content_EngineChanged(object sender, System.EventArgs e) {
122      if (InvokeRequired)
123        Invoke(new EventHandler(Content_EngineChanged), sender, e);
124      else {
125        if (Content.Engine == null)
126          engineComboBox.SelectedIndex = -1;
127        else
128          engineComboBox.SelectedIndex = engineTypes.IndexOf(Content.Engine.GetType());
129        engineViewHost.ViewType = null;
130        engineViewHost.Content = Content.Engine;
131      }
132    }
133    private void Content_OperatorGraphChanged(object sender, EventArgs e) {
134      if (InvokeRequired)
135        Invoke(new EventHandler(Content_OperatorGraphChanged), sender, e);
136      else {
137        operatorGraphViewHost.ViewType = null;
138        operatorGraphViewHost.Content = Content.OperatorGraph;
139      }
140    }
141
142    protected virtual void engineComboBox_SelectedIndexChanged(object sender, EventArgs e) {
143      if (Content != null) {
144        if (engineComboBox.SelectedIndex == -1)
145          Content.Engine = null;
146        else {
147          Type t = engineTypes[engineComboBox.SelectedIndex];
148          if ((Content.Engine == null) || (Content.Engine.GetType() != t))
149            Content.Engine = (IEngine)Activator.CreateInstance(t);
150        }
151      }
152    }
153
154    protected virtual void createUserDefinedAlgorithmButton_Click(object sender, EventArgs e) {
155      IContentView view = MainFormManager.MainForm.ShowContent(Content.CreateUserDefinedAlgorithm());
156      if (view != null) {
157        view.ReadOnly = this.ReadOnly;
158        view.Locked = this.Locked;
159      }
160    }
161  }
162}
Note: See TracBrowser for help on using the repository browser.