Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Analysis.Views/3.3/HistogramView.cs @ 5994

Last change on this file since 5994 was 5994, checked in by abeham, 13 years ago

#1465

  • Added movie view for HistogramHistory
  • Added QualityDistributionAnalyzer for analyzing the development of the quality distributions in a population
  • Added AggregatedHistogramHistoryView for displaying a histogram of the accumulated data in a history
File size: 3.3 KB
RevLine 
[5961]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Windows.Forms;
23using HeuristicLab.Collections;
24using HeuristicLab.Core.Views;
25using HeuristicLab.MainForm;
26using HeuristicLab.MainForm.WindowsForms;
27
28namespace HeuristicLab.Analysis.Views {
29  [View("Histogram View")]
30  [Content(typeof(Histogram), IsDefaultView = true)]
[5994]31  public partial class HistogramView : NamedItemView {
[5961]32
33    public new Histogram Content {
34      get { return (Histogram)base.Content; }
35      set { base.Content = value; }
36    }
37
38    public HistogramView() {
39      InitializeComponent();
40    }
41
42    protected override void DeregisterContentEvents() {
43      Content.Values.ItemsAdded -= new CollectionItemsChangedEventHandler<double>(Content_Values_ItemsAdded);
44      Content.Values.ItemsRemoved -= new CollectionItemsChangedEventHandler<double>(Content_Values_ItemsRemoved);
45      Content.Values.CollectionReset -= new CollectionItemsChangedEventHandler<double>(Content_Values_CollectionReset);
46      base.DeregisterContentEvents();
47    }
48
49    protected override void RegisterContentEvents() {
50      base.RegisterContentEvents();
51      Content.Values.ItemsAdded += new CollectionItemsChangedEventHandler<double>(Content_Values_ItemsAdded);
52      Content.Values.ItemsRemoved += new CollectionItemsChangedEventHandler<double>(Content_Values_ItemsRemoved);
53      Content.Values.CollectionReset += new CollectionItemsChangedEventHandler<double>(Content_Values_CollectionReset);
54    }
55
56    #region Event Handlers (Content)
57    private void Content_Values_ItemsAdded(object sender, CollectionItemsChangedEventArgs<double> e) {
[5970]58      histogramControl.AddPoints(e.Items);
[5961]59    }
60    private void Content_Values_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<double> e) {
[5970]61      histogramControl.ClearPoints();
62      histogramControl.AddPoints(Content.Values);
[5961]63    }
64    private void Content_Values_CollectionReset(object sender, CollectionItemsChangedEventArgs<double> e) {
[5970]65      histogramControl.ClearPoints();
66      histogramControl.AddPoints(Content.Values);
[5961]67    }
68    #endregion
69
70    protected override void OnContentChanged() {
71      base.OnContentChanged();
[5994]72      histogramControl.ClearPoints();
73      if (Content != null) {
[5970]74        histogramControl.AddPoints(Content.Values);
[5961]75      }
76    }
77
78    protected override void SetEnabledStateOfControls() {
79      base.SetEnabledStateOfControls();
[5970]80      histogramControl.Enabled = Content != null;
[5961]81    }
82
83    #region Event Handlers (child controls)
84    #endregion
85  }
86}
Note: See TracBrowser for help on using the repository browser.