Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAnalysis/DatasetView.cs @ 275

Last change on this file since 275 was 275, checked in by gkronber, 16 years ago

fixed #157

File size: 5.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Windows.Forms;
24using HeuristicLab.Core;
25using HeuristicLab.PluginInfrastructure;
26
27namespace HeuristicLab.DataAnalysis {
28  public partial class DatasetView : EditorBase {
29    public Dataset Dataset {
30      get { return (Dataset)Item; }
31      set {
32        Item = value;
33        Refresh();
34      }
35    }
36    public DatasetView()
37      : base() {
38      InitializeComponent();
39      DiscoveryService discovery = new DiscoveryService();
40      IDatasetManipulator[] manipuators = discovery.GetInstances<IDatasetManipulator>();
41      contextMenuStrip.Items.Add(new ToolStripSeparator());
42      foreach(IDatasetManipulator manipulator in manipuators) {
43        contextMenuStrip.Items.Add(new ToolStripButton(manipulator.Action,null , delegate(object source, EventArgs args)
44          { manipulator.Execute(Dataset); }));
45      }
46    }
47
48    public DatasetView(Dataset dataset)
49      : this() {
50      this.Dataset = dataset;
51    }
52
53    protected override void UpdateControls() {
54      base.UpdateControls();
55      if (Dataset != null) {
56        // DataGridView is bitching around. The columnCount (maybe also rowCount) is changed it creates
57        // new column objects and they have SortMode set to 'automatic'. However this is not allowed if the
58        // selectionmode is set to 'ColumnHeaderSelect' at the same time resulting in an exception.
59        // A solution is to set the SelectionMode to CellSelect before any changes. And after the columns
60        // have been updated (and their SortMode set to 'NotSortable') we switch back to SelectionMode=ColumnHeaderSelect.
61        dataGridView.SelectionMode = DataGridViewSelectionMode.CellSelect;
62        int rows = Dataset.Rows;
63        int columns = Dataset.Columns;
64        nameTextBox.Text = Dataset.Name;
65        rowsTextBox.Text = rows + "";
66        columnsTextBox.Text = columns + "";
67        dataGridView.ColumnCount = columns;
68        dataGridView.RowCount = rows;
69        for (int i = 0; i < rows; i++) {
70          for (int j = 0; j < columns; j++) {
71            dataGridView.Rows[i].Cells[j].Value = Dataset.GetValue(i, j);
72          }
73        }
74        for (int i = 0; i < columns; i++) {
75          dataGridView.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable; // SortMode has to be NotSortable to allow ColumnHeaderSelect
76          dataGridView.Columns[i].Name = GetColumnName(i);
77        }
78        dataGridView.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect; // switch back to column selection
79      } else {
80        rowsTextBox.Text = "1";
81        columnsTextBox.Text = "1";
82        dataGridView.ColumnCount = 1;
83        dataGridView.RowCount = 1;
84      }
85    }
86
87    private void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) {
88      if (ValidateData((string)e.FormattedValue)) {
89        SetArrayElement(e.RowIndex, e.ColumnIndex, (string)e.FormattedValue);
90        e.Cancel = false;
91      } else {
92        e.Cancel = true;
93      }
94    }
95
96
97    private void SetArrayElement(int row, int column, string element) {
98      double result;
99      double.TryParse(element, out result);
100      if (result != Dataset.GetValue(row, column)) {
101        Dataset.SetValue(row, column, result);
102      }
103    }
104
105    private bool ValidateData(string element) {
106      double result;
107      return element != null && double.TryParse(element, out result);
108    }
109
110    private void scaleValuesToolStripMenuItem_Click(object sender, EventArgs e) {
111      foreach(DataGridViewColumn column in dataGridView.SelectedColumns) {
112        Dataset.ScaleVariable(column.Index);
113        column.Name = GetColumnName(column.Index) + " [scaled]";
114      }
115      Refresh();
116    }
117
118    private void originalValuesToolStripMenuItem_Click(object sender, EventArgs e) {
119      foreach(DataGridViewColumn column in dataGridView.SelectedColumns) {
120        Dataset.UnscaleVariable(column.Index);
121        column.Name = GetColumnName(column.Index);
122      }
123      Refresh();     
124    }
125
126    private string GetColumnName(int index) {
127      if(Dataset.VariableNames.Length == dataGridView.Columns.Count) {
128        return Dataset.VariableNames[index];
129      } else {
130        return "Var " + index;
131      }
132    }
133  }
134}
Note: See TracBrowser for help on using the repository browser.