Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Breadcrumbs/HeuristicLab.Optimization.Views/3.3/RunView.cs @ 10508

Last change on this file since 10508 was 10103, checked in by jkarder, 11 years ago

#2116:

  • fixed issues within the outermost control detection
  • fixed visible property assignment of the breadcrumb control in ViewHost
File size: 7.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Windows.Forms;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Core.Views;
27using HeuristicLab.MainForm;
28using HeuristicLab.MainForm.WindowsForms;
29
30namespace HeuristicLab.Optimization.Views {
31  /// <summary>
32  /// The visual representation of a <see cref="Variable"/>.
33  /// </summary>
34  [View("Run View")]
35  [Content(typeof(IRun), true)]
36  public sealed partial class RunView : NamedItemView {
37    /// <summary>
38    /// Gets or sets the variable to represent visually.
39    /// </summary>
40    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
41    /// No own data storage present.</remarks>
42    public new IRun Content {
43      get { return (IRun)base.Content; }
44      set { base.Content = value; }
45    }
46
47    /// <summary>
48    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
49    /// </summary>
50    public RunView() {
51      InitializeComponent();
52    }
53
54    protected override void RegisterContentEvents() {
55      base.RegisterContentEvents();
56      Content.Changed += new EventHandler(Content_Changed);
57    }
58    protected override void DeregisterContentEvents() {
59      base.DeregisterContentEvents();
60      Content.Changed -= new EventHandler(Content_Changed);
61    }
62    private void Content_Changed(object sender, EventArgs e) {
63      if (InvokeRequired)
64        this.Invoke(new EventHandler(Content_Changed), sender, e);
65      else
66        UpdateColor();
67    }
68
69    protected override void OnContentChanged() {
70      base.OnContentChanged();
71      viewHost.Content = null;
72      if (Content != null)
73        UpdateColor();
74      FillListView();
75    }
76
77    protected override void SetEnabledStateOfControls() {
78      base.SetEnabledStateOfControls();
79      listView.Enabled = Content != null;
80      detailsGroupBox.Enabled = (Content != null) && (listView.SelectedItems.Count == 1);
81      changeColorButton.Enabled = Content != null;
82      showAlgorithmButton.Enabled = Content != null && Content.Algorithm != null && !Locked;
83    }
84
85    protected override void PropagateStateChanges(Control control, Type type, System.Reflection.PropertyInfo propertyInfo) {
86      if (propertyInfo.Name == "ReadOnly") return;
87      base.PropagateStateChanges(control, type, propertyInfo);
88    }
89
90    private void changeColorButton_Click(object sender, EventArgs e) {
91      if (colorDialog.ShowDialog(this) == DialogResult.OK) {
92        this.Content.Color = this.colorDialog.Color;
93      }
94    }
95    private void UpdateColor() {
96      this.colorDialog.Color = this.Content.Color;
97      this.colorArea.BackColor = this.Content.Color;
98    }
99
100    private string selectedName;
101    private void FillListView() {
102      if (listView.SelectedItems.Count == 1) selectedName = listView.SelectedItems[0].SubItems[0].Text;
103
104      listView.Items.Clear();
105      listView.SmallImageList.Images.Clear();
106      if (Content != null) {
107        foreach (string key in Content.Parameters.Keys)
108          CreateListViewItem(key, Content.Parameters[key], listView.Groups["parametersGroup"], selectedName);
109        foreach (string key in Content.Results.Keys)
110          CreateListViewItem(key, Content.Results[key], listView.Groups["resultsGroup"], selectedName);
111        if (listView.Items.Count > 0) {
112          for (int i = 0; i < listView.Columns.Count; i++)
113            listView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
114          selectedName = null;
115        }
116      }
117    }
118
119    private void CreateListViewItem(string name, IItem value, ListViewGroup group, string selectedName) {
120      ListViewItem item = new ListViewItem(new string[] { name, value != null ? value.ToString() : "-" });
121      item.Tag = value;
122      item.Group = group;
123      listView.SmallImageList.Images.Add(value == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : value.ItemImage);
124      item.ImageIndex = listView.SmallImageList.Images.Count - 1;
125      listView.Items.Add(item);
126      if ((selectedName != null) && name.Equals(selectedName)) item.Selected = true;
127    }
128
129    private void listView_SelectedIndexChanged(object sender, EventArgs e) {
130      if (listView.SelectedItems.Count == 1) {
131        var item = (IItem)listView.SelectedItems[0].Tag;
132        var mainForm = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>();
133        var outermostViewHost = mainForm.ShowContentInOutermostViewHost(item, this, true);
134        if (outermostViewHost != null && outermostViewHost.HotlinkingEnabled) {
135          outermostViewHost.ActiveView.ReadOnly = ReadOnly;
136          outermostViewHost.ActiveView.Locked = Locked;
137        } else {
138          if (showDetailsCheckBox.Checked) {
139            detailsGroupBox.Enabled = true;
140            viewHost.Content = item;
141          } else {
142            viewHost.Content = null;
143            detailsGroupBox.Enabled = false;
144          }
145        }
146      }
147    }
148    private void listView_DoubleClick(object sender, EventArgs e) {
149      if (listView.SelectedItems.Count == 1) {
150        var item = (IItem)listView.SelectedItems[0].Tag;
151        var mainForm = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>();
152        var outermostViewHost = mainForm.ShowContentInOutermostViewHost(item, this);
153        if (outermostViewHost != null) {
154          outermostViewHost.ActiveView.ReadOnly = ReadOnly;
155          outermostViewHost.ActiveView.Locked = Locked;
156        }
157      }
158    }
159    private void listView_ItemDrag(object sender, ItemDragEventArgs e) {
160      if (!Locked) {
161        ListViewItem listViewItem = (ListViewItem)e.Item;
162        IItem item = (IItem)listViewItem.Tag;
163        if (item != null) {
164          DataObject data = new DataObject();
165          data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, item);
166          DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy);
167        }
168      }
169    }
170    private void showDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
171      if (showDetailsCheckBox.Checked) {
172        splitContainer.Panel2Collapsed = false;
173        detailsGroupBox.Enabled = listView.SelectedItems.Count == 1;
174        viewHost.Content = listView.SelectedItems.Count == 1 ? (IContent)listView.SelectedItems[0].Tag : null;
175      } else {
176        splitContainer.Panel2Collapsed = true;
177        viewHost.Content = null;
178      }
179    }
180    private void showAlgorithmButton_Click(object sender, EventArgs e) {
181      if (!Locked) {
182        MainFormManager.MainForm.ShowContent((IContent)Content.Algorithm.Clone());
183      }
184    }
185  }
186}
Note: See TracBrowser for help on using the repository browser.