#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using HeuristicLab.Core; using HeuristicLab.Core.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Data.Views { [Content(typeof(BoolData), true)] public partial class BoolDataView : ItemView { public new BoolData Content { get { return (BoolData)base.Content; } set { base.Content = value; } } public BoolDataView() { InitializeComponent(); Caption = "BoolData View"; } public BoolDataView(BoolData content) : this() { Content = content; } protected override void DeregisterContentEvents() { Content.Changed -= new ChangedEventHandler(Content_Changed); base.DeregisterContentEvents(); } protected override void RegisterContentEvents() { base.RegisterContentEvents(); Content.Changed += new ChangedEventHandler(Content_Changed); } protected override void OnContentChanged() { base.OnContentChanged(); if (Content == null) { Caption = "BoolData View"; valueCheckBox.Checked = false; valueCheckBox.Enabled = false; } else { Caption = Content.ToString() + " (" + Content.GetType().Name + ")"; valueCheckBox.Checked = Content.Value; valueCheckBox.Enabled = true; } } private void Content_Changed(object sender, ChangedEventArgs e) { if (InvokeRequired) Invoke(new ChangedEventHandler(Content_Changed), sender, e); else valueCheckBox.Checked = Content.Value; } private void valueCheckBox_CheckedChanged(object sender, EventArgs e) { Content.Value = valueCheckBox.Checked; } } }