Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs @ 18242

Last change on this file since 18242 was 17571, checked in by mkommend, 4 years ago

#2521: Changed parameters to use readonly only for GUI manipulation.

File size: 8.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.PluginInfrastructure;
29
30namespace HeuristicLab.Parameters.Views {
31  /// <summary>
32  /// The visual representation of a <see cref="Parameter"/>.
33  /// </summary>
34  [View("ValueParameter View")]
35  [Content(typeof(OptionalValueParameter<>), true)]
36  [Content(typeof(ValueParameter<>), true)]
37  [Content(typeof(IValueParameter<>), false)]
38  public partial class ValueParameterView<T> : ParameterView where T : class, IItem {
39    protected TypeSelectorDialog typeSelectorDialog;
40
41    /// <summary>
42    /// Gets or sets the variable to represent visually.
43    /// </summary>
44    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
45    /// No own data storage present.</remarks>
46    public new IValueParameter<T> Content {
47      get { return (IValueParameter<T>)base.Content; }
48      set { base.Content = value; }
49    }
50
51    /// <summary>
52    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
53    /// </summary>
54    public ValueParameterView() {
55      InitializeComponent();
56    }
57
58    /// <summary>
59    /// Clean up any resources being used.
60    /// </summary>
61    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
62    protected override void Dispose(bool disposing) {
63      if (disposing) {
64        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
65        if (components != null) components.Dispose();
66      }
67      base.Dispose(disposing);
68    }
69
70    /// <summary>
71    /// Removes the eventhandlers from the underlying <see cref="IVariable"/>.
72    /// </summary>
73    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
74    protected override void DeregisterContentEvents() {
75      Content.GetsCollectedChanged -= new EventHandler(Content_GetsCollectedChanged);
76      Content.ReadOnlyChanged -= new EventHandler(Content_ReadOnlyChanged);
77      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
78      base.DeregisterContentEvents();
79    }
80
81    /// <summary>
82    /// Adds eventhandlers to the underlying <see cref="IVariable"/>.
83    /// </summary>
84    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
85    protected override void RegisterContentEvents() {
86      base.RegisterContentEvents();
87      Content.GetsCollectedChanged += new EventHandler(Content_GetsCollectedChanged);
88      Content.ReadOnlyChanged += new EventHandler(Content_ReadOnlyChanged);
89      Content.ValueChanged += new EventHandler(Content_ValueChanged);
90    }
91
92    protected override void OnContentChanged() {
93      base.OnContentChanged();
94      if (Content == null) {
95        showInRunCheckBox.Checked = false;
96        valueViewHost.Content = null;
97      } else {
98        SetDataTypeTextBoxText();
99        showInRunCheckBox.Checked = Content.GetsCollected;
100        valueViewHost.ViewType = null;
101        valueViewHost.Content = Content.Value;
102      }
103    }
104
105    protected override void SetEnabledStateOfControls() {
106      base.SetEnabledStateOfControls();
107      ReadOnly = Content == null || Content.ReadOnly;
108      setValueButton.Enabled = Content != null && !Content.ReadOnly && !(Content is IFixedValueParameter) && !ReadOnly;
109      clearValueButton.Enabled = Content != null && !Content.ReadOnly && Content.Value != null && !(Content is IFixedValueParameter) && !(Content is ValueParameter<T>) && !ReadOnly;
110      showInRunCheckBox.Enabled = Content != null && !ReadOnly;
111    }
112
113    protected virtual void Content_ValueChanged(object sender, EventArgs e) {
114      if (InvokeRequired)
115        Invoke(new EventHandler(Content_ValueChanged), sender, e);
116      else {
117        SetDataTypeTextBoxText();
118        setValueButton.Enabled = Content != null && !Content.ReadOnly && !(Content is IFixedValueParameter) && !ReadOnly;
119        clearValueButton.Enabled = Content != null && !Content.ReadOnly && Content.Value != null && !(Content is IFixedValueParameter<T>) && !(Content is ValueParameter<T>) && !ReadOnly;
120        valueViewHost.ViewType = null;
121        valueViewHost.Content = Content != null ? Content.Value : null;
122      }
123    }
124
125    protected virtual void Content_ReadOnlyChanged(object sender, EventArgs e) {
126      if (InvokeRequired)
127        Invoke(new EventHandler(Content_ReadOnlyChanged), sender, e);
128      else {
129        SetEnabledStateOfControls();
130      }
131    }
132    protected virtual void Content_GetsCollectedChanged(object sender, EventArgs e) {
133      if (InvokeRequired)
134        Invoke(new EventHandler(Content_GetsCollectedChanged), sender, e);
135      else
136        showInRunCheckBox.Checked = Content != null && Content.GetsCollected;
137    }
138
139    protected virtual void setValueButton_Click(object sender, EventArgs e) {
140      if (typeSelectorDialog == null) {
141        typeSelectorDialog = new TypeSelectorDialog();
142        typeSelectorDialog.Caption = "Select Value";
143        typeSelectorDialog.TypeSelector.Configure(Content.DataType, false, true);
144      }
145      if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
146        try {
147          Content.Value = (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
148        } catch (Exception ex) {
149          ErrorHandling.ShowErrorDialog(this, ex);
150        }
151      }
152    }
153    protected virtual void clearValueButton_Click(object sender, EventArgs e) {
154      Content.Value = null;
155    }
156    protected virtual void showInRunCheckBox_CheckedChanged(object sender, EventArgs e) {
157      if (Content != null) Content.GetsCollected = showInRunCheckBox.Checked;
158    }
159    protected virtual void valueGroupBox_DragEnterOver(object sender, DragEventArgs e) {
160      e.Effect = DragDropEffects.None;
161      if (Content is IFixedValueParameter) return;
162      if (!ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) != null) && Content.DataType.IsAssignableFrom(e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat).GetType())) {
163        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
164        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
165        else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
166        else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
167        else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
168      }
169    }
170    protected virtual void valueGroupBox_DragDrop(object sender, DragEventArgs e) {
171      if (e.Effect != DragDropEffects.None) {
172        T value = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) as T;
173        if (e.Effect.HasFlag(DragDropEffects.Copy)) value = (T)value.Clone();
174        Content.Value = value;
175      }
176    }
177
178    #region Helpers
179    protected void SetDataTypeTextBoxText() {
180      if (Content == null) {
181        dataTypeTextBox.Text = "-";
182      } else {
183        if ((Content.Value != null) && (Content.Value.GetType() != Content.DataType))
184          dataTypeTextBox.Text = Content.DataType.GetPrettyName() + " (" + Content.Value.GetType().GetPrettyName() + ")";
185        else
186          dataTypeTextBox.Text = Content.DataType.GetPrettyName();
187      }
188    }
189    #endregion
190  }
191}
Note: See TracBrowser for help on using the repository browser.