Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.Core/VariableInfoView.cs @ 13356

Last change on this file since 13356 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 3.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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;
29
30namespace HeuristicLab.Core {
31  public partial class VariableInfoView : ViewBase {
32    public IVariableInfo VariableInfo {
33      get { return (IVariableInfo)Item; }
34      set { base.Item = value; }
35    }
36
37    public VariableInfoView() {
38      InitializeComponent();
39      Caption = "Variable Info";
40    }
41    public VariableInfoView(IVariableInfo variableInfo)
42      : this() {
43      VariableInfo = variableInfo;
44    }
45
46    protected override void RemoveItemEvents() {
47      VariableInfo.ActualNameChanged -= new EventHandler(VariableInfo_ActualNameChanged);
48      VariableInfo.LocalChanged -= new EventHandler(VariableInfo_LocalChanged);
49      base.RemoveItemEvents();
50    }
51    protected override void AddItemEvents() {
52      base.AddItemEvents();
53      VariableInfo.ActualNameChanged += new EventHandler(VariableInfo_ActualNameChanged);
54      VariableInfo.LocalChanged += new EventHandler(VariableInfo_LocalChanged);
55    }
56
57    protected override void UpdateControls() {
58      base.UpdateControls();
59      Caption = "Variable Info";
60      if (VariableInfo == null) {
61        actualNameTextBox.Enabled = false;
62        formalNameTextBox.Enabled = false;
63        dataTypeTextBox.Enabled = false;
64        kindTextBox.Enabled = false;
65        localCheckBox.Enabled = false;
66        descriptionTextBox.Enabled = false;
67      } else {
68        Caption = VariableInfo.ActualName + " (" + VariableInfo.GetType().Name + ")";
69        actualNameTextBox.Text = VariableInfo.ActualName;
70        actualNameTextBox.Enabled = true;
71        formalNameTextBox.Text = VariableInfo.FormalName;
72        formalNameTextBox.Enabled = true;
73        dataTypeTextBox.Text = VariableInfo.DataType.FullName;
74        dataTypeTextBox.Enabled = true;
75        kindTextBox.Text = VariableInfo.Kind.ToString();
76        kindTextBox.Enabled = true;
77        localCheckBox.Checked = VariableInfo.Local;
78        localCheckBox.Enabled = true;
79        descriptionTextBox.Text = VariableInfo.Description;
80        descriptionTextBox.Enabled = true;
81      }
82    }
83
84    private void VariableInfo_ActualNameChanged(object sender, EventArgs e) {
85      actualNameTextBox.Text = VariableInfo.ActualName;
86    }
87    private void VariableInfo_LocalChanged(object sender, EventArgs e) {
88      localCheckBox.Checked = VariableInfo.Local;
89    }
90
91    private void actualNameTextBox_Validated(object sender, EventArgs e) {
92      VariableInfo.ActualName = actualNameTextBox.Text;
93    }
94    private void localCheckBox_CheckedChanged(object sender, EventArgs e) {
95      VariableInfo.Local = localCheckBox.Checked;
96    }
97  }
98}
Note: See TracBrowser for help on using the repository browser.