Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs @ 10711

Last change on this file since 10711 was 10709, checked in by rstoll, 10 years ago
  • Added ManipulationView with Content

presentation logic implemented
manipulation actions for delete xY missing

  • License added to LineChartView
  • ShuffleWithRanges without parameter added to ManipulationLogic (will use training and test partition)
File size: 3.9 KB
Line 
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
22using System;
23using System.Windows.Forms;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Core.Views;
27using HeuristicLab.MainForm;
28
29namespace HeuristicLab.DataPreprocessing.Views {
30  [View("DataPreprocessing View")]
31  [Content(typeof(PreprocessingContext), true)]
32  [Content(typeof(IPreprocessingContext), false)]
33  public partial class DataPreprocessingView : ItemView {
34    public DataPreprocessingView() {
35      InitializeComponent();
36    }
37
38    public new IPreprocessingContext Content {
39      get { return (IPreprocessingContext)base.Content; }
40      set { base.Content = value; }
41    }
42
43    protected override void OnContentChanged() {
44      base.OnContentChanged();
45      if (Content != null) {
46        var data = Content.Data;
47        var searchLogic = new SearchLogic(data);
48        var dataGridLogic = new DataGridLogic(data);
49        var statisticsLogic = new StatisticsLogic(data, searchLogic);
50        var manipulationLogic = new ManipulationLogic(data, searchLogic, statisticsLogic, dataGridLogic);
51        var transformationLogic = new TransformationLogic(data, searchLogic, statisticsLogic);
52        var lineChartLogic = new ChartLogic(data);
53        var histogramLogic = new ChartLogic(data);
54        var filterLogic = new FilterLogic(data);
55
56        var viewShortcuts = new ItemCollection<IViewShortcut>() {
57          new DataGridContent(dataGridLogic, manipulationLogic, filterLogic),
58          new StatisticsContent(statisticsLogic),
59          new FilterContent(filterLogic),
60          new TransformationContent(transformationLogic),
61          new ManipulationContent(manipulationLogic),
62          new LineChartContent(lineChartLogic),
63          new HistogramContent(histogramLogic)
64        };
65
66        viewShortcutCollectionView.Content = viewShortcuts.AsReadOnly();
67      } else {
68        viewShortcutCollectionView.Content = null;
69      }
70    }
71
72    protected override void SetEnabledStateOfControls() {
73      base.SetEnabledStateOfControls();
74      viewShortcutCollectionView.Enabled = Content != null;
75      applyInNewTabButton.Enabled = Content != null;
76      exportProblemButton.Enabled = Content != null;
77      undoButton.Enabled = Content != null;
78    }
79
80    private void exportProblemButton_Click(object sender, EventArgs e) {
81      var problem = Content.ExportProblem();
82
83      var saveFileDialog = new SaveFileDialog {
84        Title = "Save Item",
85        DefaultExt = "hl",
86        Filter = "Uncompressed HeuristicLab Files|*.hl|HeuristicLab Files|*.hl|All Files|*.*",
87        FilterIndex = 2
88      };
89
90      var content = problem as IStorableContent;
91      if (saveFileDialog.ShowDialog() == DialogResult.OK) {
92        bool compressed = saveFileDialog.FilterIndex != 1;
93        ContentManager.Save(content, saveFileDialog.FileName, compressed);
94      }
95    }
96
97    private void applyInNewTabButton_Click(object sender, EventArgs e) {
98      var item = Content.ExportAlgorithmOrProblem();
99
100      MainFormManager.MainForm.ShowContent(item);
101    }
102
103    private void undoButton_Click(object sender, EventArgs e) {
104      Content.Data.Undo();
105    }
106  }
107}
Note: See TracBrowser for help on using the repository browser.