Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Analysis.Views/3.3/DataRowVisualPropertiesControl.cs @ 6013

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

#1465

  • fine tuned UI for setting data(table|row) visual properties
  • added control for the data table visual properties
  • added a few more visual properties
File size: 6.9 KB
Line 
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;
23using System.Drawing;
24using System.Windows.Forms;
25using HeuristicLab.MainForm;
26using HeuristicLab.MainForm.WindowsForms;
27
28namespace HeuristicLab.Analysis.Views {
29  [View("DataRow Visual Properties")]
30  public partial class DataRowVisualPropertiesControl : UserControl {
31    protected bool SuppressEvents { get; set; }
32
33    private DataRowVisualProperties content;
34    public DataRowVisualProperties Content {
35      get { return content; }
36      set {
37        bool changed = (value != content);
38        content = value;
39        if (changed) OnContentChanged();
40      }
41    }
42
43    public DataRowVisualPropertiesControl() {
44      InitializeComponent();
45      chartTypeComboBox.DataSource = Enum.GetValues(typeof(DataRowVisualProperties.DataRowChartType));
46      lineStyleComboBox.DataSource = Enum.GetValues(typeof(DataRowVisualProperties.DataRowLineStyle));
47    }
48
49    protected virtual void OnContentChanged() {
50      SuppressEvents = true;
51      try {
52        if (Content == null) {
53          chartTypeComboBox.SelectedIndex = -1;
54          colorButton.BackColor = SystemColors.Control;
55          colorButton.Text = "?";
56          yAxisPrimaryRadioButton.Checked = false;
57          yAxisSecondaryRadioButton.Checked = false;
58          xAxisPrimaryRadioButton.Checked = false;
59          xAxisSecondaryRadioButton.Checked = false;
60          lineStyleComboBox.SelectedIndex = -1;
61          startIndexZeroCheckBox.Checked = false;
62          lineWidthNumericUpDown.Value = 1;
63          binsNumericUpDown.Value = 1;
64          binsApproximatelyRadioButton.Checked = false;
65          binsExactRadioButton.Checked = false;
66        } else {
67          chartTypeComboBox.SelectedItem = Content.ChartType;
68          if (Content.Color.IsEmpty) {
69            colorButton.BackColor = SystemColors.Control;
70            colorButton.Text = "?";
71          } else {
72            colorButton.BackColor = Content.Color;
73            colorButton.Text = String.Empty;
74          }
75          yAxisPrimaryRadioButton.Checked = !Content.SecondYAxis;
76          yAxisSecondaryRadioButton.Checked = Content.SecondYAxis;
77          xAxisPrimaryRadioButton.Checked = !Content.SecondXAxis;
78          xAxisSecondaryRadioButton.Checked = Content.SecondXAxis;
79          lineStyleComboBox.SelectedItem = Content.LineStyle;
80          startIndexZeroCheckBox.Checked = Content.StartIndexZero;
81          lineWidthNumericUpDown.Value = Content.LineWidth;
82          binsNumericUpDown.Value = Content.Bins;
83          binsApproximatelyRadioButton.Checked = !Content.ExactBins;
84          binsExactRadioButton.Checked = Content.ExactBins;
85        }
86      } finally { SuppressEvents = false; }
87      SetEnabledStateOfControls();
88    }
89
90    protected virtual void SetEnabledStateOfControls() {
91      commonGroupBox.Enabled = Content != null;
92      lineChartGroupBox.Enabled = Content != null && Content.ChartType == DataRowVisualProperties.DataRowChartType.Line;
93      histoGramGroupBox.Enabled = Content != null && Content.ChartType == DataRowVisualProperties.DataRowChartType.Histogram;
94    }
95
96    #region Event Handlers
97    private void chartTypeComboBox_SelectedValueChanged(object sender, EventArgs e) {
98      if (!SuppressEvents && Content != null) {
99        Content.ChartType = (DataRowVisualProperties.DataRowChartType)chartTypeComboBox.SelectedValue;
100        SetEnabledStateOfControls();
101      }
102    }
103
104    private void colorButton_Click(object sender, EventArgs e) {
105      if (colorDialog.ShowDialog() == DialogResult.OK) {
106        Content.Color = colorDialog.Color;
107        colorButton.BackColor = Content.Color;
108        colorButton.Text = String.Empty;
109      }
110    }
111
112    private void yAxisRadioButton_CheckedChanged(object sender, EventArgs e) {
113      if (!SuppressEvents && Content != null) {
114        SuppressEvents = true;
115        try {
116          if (sender == yAxisPrimaryRadioButton)
117            yAxisSecondaryRadioButton.Checked = !yAxisPrimaryRadioButton.Checked;
118          else yAxisPrimaryRadioButton.Checked = !yAxisSecondaryRadioButton.Checked;
119          Content.SecondYAxis = yAxisSecondaryRadioButton.Checked;
120        } finally { SuppressEvents = false; }
121      }
122    }
123
124    private void xAxisRadioButton_CheckedChanged(object sender, EventArgs e) {
125      if (!SuppressEvents && Content != null) {
126        SuppressEvents = true;
127        try {
128          if (sender == xAxisPrimaryRadioButton)
129            xAxisSecondaryRadioButton.Checked = !xAxisPrimaryRadioButton.Checked;
130          else xAxisPrimaryRadioButton.Checked = !xAxisSecondaryRadioButton.Checked;
131          Content.SecondXAxis = xAxisSecondaryRadioButton.Checked;
132        } finally { SuppressEvents = false; }
133      }
134    }
135
136    private void lineStyleComboBox_SelectedValueChanged(object sender, EventArgs e) {
137      if (!SuppressEvents && Content != null) {
138        Content.LineStyle = (DataRowVisualProperties.DataRowLineStyle)lineStyleComboBox.SelectedValue;
139      }
140    }
141
142    private void startIndexZeroCheckBox_CheckedChanged(object sender, EventArgs e) {
143      if (!SuppressEvents && Content != null) {
144        Content.StartIndexZero = startIndexZeroCheckBox.Checked;
145      }
146    }
147
148    private void lineWidthNumericUpDown_ValueChanged(object sender, EventArgs e) {
149      if (!SuppressEvents && Content != null) {
150        Content.LineWidth = (int)lineWidthNumericUpDown.Value;
151      }
152    }
153
154    private void binsNumericUpDown_ValueChanged(object sender, EventArgs e) {
155      if (!SuppressEvents && Content != null) {
156        Content.Bins = (int)binsNumericUpDown.Value;
157      }
158    }
159
160    private void binNumberRadioButton_CheckedChanged(object sender, EventArgs e) {
161      if (!SuppressEvents && Content != null) {
162        SuppressEvents = true;
163        try {
164          if (sender == binsApproximatelyRadioButton)
165            binsExactRadioButton.Checked = !binsApproximatelyRadioButton.Checked;
166          else binsApproximatelyRadioButton.Checked = !binsExactRadioButton.Checked;
167          Content.ExactBins = binsExactRadioButton.Checked;
168        } finally { SuppressEvents = false; }
169      }
170    }
171    #endregion
172  }
173}
Note: See TracBrowser for help on using the repository browser.