[3884] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3884] | 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
|
---|
[5829] | 21 |
|
---|
[3884] | 22 | using System;
|
---|
[5829] | 23 | using System.Collections.Generic;
|
---|
[6612] | 24 | using System.Drawing;
|
---|
| 25 | using System.Linq;
|
---|
[3884] | 26 | using System.Windows.Forms;
|
---|
[6692] | 27 | using HeuristicLab.Core;
|
---|
[6652] | 28 | using HeuristicLab.Core.Views;
|
---|
[3884] | 29 | using HeuristicLab.MainForm;
|
---|
[6652] | 30 | using HeuristicLab.Optimization;
|
---|
[5829] | 31 | using HeuristicLab.Optimization.Views;
|
---|
[10175] | 32 | using HeuristicLab.Persistence.Default.Xml;
|
---|
[9973] | 33 | using HeuristicLab.PluginInfrastructure;
|
---|
[3884] | 34 |
|
---|
| 35 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[9973] | 36 |
|
---|
[5834] | 37 | [View("DataAnalysisSolution View")]
|
---|
[6652] | 38 | [Content(typeof(DataAnalysisSolution), false)]
|
---|
[9974] | 39 | public partial class DataAnalysisSolutionView : NamedItemCollectionView<IResult> {
|
---|
[3884] | 40 | public DataAnalysisSolutionView() {
|
---|
| 41 | InitializeComponent();
|
---|
[6652] | 42 | viewHost.ViewsLabelVisible = false;
|
---|
[3884] | 43 | }
|
---|
| 44 |
|
---|
[5829] | 45 | public new DataAnalysisSolution Content {
|
---|
| 46 | get { return (DataAnalysisSolution)base.Content; }
|
---|
[3884] | 47 | set { base.Content = value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[6666] | 50 | protected override void SetEnabledStateOfControls() {
|
---|
| 51 | base.SetEnabledStateOfControls();
|
---|
| 52 | addButton.Enabled = false;
|
---|
| 53 | removeButton.Enabled = false;
|
---|
[10540] | 54 | loadProblemDataButton.Enabled = Content != null && !Locked;
|
---|
[6666] | 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 |
|
---|
[3884] | 69 | protected override void OnContentChanged() {
|
---|
[5829] | 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 |
|
---|
[3884] | 74 | base.OnContentChanged();
|
---|
[6642] | 75 | AddEvaluationViewTypes();
|
---|
[5829] | 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 | }
|
---|
[3884] | 83 | }
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[6652] | 86 | protected override IResult CreateItem() {
|
---|
| 87 | return null;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
[6642] | 90 | protected virtual void AddEvaluationViewTypes() {
|
---|
[6666] | 91 | if (Content != null && !Content.ProblemData.IsEmpty) {
|
---|
[6642] | 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 |
|
---|
[5829] | 99 | protected override void itemsListView_DoubleClick(object sender, EventArgs e) {
|
---|
[6652] | 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) {
|
---|
[5829] | 111 | MainFormManager.MainForm.ShowContent(Content, viewType);
|
---|
[6652] | 112 | }
|
---|
[3884] | 113 | }
|
---|
[3915] | 114 |
|
---|
[5829] | 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);
|
---|
[3884] | 123 | }
|
---|
[3915] | 124 |
|
---|
[10175] | 125 | protected virtual void loadProblemDataButton_Click(object sender, EventArgs e) {
|
---|
| 126 | if (loadProblemDataFileDialog.ShowDialog(this) != DialogResult.OK) return;
|
---|
[10540] | 127 | try {
|
---|
| 128 | object hlFile = XmlParser.Deserialize(loadProblemDataFileDialog.FileName);
|
---|
[9973] | 129 |
|
---|
[10540] | 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 | }
|
---|
[10175] | 138 |
|
---|
[10540] | 139 | if (problemData == null)
|
---|
| 140 | throw new InvalidOperationException("The chosen HeuristicLab file does not contain a ProblemData, Problem, or DataAnalysisSolution.");
|
---|
[10175] | 141 |
|
---|
| 142 | var solution = (IDataAnalysisSolution)Content.Clone();
|
---|
[10540] | 143 | problemData.AdjustProblemDataProperties(solution.ProblemData);
|
---|
[10175] | 144 | solution.ProblemData = problemData;
|
---|
[10540] | 145 | if (!solution.Name.EndsWith(" with loaded problemData"))
|
---|
| 146 | solution.Name += " with loaded problemData";
|
---|
[10175] | 147 | MainFormManager.MainForm.ShowContent(solution);
|
---|
| 148 | }
|
---|
[10540] | 149 | catch (InvalidOperationException invalidOperationException) {
|
---|
| 150 | ErrorHandling.ShowErrorDialog(this, invalidOperationException);
|
---|
[9973] | 151 | }
|
---|
[10540] | 152 | catch (ArgumentException argumentException) {
|
---|
| 153 | ErrorHandling.ShowErrorDialog(this, argumentException);
|
---|
| 154 | }
|
---|
[9973] | 155 | }
|
---|
| 156 |
|
---|
[6612] | 157 | protected void AddViewListViewItem(Type viewType, Image image) {
|
---|
[5829] | 158 | ListViewItem listViewItem = new ListViewItem();
|
---|
| 159 | listViewItem.Text = ViewAttribute.GetViewName(viewType);
|
---|
[6612] | 160 | itemsListView.SmallImageList.Images.Add(image);
|
---|
[5829] | 161 | listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
|
---|
| 162 | listViewItem.Tag = viewType;
|
---|
| 163 | itemsListView.Items.Add(listViewItem);
|
---|
| 164 |
|
---|
| 165 | AdjustListViewColumnSizes();
|
---|
[3915] | 166 | }
|
---|
[5829] | 167 |
|
---|
| 168 | protected void RemoveViewListViewItem(Type viewType) {
|
---|
[6612] | 169 | List<ListViewItem> itemsToRemove = itemsListView.Items.Cast<ListViewItem>().Where(item => item.Tag as Type == viewType).ToList();
|
---|
[5829] | 170 |
|
---|
| 171 | foreach (ListViewItem item in itemsToRemove)
|
---|
| 172 | itemsListView.Items.Remove(item);
|
---|
[3884] | 173 | }
|
---|
[6653] | 174 |
|
---|
[8125] | 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 |
|
---|
[8798] | 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 |
|
---|
[6653] | 199 | #region drag and drop
|
---|
| 200 | protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
|
---|
| 201 | validDragOperation = false;
|
---|
[6692] | 202 | if (ReadOnly) return;
|
---|
[10540] | 203 | if (e.Effect != DragDropEffects.Copy) return;
|
---|
[6692] | 204 |
|
---|
| 205 | var dropData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
[10540] | 206 | if (dropData is IDataAnalysisProblemData) validDragOperation = true;
|
---|
[10173] | 207 | else if (dropData is IDataAnalysisProblem) validDragOperation = true;
|
---|
[6692] | 208 | else if (dropData is IValueParameter) {
|
---|
| 209 | var param = (IValueParameter)dropData;
|
---|
[10173] | 210 | if (param.Value is IDataAnalysisProblemData) validDragOperation = true;
|
---|
[6653] | 211 | }
|
---|
| 212 | }
|
---|
| 213 |
|
---|
| 214 | protected override void itemsListView_DragDrop(object sender, DragEventArgs e) {
|
---|
[10174] | 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;
|
---|
[6653] | 226 | }
|
---|
[10174] | 227 | if (problemData == null) return;
|
---|
| 228 |
|
---|
[10540] | 229 | try {
|
---|
| 230 | problemData.AdjustProblemDataProperties(Content.ProblemData);
|
---|
| 231 | Content.ProblemData = problemData;
|
---|
[10174] | 232 |
|
---|
[10540] | 233 | if (!Content.Name.EndsWith(" with changed problemData"))
|
---|
| 234 | Content.Name += " with changed problemData";
|
---|
[10174] | 235 | }
|
---|
[10540] | 236 | catch (InvalidOperationException invalidOperationException) {
|
---|
| 237 | ErrorHandling.ShowErrorDialog(this, invalidOperationException);
|
---|
| 238 | }
|
---|
| 239 | catch (ArgumentException argumentException) {
|
---|
| 240 | ErrorHandling.ShowErrorDialog(this, argumentException);
|
---|
| 241 | }
|
---|
[10174] | 242 | }
|
---|
| 243 | #endregion
|
---|
[10540] | 244 |
|
---|
[3884] | 245 | }
|
---|
| 246 | }
|
---|