Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/IntDataView.cs @ 2520

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

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File size: 3.8 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;
29using HeuristicLab.Core;
30using HeuristicLab.Core.Views;
31using HeuristicLab.MainForm;
32
33namespace HeuristicLab.Data {
34  /// <summary>
35  /// The visual representation of the class <see cref="IntData"/>, symbolizing an int value.
36  /// </summary>
37  [Content(typeof(IntData), true)]
38  public partial class IntDataView : ViewBase {
39    /// <summary>
40    /// Gets or set the int value to represent visually.
41    /// </summary>
42    /// <remarks>Uses property <see cref="HeuristicLab.Core.ViewBase.Item"/> of base class <see cref="ViewBase"/>.
43    /// No own data storage present.</remarks>
44    public IntData IntData {
45      get { return (IntData)Item; }
46      set { base.Item = value; }
47    }
48
49    /// <summary>
50    /// Initializes a new instance of the class <see cref="IntDataView"/>.
51    /// </summary>
52    public IntDataView() {
53      InitializeComponent();
54    }
55    /// <summary>
56    /// Initializes a new instance of the class <see cref="IntDataView"/> with the
57    /// given <paramref name="intData"/>.
58    /// <note type="caution"> No CopyConstructor! <paramref name="intData"/> is not copied!</note>
59    /// </summary>
60    /// <param name="intData">The integer value to represent visually.</param>
61    public IntDataView(IntData intData)
62      : this() {
63      IntData = intData;
64    }
65
66    /// <summary>
67    /// Removes the eventhandler from the underlying <see cref="IntData"/>.
68    /// </summary>
69    /// <remarks>Calls <see cref="HeuristicLab.Core.ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.
70    /// </remarks>
71    protected override void RemoveItemEvents() {
72      IntData.Changed -= new EventHandler(IntData_Changed);
73      base.RemoveItemEvents();
74    }
75    /// <summary>
76    /// Adds an eventhandler to the underlying <see cref="IntData"/>.
77    /// </summary>
78    /// <remarks>Calls <see cref="HeuristicLab.Core.ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.
79    /// </remarks>
80    protected override void AddItemEvents() {
81      base.AddItemEvents();
82      IntData.Changed += new EventHandler(IntData_Changed);
83    }
84
85    /// <summary>
86    /// Updates the controls with the latest int value.
87    /// </summary>
88    protected override void UpdateControls() {
89      base.UpdateControls();
90      if (IntData == null) {
91        dataTextBox.Enabled = false;
92      } else {
93        dataTextBox.Enabled = true;
94        dataTextBox.Text = IntData.ToString();
95      }
96    }
97
98    private void dataTextBox_Validating(object sender, CancelEventArgs e) {
99      e.Cancel = false;
100      try {
101        IntData.Data = int.Parse(dataTextBox.Text);
102      }
103      catch (Exception) {
104        dataTextBox.SelectAll();
105        e.Cancel = true;
106      }
107    }
108
109    private void IntData_Changed(object sender, EventArgs e) {
110      Refresh();
111    }
112  }
113}
Note: See TracBrowser for help on using the repository browser.