Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.cs

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

#2521: Merged trunk changes into problem refactoring branch.

File size: 8.2 KB
RevLine 
[2852]1#region License Information
2/* HeuristicLab
[17226]3 * Copyright (C) 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);
[16946]64      Content.ReadOnlyChanged -= new EventHandler(Content_ReadOnlyChanged);
[2852]65      Content.ValidValues.ItemsAdded -= new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded);
66      Content.ValidValues.ItemsRemoved -= new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved);
67      Content.ValidValues.CollectionReset -= new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset);
68      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
69      base.DeregisterContentEvents();
70    }
71
72    /// <summary>
73    /// Adds eventhandlers to the underlying <see cref="IVariable"/>.
74    /// </summary>
75    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
76    protected override void RegisterContentEvents() {
77      base.RegisterContentEvents();
[4332]78      Content.GetsCollectedChanged += new EventHandler(Content_GetsCollectedChanged);
[16946]79      Content.ReadOnlyChanged += new EventHandler(Content_ReadOnlyChanged);
[2852]80      Content.ValidValues.ItemsAdded += new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded);
81      Content.ValidValues.ItemsRemoved += new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved);
82      Content.ValidValues.CollectionReset += new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset);
83      Content.ValueChanged += new EventHandler(Content_ValueChanged);
84    }
85
86    protected override void OnContentChanged() {
87      base.OnContentChanged();
88      if (Content == null) {
[4332]89        showInRunCheckBox.Checked = false;
[2870]90        viewHost.Content = null;
[2852]91        FillValueComboBox();
92      } else {
[4257]93        SetDataTypeTextBoxText();
[2852]94        FillValueComboBox();
[4332]95        showInRunCheckBox.Checked = Content.GetsCollected;
[2949]96        viewHost.ViewType = null;
[2852]97        viewHost.Content = Content.Value;
98      }
99    }
100
[3904]101    protected override void SetEnabledStateOfControls() {
102      base.SetEnabledStateOfControls();
[3365]103      valueGroupBox.Enabled = Content != null;
[16946]104      valueComboBox.Enabled = Content != null && valueComboBox.Items.Count > 0 && !Content.ReadOnly && !ReadOnly;
[4332]105      showInRunCheckBox.Enabled = Content != null && !ReadOnly;
[3365]106    }
107
[4332]108    protected virtual void FillValueComboBox() {
[2924]109      valueComboBox.SelectedIndexChanged -= new EventHandler(valueComboBox_SelectedIndexChanged);
[2948]110      valueComboBoxItems.Clear();
111      valueComboBox.Items.Clear();
112      if (!(Content is ConstrainedValueParameter<T>)) {
113        valueComboBoxItems.Add(null);
114        valueComboBox.Items.Add("-");
115      }
[2852]116      if (Content != null) {
[2948]117        foreach (T item in Content.ValidValues) {
118          valueComboBoxItems.Add(item);
119          valueComboBox.Items.Add(item.ToString());
120        }
[3365]121        valueComboBox.Enabled = (valueComboBox.Items.Count > 0) && !ReadOnly;
[2948]122        valueComboBox.SelectedIndex = valueComboBoxItems.IndexOf(Content.Value);
[2852]123      }
[2924]124      valueComboBox.SelectedIndexChanged += new EventHandler(valueComboBox_SelectedIndexChanged);
[2852]125    }
126
127    #region Content Events
[4332]128    protected virtual void Content_ValueChanged(object sender, EventArgs e) {
[2852]129      if (InvokeRequired)
130        Invoke(new EventHandler(Content_ValueChanged), sender, e);
131      else {
[4257]132        SetDataTypeTextBoxText();
[5345]133        SetComboBoxSelectedIndex();
[2949]134        viewHost.ViewType = null;
[4257]135        viewHost.Content = Content != null ? Content.Value : null;
[2852]136      }
137    }
[5345]138
[4332]139    protected virtual void ValidValues_ItemsAdded(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]140      if (InvokeRequired)
141        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsAdded), sender, e);
[2924]142      else
143        FillValueComboBox();
[2852]144    }
[4332]145    protected virtual void ValidValues_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]146      if (InvokeRequired)
147        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_ItemsRemoved), sender, e);
[2924]148      else
149        FillValueComboBox();
[2852]150    }
[4332]151    protected virtual void ValidValues_CollectionReset(object sender, CollectionItemsChangedEventArgs<T> e) {
[2852]152      if (InvokeRequired)
153        Invoke(new CollectionItemsChangedEventHandler<T>(ValidValues_CollectionReset), sender, e);
154      else
155        FillValueComboBox();
156    }
[16946]157    protected virtual void Content_ReadOnlyChanged(object sender, EventArgs e) {
158      if (InvokeRequired)
159        Invoke(new EventHandler(Content_ReadOnlyChanged), sender, e);
160      else {
161        SetEnabledStateOfControls();
162      }
163    }
[4332]164    protected virtual void Content_GetsCollectedChanged(object sender, EventArgs e) {
165      if (InvokeRequired)
166        Invoke(new EventHandler(Content_GetsCollectedChanged), sender, e);
167      else
168        showInRunCheckBox.Checked = Content != null && Content.GetsCollected;
169    }
[2852]170    #endregion
171
[4332]172    protected virtual void valueComboBox_SelectedIndexChanged(object sender, EventArgs e) {
[3191]173      if (valueComboBox.SelectedIndex >= 0)
174        Content.Value = valueComboBoxItems[valueComboBox.SelectedIndex];
[2852]175    }
[4332]176    protected virtual void showInRunCheckBox_CheckedChanged(object sender, EventArgs e) {
177      if (Content != null) Content.GetsCollected = showInRunCheckBox.Checked;
178    }
[4257]179
180    #region Helpers
181    protected void SetDataTypeTextBoxText() {
182      if (Content == null) {
183        dataTypeTextBox.Text = "-";
184      } else {
185        if ((Content.Value != null) && (Content.Value.GetType() != Content.DataType))
186          dataTypeTextBox.Text = Content.DataType.GetPrettyName() + " (" + Content.Value.GetType().GetPrettyName() + ")";
187        else
188          dataTypeTextBox.Text = Content.DataType.GetPrettyName();
189      }
190    }
[5345]191    protected void SetComboBoxSelectedIndex() {
192      valueComboBox.SelectedIndex = valueComboBoxItems.IndexOf(Content != null ? Content.Value : null);
193    }
[4257]194    #endregion
[2852]195  }
196}
Note: See TracBrowser for help on using the repository browser.