Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.cs @ 3376

Last change on this file since 3376 was 3376, checked in by swagner, 14 years ago

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

File size: 4.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Core.Views;
26using HeuristicLab.MainForm;
27
28namespace HeuristicLab.Parameters.Views {
29  /// <summary>
30  /// The visual representation of a <see cref="Parameter"/>.
31  /// </summary>
32  [View("LookupParameter View")]
33  [Content(typeof(LookupParameter<>), true)]
34  [Content(typeof(ILookupParameter<>), false)]
35  public partial class LookupParameterView<T> : ParameterView where T : class, IItem {
36    /// <summary>
37    /// Gets or sets the variable to represent visually.
38    /// </summary>
39    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
40    /// No own data storage present.</remarks>
41    public new ILookupParameter<T> Content {
42      get { return (ILookupParameter<T>)base.Content; }
43      set { base.Content = value; }
44    }
45
46    /// <summary>
47    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
48    /// </summary>
49    public LookupParameterView() {
50      InitializeComponent();
51      Caption = "LookupParameter";
52    }
53    /// <summary>
54    /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.
55    /// </summary>
56    /// <remarks>Calls <see cref="VariableView()"/>.</remarks>
57    /// <param name="variable">The variable to represent visually.</param>
58    public LookupParameterView(ILookupParameter<T> content)
59      : this() {
60      Content = content;
61    }
62
63    /// <summary>
64    /// Removes the eventhandlers from the underlying <see cref="IVariable"/>.
65    /// </summary>
66    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
67    protected override void DeregisterContentEvents() {
68      Content.ActualNameChanged -= new EventHandler(Content_ActualNameChanged);
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();
78      Content.ActualNameChanged += new EventHandler(Content_ActualNameChanged);
79    }
80
81    protected override void OnContentChanged() {
82      base.OnContentChanged();
83      if (Content == null) {
84        Caption = "LookupParameter";
85        actualNameTextBox.Text = "-";
86      } else {
87        Caption = Content.Name + " (" + Content.GetType().Name + ")";
88        actualNameTextBox.Text = Content.ActualName;
89      }
90      SetEnabledStateOfControls();
91    }
92
93    protected override void OnReadOnlyChanged() {
94      base.OnReadOnlyChanged();
95      SetEnabledStateOfControls();
96    }
97
98    private void SetEnabledStateOfControls() {
99      actualNameTextBox.Enabled = Content != null;
100      actualNameTextBox.ReadOnly = ReadOnly;
101    }
102
103    protected virtual void Content_ActualNameChanged(object sender, EventArgs e) {
104      if (InvokeRequired)
105        Invoke(new EventHandler(Content_ActualNameChanged), sender, e);
106      else
107        actualNameTextBox.Text = Content.ActualName;
108    }
109
110    protected virtual void actualNameTextBox_Validated(object sender, EventArgs e) {
111      Content.ActualName = actualNameTextBox.Text;
112    }
113  }
114}
Note: See TracBrowser for help on using the repository browser.