Free cookie consent management tool by TermsFeed Policy Generator

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

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

Operator architecture refactoring (#95)

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