Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data.Views/3.3/BoolDataView.cs @ 2867

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 2.6 KB
RevLine 
[2665]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2665]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;
[2669]29using HeuristicLab.Core;
[2665]30using HeuristicLab.Core.Views;
31using HeuristicLab.MainForm;
32
33namespace HeuristicLab.Data.Views {
34  [Content(typeof(BoolData), true)]
35  public partial class BoolDataView : ItemView {
[2713]36    public new BoolData Content {
37      get { return (BoolData)base.Content; }
38      set { base.Content = value; }
[2665]39    }
40
41    public BoolDataView() {
42      InitializeComponent();
43      Caption = "BoolData View";
44    }
[2727]45    public BoolDataView(BoolData content)
[2665]46      : this() {
[2727]47      Content = content;
[2665]48    }
49
[2713]50    protected override void DeregisterContentEvents() {
51      Content.Changed -= new ChangedEventHandler(Content_Changed);
52      base.DeregisterContentEvents();
[2665]53    }
54
[2713]55    protected override void RegisterContentEvents() {
56      base.RegisterContentEvents();
57      Content.Changed += new ChangedEventHandler(Content_Changed);
[2665]58    }
59
[2713]60    protected override void OnContentChanged() {
61      base.OnContentChanged();
62      if (Content == null) {
[2665]63        Caption = "BoolData View";
64        valueCheckBox.Checked = false;
65        valueCheckBox.Enabled = false;
66      } else {
[2713]67        Caption = Content.ToString() + " (" + Content.GetType().Name + ")";
68        valueCheckBox.Checked = Content.Value;
[2665]69        valueCheckBox.Enabled = true;
70      }
71    }
72
[2713]73    private void Content_Changed(object sender, ChangedEventArgs e) {
[2665]74      if (InvokeRequired)
[2713]75        Invoke(new ChangedEventHandler(Content_Changed), sender, e);
[2665]76      else
[2713]77        valueCheckBox.Checked = Content.Value;
[2665]78    }
79
80    private void valueCheckBox_CheckedChanged(object sender, EventArgs e) {
[2713]81      Content.Value = valueCheckBox.Checked;
[2665]82    }
83  }
84}
Note: See TracBrowser for help on using the repository browser.