Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.cs @ 3385

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

Adapted views of HeuristicLab.Core.Views according the new read-only property and renamed method SetEnableStateOfControls into SetEnabledStateOfControls (#973).

File size: 6.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 System.Windows.Forms;
24using HeuristicLab.Common;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Core.Views {
28  /// <summary>
29  /// The visual representation of a <see cref="Variable"/>.
30  /// </summary>
31  [View("Variable View")]
32  [Content(typeof(Variable), true)]
33  [Content(typeof(IVariable), false)]
34  public partial class VariableView : NamedItemView {
35    protected TypeSelectorDialog typeSelectorDialog;
36
37    /// <summary>
38    /// Gets or sets the variable to represent visually.
39    /// </summary>
40    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
41    /// No own data storage present.</remarks>
42    public new IVariable Content {
43      get { return (IVariable)base.Content; }
44      set { base.Content = value; }
45    }
46
47    /// <summary>
48    /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
49    /// </summary>
50    public VariableView() {
51      InitializeComponent();
52      Caption = "Variable";
53    }
54    /// <summary>
55    /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.
56    /// </summary>
57    /// <remarks>Calls <see cref="VariableView()"/>.</remarks>
58    /// <param name="variable">The variable to represent visually.</param>
59    public VariableView(IVariable content)
60      : this() {
61      Content = content;
62    }
63
64    /// <summary>
65    /// Removes the eventhandlers from the underlying <see cref="Variable"/>.
66    /// </summary>
67    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
68    protected override void DeregisterContentEvents() {
69      Content.ValueChanged -= new EventHandler(Content_ValueChanged);
70      base.DeregisterContentEvents();
71    }
72
73    /// <summary>
74    /// Adds eventhandlers to the underlying <see cref="Variable"/>.
75    /// </summary>
76    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
77    protected override void RegisterContentEvents() {
78      base.RegisterContentEvents();
79      Content.ValueChanged += new EventHandler(Content_ValueChanged);
80    }
81
82    protected override void OnContentChanged() {
83      base.OnContentChanged();
84      if (Content == null) {
85        Caption = "Variable";
86        dataTypeTextBox.Text = "-";
87        viewHost.Content = null;
88      } else {
89        Caption = Content.Name + " (" + Content.GetType().Name + ")";
90        dataTypeTextBox.Text = Content.Value == null ? "-" : Content.Value.GetType().GetPrettyName();
91        viewHost.ViewType = null;
92        viewHost.Content = Content.Value;
93      }
94      SetEnabledStateOfControls();
95    }
96
97    protected override void OnReadOnlyChanged() {
98      base.OnReadOnlyChanged();
99      SetEnabledStateOfControls();
100    }
101
102    private void SetEnabledStateOfControls() {
103      dataTypeTextBox.Enabled = Content != null && Content.Value != null;
104      setValueButton.Enabled = Content != null && !ReadOnly;
105      clearValueButton.Enabled = Content != null && Content.Value != null && !ReadOnly;
106      valueGroupBox.Enabled = Content != null;
107      viewHost.ReadOnly = ReadOnly;
108    }
109
110    protected virtual void Content_ValueChanged(object sender, EventArgs e) {
111      if (InvokeRequired)
112        Invoke(new EventHandler(Content_ValueChanged), sender, e);
113      else {
114        dataTypeTextBox.Text = Content.Value == null ? "-" : Content.Value.GetType().GetPrettyName();
115        dataTypeTextBox.Enabled = Content.Value != null;
116        clearValueButton.Enabled = Content.Value != null;
117        viewHost.ViewType = null;
118        viewHost.Content = Content.Value;
119      }
120    }
121
122    protected virtual void setValueButton_Click(object sender, EventArgs e) {
123      if (typeSelectorDialog == null) {
124        typeSelectorDialog = new TypeSelectorDialog();
125        typeSelectorDialog.Caption = "Select Value Type";
126        typeSelectorDialog.TypeSelector.Configure(typeof(IItem), false, false);
127      }
128      if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
129        Content.Value = (IItem)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
130      }
131    }
132    protected virtual void clearValueButton_Click(object sender, EventArgs e) {
133      Content.Value = null;
134    }
135    protected virtual void valuePanel_DragEnterOver(object sender, DragEventArgs e) {
136      e.Effect = DragDropEffects.None;
137      Type type = e.Data.GetData("Type") as Type;
138      if (!ReadOnly && (type != null) && (typeof(IItem).IsAssignableFrom(type))) {
139        if ((e.KeyState & 8) == 8) e.Effect = DragDropEffects.Copy;  // CTRL key
140        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
141        else if ((e.AllowedEffect & DragDropEffects.Link) == DragDropEffects.Link) e.Effect = DragDropEffects.Link;
142        else if ((e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) e.Effect = DragDropEffects.Copy;
143        else if ((e.AllowedEffect & DragDropEffects.Move) == DragDropEffects.Move) e.Effect = DragDropEffects.Move;
144      }
145    }
146    protected virtual void valuePanel_DragDrop(object sender, DragEventArgs e) {
147      if (e.Effect != DragDropEffects.None) {
148        IItem item = e.Data.GetData("Value") as IItem;
149        if ((e.Effect & DragDropEffects.Copy) == DragDropEffects.Copy) item = (IItem)item.Clone();
150        Content.Value = item;
151      }
152    }
153  }
154}
Note: See TracBrowser for help on using the repository browser.