Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.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.8 KB
RevLine 
[2852]1#region License Information
2/* HeuristicLab
[17097]3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2852]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;
[2948]23using System.Collections.Generic;
[2852]24using HeuristicLab.Collections;
[4257]25using HeuristicLab.Common;
[2852]26using HeuristicLab.Core;
27using HeuristicLab.Core.Views;
28using HeuristicLab.MainForm;
29
30namespace HeuristicLab.Parameters.Views {
31  /// <summary>
32  /// The visual representation of a <see cref="Parameter"/>.
33  /// </summary>
[2917]34  [View("ConstrainedValueParameter View")]
[2948]35  [Content(typeof(OptionalConstrainedValueParameter<>), true)]
[2852]36  [Content(typeof(ConstrainedValueParameter<>), true)]
[2924]37  public partial class ConstrainedValueParameterView<T> : ParameterView where T : class, IItem {
[2948]38    private List<T> valueComboBoxItems;
39
[2852]40    /// <summary>
41    /// Gets or sets the variable to represent visually.
42    /// </summary>
43    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
44    /// No own data storage present.</remarks>
[2948]45    public new OptionalConstrainedValueParameter<T> Content {
46      get { return (OptionalConstrainedValueParameter<T>)base.Content; }
[2852]47      set { base.Content = value; }
48    }
49
50    /// <summary>
51    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
52    /// </summary>
53    public ConstrainedValueParameterView() {
54      InitializeComponent();
[2948]55      valueComboBoxItems = new List<T>();
[2852]56    }
57
58    /// <summary>
59    /// Removes the eventhandlers from the underlying <see cref="IVariable"/>.
60    /// </summary>
61    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
62    protected override void DeregisterContentEvents() {
[4332]63      Content.GetsCollectedChanged -= new EventHandler(Content_GetsCollectedChanged);
[2852]64      Content.ValidValues.ItemsAdded -= new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded);
65      Content.ValidValues.ItemsRemoved -= new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved);
66      Content.ValidValues.CollectionReset -= new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset);
67      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
68      base.DeregisterContentEvents();
69    }
70
71    /// <summary>
72    /// Adds eventhandlers to the underlying <see cref="IVariable"/>.
73    /// </summary>
74    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
75    protected override void RegisterContentEvents() {
76      base.RegisterContentEvents();
[4332]77      Content.GetsCollectedChanged += new EventHandler(Content_GetsCollectedChanged);
[2852]78      Content.ValidValues.ItemsAdded += new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded);
79      Content.ValidValues.ItemsRemoved += new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved);
80      Content.ValidValues.CollectionReset += new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset);
81      Content.ValueChanged += new EventHandler(Content_ValueChanged);
82    }
83
84    protected override void OnContentChanged() {
85      base.OnContentChanged();
86      if (Content == null) {
[4332]87        showInRunCheckBox.Checked = false;
[2870]88        viewHost.Content = null;
[2852]89        FillValueComboBox();
90      } else {
[4257]91        SetDataTypeTextBoxText();
[2852]92        FillValueComboBox();
[4332]93        showInRunCheckBox.Checked = Content.GetsCollected;
[2949]94        viewHost.ViewType = null;
[2852]95        viewHost.Content = Content.Value;
96      }
97    }
98
[3904]99    protected override void SetEnabledStateOfControls() {
100      base.SetEnabledStateOfControls();
[3365]101      valueGroupBox.Enabled = Content != null;
102      valueComboBox.Enabled = (valueComboBox.Items.Count > 0) && !ReadOnly;
[4332]103      showInRunCheckBox.Enabled = Content != null && !ReadOnly;
[3365]104    }
105
[4332]106    protected virtual void FillValueComboBox() {
[2924]107      valueComboBox.SelectedIndexChanged -= new EventHandler(valueComboBox_SelectedIndexChanged);
[2948]108      valueComboBoxItems.Clear();
109      valueComboBox.Items.Clear();
110      if (!(Content is ConstrainedValueParameter<T>)) {
111        valueComboBoxItems.Add(null);
112        valueComboBox.Items.Add("-");
113      }
[2852]114      if (Content != null) {
[2948]115        foreach (T item in Content.ValidValues) {
116          valueComboBoxItems.Add(item);
117          valueComboBox.Items.Add(item.ToString());
118        }
[3365]119        valueComboBox.Enabled = (valueComboBox.Items.Count > 0) && !ReadOnly;
[2948]120        valueComboBox.SelectedIndex = valueComboBoxItems.IndexOf(Content.Value);
[2852]121      }
[2924]122      valueComboBox.SelectedIndexChanged += new EventHandler(valueComboBox_SelectedIndexChanged);
[2852]123    }
124
125    #region Content Events
[4332]126    protected virtual void Content_ValueChanged(object sender, EventArgs e) {
[2852]127      if (InvokeRequired)
128        Invoke(new EventHandler(Content_ValueChanged), sender, e);
129      else {
[4257]130        SetDataTypeTextBoxText();
[5345]131        SetComboBoxSelectedIndex();
[2949]132        viewHost.ViewType = null;
[4257]133        viewHost.Content = Content != null ? Content.Value : null;
[2852]134      }
135    }
[5345]136
[4332]137    protected virtual void ValidValues_ItemsAdded(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]138      if (InvokeRequired)
139        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded), sender, e);
[2924]140      else
141        FillValueComboBox();
[2852]142    }
[4332]143    protected virtual void ValidValues_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]144      if (InvokeRequired)
145        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved), sender, e);
[2924]146      else
147        FillValueComboBox();
[2852]148    }
[4332]149    protected virtual void ValidValues_CollectionReset(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]150      if (InvokeRequired)
151        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset), sender, e);
152      else
153        FillValueComboBox();
154    }
[4332]155    protected virtual void Content_GetsCollectedChanged(object sender, EventArgs e) {
156      if (InvokeRequired)
157        Invoke(new EventHandler(Content_GetsCollectedChanged), sender, e);
158      else
159        showInRunCheckBox.Checked = Content != null && Content.GetsCollected;
160    }
[2852]161    #endregion
162
[4332]163    protected virtual void valueComboBox_SelectedIndexChanged(object sender, EventArgs e) {
[3191]164      if (valueComboBox.SelectedIndex >= 0)
165        Content.Value = valueComboBoxItems[valueComboBox.SelectedIndex];
[2852]166    }
[4332]167    protected virtual void showInRunCheckBox_CheckedChanged(object sender, EventArgs e) {
168      if (Content != null) Content.GetsCollected = showInRunCheckBox.Checked;
169    }
[4257]170
171    #region Helpers
172    protected void SetDataTypeTextBoxText() {
173      if (Content == null) {
174        dataTypeTextBox.Text = "-";
175      } else {
176        if ((Content.Value != null) && (Content.Value.GetType() != Content.DataType))
177          dataTypeTextBox.Text = Content.DataType.GetPrettyName() + " (" + Content.Value.GetType().GetPrettyName() + ")";
178        else
179          dataTypeTextBox.Text = Content.DataType.GetPrettyName();
180      }
181    }
[5345]182    protected void SetComboBoxSelectedIndex() {
183      valueComboBox.SelectedIndex = valueComboBoxItems.IndexOf(Content != null ? Content.Value : null);
184    }
[4257]185    #endregion
[2852]186  }
187}
Note: See TracBrowser for help on using the repository browser.