1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.Drawing;
|
---|
25 | using System.Linq;
|
---|
26 | using System.Windows.Forms;
|
---|
27 | using HeuristicLab.Core;
|
---|
28 | using HeuristicLab.Core.Views;
|
---|
29 | using HeuristicLab.MainForm;
|
---|
30 | using HeuristicLab.Optimization;
|
---|
31 | using HeuristicLab.Optimization.Views;
|
---|
32 | using HeuristicLab.Persistence.Default.Xml;
|
---|
33 | using HeuristicLab.PluginInfrastructure;
|
---|
34 |
|
---|
35 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
36 |
|
---|
37 | [View("DataAnalysisSolution View")]
|
---|
38 | [Content(typeof(DataAnalysisSolution), false)]
|
---|
39 | public partial class DataAnalysisSolutionView : NamedItemCollectionView<IResult> {
|
---|
40 | public DataAnalysisSolutionView() {
|
---|
41 | InitializeComponent();
|
---|
42 | viewHost.ViewsLabelVisible = false;
|
---|
43 | }
|
---|
44 |
|
---|
45 | public new DataAnalysisSolution Content {
|
---|
46 | get { return (DataAnalysisSolution)base.Content; }
|
---|
47 | set { base.Content = value; }
|
---|
48 | }
|
---|
49 |
|
---|
50 | protected override void SetEnabledStateOfControls() {
|
---|
51 | base.SetEnabledStateOfControls();
|
---|
52 | addButton.Enabled = false;
|
---|
53 | removeButton.Enabled = false;
|
---|
54 | loadProblemDataButton.Enabled = Content != null && !Locked;
|
---|
55 | }
|
---|
56 |
|
---|
57 | protected override void RegisterContentEvents() {
|
---|
58 | base.RegisterContentEvents();
|
---|
59 | Content.ProblemDataChanged += new EventHandler(Content_ProblemDataChanged);
|
---|
60 | }
|
---|
61 | protected override void DeregisterContentEvents() {
|
---|
62 | base.DeregisterContentEvents();
|
---|
63 | Content.ProblemDataChanged -= new EventHandler(Content_ProblemDataChanged);
|
---|
64 | }
|
---|
65 | private void Content_ProblemDataChanged(object sender, EventArgs e) {
|
---|
66 | OnContentChanged();
|
---|
67 | }
|
---|
68 |
|
---|
69 | protected override void OnContentChanged() {
|
---|
70 | string selectedName = null;
|
---|
71 | if ((itemsListView.SelectedItems.Count == 1) && (itemsListView.SelectedItems[0].Tag != null && itemsListView.SelectedItems[0].Tag is Type))
|
---|
72 | selectedName = itemsListView.SelectedItems[0].Text;
|
---|
73 |
|
---|
74 | base.OnContentChanged();
|
---|
75 | AddEvaluationViewTypes();
|
---|
76 |
|
---|
77 | //recover selection
|
---|
78 | if (selectedName != null) {
|
---|
79 | foreach (ListViewItem item in itemsListView.Items) {
|
---|
80 | if (item.Tag != null && item.Tag is Type && item.Text == selectedName)
|
---|
81 | item.Selected = true;
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|
85 |
|
---|
86 | protected override IResult CreateItem() {
|
---|
87 | return null;
|
---|
88 | }
|
---|
89 |
|
---|
90 | protected virtual void AddEvaluationViewTypes() {
|
---|
91 | if (Content != null && !Content.ProblemData.IsEmpty) {
|
---|
92 | var viewTypes = MainFormManager.GetViewTypes(Content.GetType(), true)
|
---|
93 | .Where(t => typeof(IDataAnalysisSolutionEvaluationView).IsAssignableFrom(t));
|
---|
94 | foreach (var viewType in viewTypes)
|
---|
95 | AddViewListViewItem(viewType, ((IDataAnalysisSolutionEvaluationView)Activator.CreateInstance(viewType)).ViewImage);
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | protected override void itemsListView_DoubleClick(object sender, EventArgs e) {
|
---|
100 | if (itemsListView.SelectedItems.Count != 1) return;
|
---|
101 |
|
---|
102 | IResult result = itemsListView.SelectedItems[0].Tag as IResult;
|
---|
103 | Type viewType = itemsListView.SelectedItems[0].Tag as Type;
|
---|
104 | if (result != null) {
|
---|
105 | IContentView view = MainFormManager.MainForm.ShowContent(result, typeof(ResultView));
|
---|
106 | if (view != null) {
|
---|
107 | view.ReadOnly = ReadOnly;
|
---|
108 | view.Locked = Locked;
|
---|
109 | }
|
---|
110 | } else if (viewType != null) {
|
---|
111 | MainFormManager.MainForm.ShowContent(Content, viewType);
|
---|
112 | }
|
---|
113 | }
|
---|
114 |
|
---|
115 | protected override void itemsListView_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
116 | if (itemsListView.SelectedItems.Count == 1 && itemsListView.SelectedItems[0].Tag is Type) {
|
---|
117 | detailsGroupBox.Enabled = true;
|
---|
118 | Type viewType = (Type)itemsListView.SelectedItems[0].Tag;
|
---|
119 | viewHost.ViewType = viewType;
|
---|
120 | viewHost.Content = Content;
|
---|
121 | } else
|
---|
122 | base.itemsListView_SelectedIndexChanged(sender, e);
|
---|
123 | }
|
---|
124 |
|
---|
125 | protected virtual void loadProblemDataButton_Click(object sender, EventArgs e) {
|
---|
126 | if (loadProblemDataFileDialog.ShowDialog(this) != DialogResult.OK) return;
|
---|
127 | try {
|
---|
128 | object hlFile = XmlParser.Deserialize(loadProblemDataFileDialog.FileName);
|
---|
129 |
|
---|
130 | IDataAnalysisProblemData problemData = null;
|
---|
131 | if (hlFile is IDataAnalysisProblemData) {
|
---|
132 | problemData = (IDataAnalysisProblemData)hlFile;
|
---|
133 | } else if (hlFile is IDataAnalysisProblem) {
|
---|
134 | problemData = ((IDataAnalysisProblem)hlFile).ProblemData;
|
---|
135 | } else if (hlFile is IDataAnalysisSolution) {
|
---|
136 | problemData = ((IDataAnalysisSolution)hlFile).ProblemData;
|
---|
137 | }
|
---|
138 |
|
---|
139 | if (problemData == null)
|
---|
140 | throw new InvalidOperationException("The chosen HeuristicLab file does not contain a ProblemData, Problem, or DataAnalysisSolution.");
|
---|
141 |
|
---|
142 | var solution = (IDataAnalysisSolution)Content.Clone();
|
---|
143 | problemData.AdjustProblemDataProperties(solution.ProblemData);
|
---|
144 | solution.ProblemData = problemData;
|
---|
145 | if (!solution.Name.EndsWith(" with loaded problemData"))
|
---|
146 | solution.Name += " with loaded problemData";
|
---|
147 | MainFormManager.MainForm.ShowContent(solution);
|
---|
148 | }
|
---|
149 | catch (InvalidOperationException invalidOperationException) {
|
---|
150 | ErrorHandling.ShowErrorDialog(this, invalidOperationException);
|
---|
151 | }
|
---|
152 | catch (ArgumentException argumentException) {
|
---|
153 | ErrorHandling.ShowErrorDialog(this, argumentException);
|
---|
154 | }
|
---|
155 | }
|
---|
156 |
|
---|
157 | protected void AddViewListViewItem(Type viewType, Image image) {
|
---|
158 | ListViewItem listViewItem = new ListViewItem();
|
---|
159 | listViewItem.Text = ViewAttribute.GetViewName(viewType);
|
---|
160 | itemsListView.SmallImageList.Images.Add(image);
|
---|
161 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
162 | listViewItem.Tag = viewType;
|
---|
163 | itemsListView.Items.Add(listViewItem);
|
---|
164 |
|
---|
165 | AdjustListViewColumnSizes();
|
---|
166 | }
|
---|
167 |
|
---|
168 | protected void RemoveViewListViewItem(Type viewType) {
|
---|
169 | List<ListViewItem> itemsToRemove = itemsListView.Items.Cast<ListViewItem>().Where(item => item.Tag as Type == viewType).ToList();
|
---|
170 |
|
---|
171 | foreach (ListViewItem item in itemsToRemove)
|
---|
172 | itemsListView.Items.Remove(item);
|
---|
173 | }
|
---|
174 |
|
---|
175 | protected override void showDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
176 | if (showDetailsCheckBox.Checked && itemsListView.SelectedItems.Count == 1 && itemsListView.SelectedItems[0].Tag is Type) {
|
---|
177 | Type viewType = (Type)itemsListView.SelectedItems[0].Tag;
|
---|
178 | viewHost.ViewType = viewType;
|
---|
179 | viewHost.Content = Content;
|
---|
180 | splitContainer.Panel2Collapsed = false;
|
---|
181 | detailsGroupBox.Enabled = true;
|
---|
182 | } else base.showDetailsCheckBox_CheckedChanged(sender, e);
|
---|
183 | }
|
---|
184 |
|
---|
185 | protected override void RebuildImageList() {
|
---|
186 | itemsListView.SmallImageList.Images.Clear();
|
---|
187 | foreach (ListViewItem listViewItem in itemsListView.Items) {
|
---|
188 | IResult result = listViewItem.Tag as IResult;
|
---|
189 | Type viewType = listViewItem.Tag as Type;
|
---|
190 | if (result != null) itemsListView.SmallImageList.Images.Add(result.ItemImage);
|
---|
191 | else if (viewType != null && typeof(IDataAnalysisSolutionEvaluationView).IsAssignableFrom(viewType))
|
---|
192 | itemsListView.SmallImageList.Images.Add(((IDataAnalysisSolutionEvaluationView)Activator.CreateInstance(viewType)).ViewImage);
|
---|
193 | else itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
|
---|
194 |
|
---|
195 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
196 | }
|
---|
197 | }
|
---|
198 |
|
---|
199 | #region drag and drop
|
---|
200 | protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
|
---|
201 | validDragOperation = false;
|
---|
202 | if (ReadOnly) return;
|
---|
203 | if (e.Effect != DragDropEffects.Copy) return;
|
---|
204 |
|
---|
205 | var dropData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
206 | if (dropData is IDataAnalysisProblemData) validDragOperation = true;
|
---|
207 | else if (dropData is IDataAnalysisProblem) validDragOperation = true;
|
---|
208 | else if (dropData is IValueParameter) {
|
---|
209 | var param = (IValueParameter)dropData;
|
---|
210 | if (param.Value is IDataAnalysisProblemData) validDragOperation = true;
|
---|
211 | }
|
---|
212 | }
|
---|
213 |
|
---|
214 | protected override void itemsListView_DragDrop(object sender, DragEventArgs e) {
|
---|
215 | if (e.Effect == DragDropEffects.None) return;
|
---|
216 |
|
---|
217 | IDataAnalysisProblemData problemData = null;
|
---|
218 | var dropData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
219 | if (dropData is IDataAnalysisProblemData)
|
---|
220 | problemData = (IDataAnalysisProblemData)dropData;
|
---|
221 | else if (dropData is IDataAnalysisProblem)
|
---|
222 | problemData = ((IDataAnalysisProblem)dropData).ProblemData;
|
---|
223 | else if (dropData is IValueParameter) {
|
---|
224 | var param = (IValueParameter)dropData;
|
---|
225 | problemData = param.Value as DataAnalysisProblemData;
|
---|
226 | }
|
---|
227 | if (problemData == null) return;
|
---|
228 |
|
---|
229 | try {
|
---|
230 | problemData.AdjustProblemDataProperties(Content.ProblemData);
|
---|
231 | Content.ProblemData = problemData;
|
---|
232 |
|
---|
233 | if (!Content.Name.EndsWith(" with changed problemData"))
|
---|
234 | Content.Name += " with changed problemData";
|
---|
235 | }
|
---|
236 | catch (InvalidOperationException invalidOperationException) {
|
---|
237 | ErrorHandling.ShowErrorDialog(this, invalidOperationException);
|
---|
238 | }
|
---|
239 | catch (ArgumentException argumentException) {
|
---|
240 | ErrorHandling.ShowErrorDialog(this, argumentException);
|
---|
241 | }
|
---|
242 | }
|
---|
243 | #endregion
|
---|
244 |
|
---|
245 | }
|
---|
246 | }
|
---|