Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs @ 17097

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

#2520: Merged 16565 - 16579 into stable.

File size: 7.7 KB
RevLine 
[2740]1#region License Information
2/* HeuristicLab
[17097]3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2740]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;
[4257]24using HeuristicLab.Common;
[2740]25using HeuristicLab.Core;
26using HeuristicLab.Core.Views;
27using HeuristicLab.MainForm;
[3758]28using HeuristicLab.PluginInfrastructure;
[2740]29
30namespace HeuristicLab.Parameters.Views {
31  /// <summary>
32  /// The visual representation of a <see cref="Parameter"/>.
33  /// </summary>
[2917]34  [View("ValueParameter View")]
[2948]35  [Content(typeof(OptionalValueParameter<>), true)]
[2891]36  [Content(typeof(ValueParameter<>), true)]
[2948]37  [Content(typeof(IValueParameter<>), false)]
[2756]38  public partial class ValueParameterView<T> : ParameterView where T : class, IItem {
[2948]39    protected TypeSelectorDialog typeSelectorDialog;
40
[2740]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>
[2948]46    public new IValueParameter<T> Content {
47      get { return (IValueParameter<T>)base.Content; }
[2740]48      set { base.Content = value; }
49    }
50
51    /// <summary>
52    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
53    /// </summary>
[2756]54    public ValueParameterView() {
[2740]55      InitializeComponent();
56    }
57
[5237]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
[2740]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() {
[4332]75      Content.GetsCollectedChanged -= new EventHandler(Content_GetsCollectedChanged);
[2740]76      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
77      base.DeregisterContentEvents();
78    }
79
80    /// <summary>
81    /// Adds eventhandlers to the underlying <see cref="IVariable"/>.
82    /// </summary>
83    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
84    protected override void RegisterContentEvents() {
85      base.RegisterContentEvents();
[4332]86      Content.GetsCollectedChanged += new EventHandler(Content_GetsCollectedChanged);
[2740]87      Content.ValueChanged += new EventHandler(Content_ValueChanged);
88    }
89
90    protected override void OnContentChanged() {
91      base.OnContentChanged();
92      if (Content == null) {
[4332]93        showInRunCheckBox.Checked = false;
[4011]94        valueViewHost.Content = null;
[2740]95      } else {
[4257]96        SetDataTypeTextBoxText();
[4332]97        showInRunCheckBox.Checked = Content.GetsCollected;
[4011]98        valueViewHost.ViewType = null;
99        valueViewHost.Content = Content.Value;
[2740]100      }
101    }
102
[3904]103    protected override void SetEnabledStateOfControls() {
104      base.SetEnabledStateOfControls();
[5809]105      setValueButton.Enabled = Content != null && !(Content is IFixedValueParameter) && !ReadOnly;
[6262]106      clearValueButton.Enabled = Content != null && Content.Value != null && !(Content is IFixedValueParameter) && !(Content is ValueParameter<T>) && !ReadOnly;
[4332]107      showInRunCheckBox.Enabled = Content != null && !ReadOnly;
[3365]108    }
109
[2740]110    protected virtual void Content_ValueChanged(object sender, EventArgs e) {
111      if (InvokeRequired)
112        Invoke(new EventHandler(Content_ValueChanged), sender, e);
113      else {
[4257]114        SetDataTypeTextBoxText();
[5809]115        setValueButton.Enabled = Content != null && !(Content is IFixedValueParameter) && !ReadOnly;
[6262]116        clearValueButton.Enabled = Content != null && Content.Value != null && !(Content is IFixedValueParameter<T>) && !(Content is ValueParameter<T>) && !ReadOnly;
[4011]117        valueViewHost.ViewType = null;
[4257]118        valueViewHost.Content = Content != null ? Content.Value : null;
[2740]119      }
120    }
[4332]121    protected virtual void Content_GetsCollectedChanged(object sender, EventArgs e) {
122      if (InvokeRequired)
123        Invoke(new EventHandler(Content_GetsCollectedChanged), sender, e);
124      else
125        showInRunCheckBox.Checked = Content != null && Content.GetsCollected;
126    }
[2740]127
[4332]128    protected virtual void setValueButton_Click(object sender, EventArgs e) {
[2948]129      if (typeSelectorDialog == null) {
130        typeSelectorDialog = new TypeSelectorDialog();
131        typeSelectorDialog.Caption = "Select Value";
[3588]132        typeSelectorDialog.TypeSelector.Configure(Content.DataType, false, true);
[2948]133      }
[3407]134      if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
135        try {
136          Content.Value = (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
137        }
138        catch (Exception ex) {
[3758]139          ErrorHandling.ShowErrorDialog(this, ex);
[3407]140        }
141      }
[2948]142    }
[4332]143    protected virtual void clearValueButton_Click(object sender, EventArgs e) {
[2948]144      Content.Value = null;
145    }
[4332]146    protected virtual void showInRunCheckBox_CheckedChanged(object sender, EventArgs e) {
147      if (Content != null) Content.GetsCollected = showInRunCheckBox.Checked;
148    }
[4522]149    protected virtual void valueGroupBox_DragEnterOver(object sender, DragEventArgs e) {
[2740]150      e.Effect = DragDropEffects.None;
[5809]151      if (Content is IFixedValueParameter) return;
[5837]152      if (!ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) != null) && Content.DataType.IsAssignableFrom(e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat).GetType())) {
[3694]153        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
[2740]154        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
[5744]155        else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
156        else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
157        else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
[2740]158      }
159    }
[4522]160    protected virtual void valueGroupBox_DragDrop(object sender, DragEventArgs e) {
[2740]161      if (e.Effect != DragDropEffects.None) {
[5837]162        T value = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) as T;
[5744]163        if (e.Effect.HasFlag(DragDropEffects.Copy)) value = (T)value.Clone();
[2740]164        Content.Value = value;
165      }
166    }
[4257]167
168    #region Helpers
169    protected void SetDataTypeTextBoxText() {
170      if (Content == null) {
171        dataTypeTextBox.Text = "-";
172      } else {
173        if ((Content.Value != null) && (Content.Value.GetType() != Content.DataType))
174          dataTypeTextBox.Text = Content.DataType.GetPrettyName() + " (" + Content.Value.GetType().GetPrettyName() + ")";
175        else
176          dataTypeTextBox.Text = Content.DataType.GetPrettyName();
177      }
178    }
179    #endregion
[2740]180  }
181}
Note: See TracBrowser for help on using the repository browser.