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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.MainForm;
|
---|
28 | using HeuristicLab.PluginInfrastructure;
|
---|
29 |
|
---|
30 | namespace 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 | protected override void DeregisterContentEvents() {
|
---|
52 | Content.EngineChanged -= new EventHandler(Content_EngineChanged);
|
---|
53 | Content.OperatorGraphChanged -= new EventHandler(Content_OperatorGraphChanged);
|
---|
54 | base.DeregisterContentEvents();
|
---|
55 | }
|
---|
56 | protected override void RegisterContentEvents() {
|
---|
57 | base.RegisterContentEvents();
|
---|
58 | Content.EngineChanged += new EventHandler(Content_EngineChanged);
|
---|
59 | Content.OperatorGraphChanged += new EventHandler(Content_OperatorGraphChanged);
|
---|
60 | }
|
---|
61 |
|
---|
62 | protected override void OnContentChanged() {
|
---|
63 | base.OnContentChanged();
|
---|
64 |
|
---|
65 | if (engineTypes == null) {
|
---|
66 | engineTypes = ApplicationManager.Manager.GetTypes(typeof(IEngine)).
|
---|
67 | OrderBy(x => {
|
---|
68 | string name = ItemAttribute.GetName(x);
|
---|
69 | if (name != null) return name;
|
---|
70 | else return x.GetPrettyName();
|
---|
71 | }).ToList();
|
---|
72 | foreach (Type t in engineTypes) {
|
---|
73 | string name = ItemAttribute.GetName(t);
|
---|
74 | if (name == null) name = t.GetPrettyName();
|
---|
75 | engineComboBox.Items.Add(name);
|
---|
76 | }
|
---|
77 | }
|
---|
78 |
|
---|
79 | if (Content == null) {
|
---|
80 | engineViewHost.Content = null;
|
---|
81 | operatorGraphViewHost.Content = null;
|
---|
82 | } else {
|
---|
83 | if (Content.Engine == null)
|
---|
84 | engineComboBox.SelectedIndex = -1;
|
---|
85 | else
|
---|
86 | engineComboBox.SelectedIndex = engineTypes.IndexOf(Content.Engine.GetType());
|
---|
87 | engineViewHost.ViewType = null;
|
---|
88 | engineViewHost.Content = Content.Engine;
|
---|
89 | operatorGraphViewHost.ViewType = null;
|
---|
90 | operatorGraphViewHost.Content = Content.OperatorGraph;
|
---|
91 | }
|
---|
92 | SetEnableStateOfControls();
|
---|
93 | }
|
---|
94 |
|
---|
95 | protected override void OnReadOnlyChanged() {
|
---|
96 | base.OnReadOnlyChanged();
|
---|
97 | SetEnableStateOfControls();
|
---|
98 | }
|
---|
99 | protected override void OnLockedChanged() {
|
---|
100 | base.OnLockedChanged();
|
---|
101 | SetEnableStateOfControls();
|
---|
102 | }
|
---|
103 | private void SetEnableStateOfControls() {
|
---|
104 | engineViewHost.Enabled = Content != null;
|
---|
105 | newOperatorGraphButton.Enabled = false;
|
---|
106 | openOperatorGraphButton.Enabled = false;
|
---|
107 | operatorGraphViewHost.Enabled = Content != null;
|
---|
108 | engineComboBox.Enabled = Content != null && !ReadOnly;
|
---|
109 | createUserDefinedAlgorithmButton.Enabled = Content != null && !Locked;
|
---|
110 | }
|
---|
111 |
|
---|
112 | protected virtual void Content_EngineChanged(object sender, System.EventArgs e) {
|
---|
113 | if (InvokeRequired)
|
---|
114 | Invoke(new EventHandler(Content_EngineChanged), sender, e);
|
---|
115 | else {
|
---|
116 | if (Content.Engine == null)
|
---|
117 | engineComboBox.SelectedIndex = -1;
|
---|
118 | else
|
---|
119 | engineComboBox.SelectedIndex = engineTypes.IndexOf(Content.Engine.GetType());
|
---|
120 | engineViewHost.ViewType = null;
|
---|
121 | engineViewHost.Content = Content.Engine;
|
---|
122 | }
|
---|
123 | }
|
---|
124 | private void Content_OperatorGraphChanged(object sender, EventArgs e) {
|
---|
125 | if (InvokeRequired)
|
---|
126 | Invoke(new EventHandler(Content_OperatorGraphChanged), sender, e);
|
---|
127 | else {
|
---|
128 | operatorGraphViewHost.ViewType = null;
|
---|
129 | operatorGraphViewHost.Content = Content.OperatorGraph;
|
---|
130 | }
|
---|
131 | }
|
---|
132 |
|
---|
133 | protected virtual void engineComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
134 | if (Content != null) {
|
---|
135 | if (engineComboBox.SelectedIndex == -1)
|
---|
136 | Content.Engine = null;
|
---|
137 | else {
|
---|
138 | Type t = engineTypes[engineComboBox.SelectedIndex];
|
---|
139 | if ((Content.Engine == null) || (Content.Engine.GetType() != t))
|
---|
140 | Content.Engine = (IEngine)Activator.CreateInstance(t);
|
---|
141 | }
|
---|
142 | }
|
---|
143 | }
|
---|
144 |
|
---|
145 | protected virtual void createUserDefinedAlgorithmButton_Click(object sender, EventArgs e) {
|
---|
146 | IContentView view = MainFormManager.MainForm.ShowContent(Content.CreateUserDefinedAlgorithm());
|
---|
147 | if (view != null) {
|
---|
148 | view.ReadOnly = this.ReadOnly;
|
---|
149 | view.Locked = this.Locked;
|
---|
150 | }
|
---|
151 | }
|
---|
152 | }
|
---|
153 | }
|
---|