1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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 |
|
---|
22 | using System.Windows.Forms;
|
---|
23 | using HeuristicLab.Core.Views;
|
---|
24 | using HeuristicLab.MainForm;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
27 |
|
---|
28 | [View("Histogram View")]
|
---|
29 | [Content(typeof(HistogramContent), false)]
|
---|
30 | public partial class HistogramView : ItemView {
|
---|
31 | public HistogramView() {
|
---|
32 | InitializeComponent();
|
---|
33 | }
|
---|
34 |
|
---|
35 | public new HistogramContent Content {
|
---|
36 | get { return (HistogramContent)base.Content; }
|
---|
37 | set { base.Content = value; }
|
---|
38 | }
|
---|
39 |
|
---|
40 | protected override void OnContentChanged() {
|
---|
41 | base.OnContentChanged();
|
---|
42 | if (Content != null) {
|
---|
43 | InitDataTable();
|
---|
44 | InitVariablesListBox();
|
---|
45 | }
|
---|
46 | }
|
---|
47 |
|
---|
48 | private void InitVariablesListBox() {
|
---|
49 | IHistogramLogic logic = Content.HistogramLogic;
|
---|
50 |
|
---|
51 | foreach (var variableName in logic.GetVariableNames()) {
|
---|
52 | variablesListBox.Items.Add(variableName, true);
|
---|
53 | }
|
---|
54 | }
|
---|
55 |
|
---|
56 | private void InitDataTable() {
|
---|
57 | IHistogramLogic logic = Content.HistogramLogic;
|
---|
58 | viewHost.Content = logic.GetDataTable();
|
---|
59 | }
|
---|
60 |
|
---|
61 | private void variablesListBox_ItemCheck(object sender, ItemCheckEventArgs e) {
|
---|
62 | string item = variablesListBox.Items[e.Index] as string;
|
---|
63 |
|
---|
64 | if (e.NewValue == CheckState.Checked && !Content.HistogramLogic.VariableIsDisplayed(item))
|
---|
65 | Content.HistogramLogic.AddVariable(item);
|
---|
66 | else if (e.NewValue == CheckState.Unchecked && Content.HistogramLogic.VariableIsDisplayed(item))
|
---|
67 | Content.HistogramLogic.RemoveVariable(item);
|
---|
68 | }
|
---|
69 | }
|
---|
70 | }
|
---|
71 |
|
---|
72 |
|
---|
73 |
|
---|
74 |
|
---|
75 |
|
---|