Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.cs @ 17054

Last change on this file since 17054 was 17054, checked in by mkommend, 5 years ago

#2955: Merged r16241, r16243, r16244, r16763 into stable.

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