Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs @ 3341

Last change on this file since 3341 was 2917, checked in by swagner, 15 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
File size: 3.4 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2]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
[2805]22using HeuristicLab.Core;
23using HeuristicLab.Core.Views;
[2520]24using HeuristicLab.MainForm;
[2845]25using System;
[2]26
[2805]27namespace HeuristicLab.Operators.Views {
[776]28  /// <summary>
[2655]29  /// The base class for visual representations of items.
[776]30  /// </summary>
[2917]31  [View("Operator View (Default)")]
[2664]32  [Content(typeof(Operator), true)]
[2727]33  [Content(typeof(IOperator), false)]
[2845]34  public partial class OperatorView : ParameterizedNamedItemView {
[2727]35    public new IOperator Content {
36      get { return (IOperator)base.Content; }
[2713]37      set { base.Content = value; }
[2]38    }
39
[776]40    /// <summary>
[2655]41    /// Initializes a new instance of <see cref="ItemBaseView"/>.
[776]42    /// </summary>
[2664]43    public OperatorView() {
[2]44      InitializeComponent();
45    }
[776]46    /// <summary>
[2655]47    /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
[776]48    /// </summary>
[2655]49    /// <param name="item">The item that should be displayed.</param>
[2727]50    public OperatorView(IOperator content)
[2]51      : this() {
[2727]52      Content = content;
[2]53    }
54
[2845]55    /// <summary>
56    /// Removes the eventhandlers from the underlying <see cref="IOperatorGraph"/>.
57    /// </summary>
58    /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
59    protected override void DeregisterContentEvents() {
60      Content.BreakpointChanged -= new EventHandler(Content_BreakpointChanged);
61      base.DeregisterContentEvents();
62    }
63
64    /// <summary>
65    /// Adds eventhandlers to the underlying <see cref="IOperatorGraph"/>.
66    /// </summary>
67    /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
68    protected override void RegisterContentEvents() {
69      base.RegisterContentEvents();
70      Content.BreakpointChanged += new EventHandler(Content_BreakpointChanged);
71    }
72
[2713]73    protected override void OnContentChanged() {
74      base.OnContentChanged();
75      if (Content == null) {
[2845]76        breakpointCheckBox.Checked = false;
77        breakpointCheckBox.Enabled = false;
[2]78      } else {
[2845]79        breakpointCheckBox.Checked = Content.Breakpoint;
[2851]80        breakpointCheckBox.Enabled = true;
[2]81      }
82    }
[2845]83
[2917]84    protected void Content_BreakpointChanged(object sender, EventArgs e) {
[2845]85      if (InvokeRequired)
86        Invoke(new EventHandler(Content_DescriptionChanged), sender, e);
87      else
88        breakpointCheckBox.Checked = Content.Breakpoint;
89    }
90
[2917]91    protected void breakpointCheckBox_CheckedChanged(object sender, System.EventArgs e) {
[2845]92      if (Content != null) Content.Breakpoint = breakpointCheckBox.Checked;
93    }
[2]94  }
95}
Note: See TracBrowser for help on using the repository browser.