[10539] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10539] | 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 |
|
---|
[10786] | 22 | using System;
|
---|
[10902] | 23 | using System.Linq;
|
---|
[10814] | 24 | using System.Windows.Forms;
|
---|
[10303] | 25 | using HeuristicLab.MainForm;
|
---|
[10712] | 26 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[11068] | 27 | using HeuristicLab.Problems.DataAnalysis;
|
---|
[10303] | 28 |
|
---|
| 29 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
| 30 |
|
---|
| 31 | [View("Transformation View")]
|
---|
[10712] | 32 | [Content(typeof(TransformationContent), true)]
|
---|
| 33 | public partial class TransformationView : AsynchronousContentView {
|
---|
[10786] | 34 |
|
---|
[11068] | 35 | public new TransformationContent Content {
|
---|
[10998] | 36 | get { return (TransformationContent)base.Content; }
|
---|
| 37 | set { base.Content = value; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
[10303] | 40 | public TransformationView() {
|
---|
| 41 | InitializeComponent();
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[10772] | 44 | protected override void OnContentChanged() {
|
---|
| 45 | base.OnContentChanged();
|
---|
| 46 | if (Content == null) {
|
---|
[10902] | 47 | transformationListView.Content = null;
|
---|
[10772] | 48 | } else {
|
---|
[10902] | 49 | transformationListView.Content = Content.CheckedTransformationList;
|
---|
[10977] | 50 | CheckFilters();
|
---|
[10772] | 51 | }
|
---|
| 52 | }
|
---|
[10786] | 53 |
|
---|
[10977] | 54 | /// <summary>
|
---|
| 55 | /// Adds eventhandlers to the current instance.
|
---|
| 56 | /// </summary>
|
---|
| 57 | protected override void RegisterContentEvents() {
|
---|
| 58 | Content.FilterLogic.FilterChanged += FilterLogic_FilterChanged;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | /// <summary>
|
---|
| 62 | /// Removes the eventhandlers from the current instance.
|
---|
| 63 | /// </summary>
|
---|
| 64 | protected override void DeregisterContentEvents() {
|
---|
| 65 | Content.FilterLogic.FilterChanged -= FilterLogic_FilterChanged;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | void FilterLogic_FilterChanged(object sender, EventArgs e) {
|
---|
| 69 | if (Content != null) {
|
---|
| 70 | CheckFilters();
|
---|
| 71 | }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | private void CheckFilters() {
|
---|
| 75 | if (Content.FilterLogic.IsFiltered) {
|
---|
| 76 | applyButton.Enabled = false;
|
---|
| 77 | lblFilterNotice.Visible = true;
|
---|
| 78 | } else {
|
---|
| 79 | applyButton.Enabled = true;
|
---|
| 80 | lblFilterNotice.Visible = false;
|
---|
| 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[10786] | 84 | private void applyButton_Click(object sender, EventArgs e) {
|
---|
[10902] | 85 | var transformations = Content.CheckedTransformationList.CheckedItems.Select(x => x.Value);
|
---|
[10786] | 86 |
|
---|
[10945] | 87 | if (transformations.Any(x => ((Transformation)x).ColumnParameter.Value == null)) {
|
---|
| 88 | MessageBox.Show(this, "Parameter \"Column\" of a selected Transformation is not set.", "Applying Transformations...", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
---|
| 89 | return;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[10786] | 92 | var transformator = new PreprocessingTransformator(Content.Data);
|
---|
[10948] | 93 | bool preserve = preserveColumnsCheckbox.CheckState == CheckState.Checked;
|
---|
[10819] | 94 | string errorMsg;
|
---|
[10948] | 95 | bool success = transformator.ApplyTransformations(transformations, preserve, out errorMsg);
|
---|
[10786] | 96 | if (success) {
|
---|
[10902] | 97 | Content.CheckedTransformationList.Clear();
|
---|
[10814] | 98 | MessageBox.Show(this, "Transformations applied.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
---|
[10819] | 99 | } else {
|
---|
| 100 | MessageBox.Show(this,
|
---|
| 101 | "Error in Transformation.\nValue is copied when transformion of cell failed.\n" + errorMsg,
|
---|
| 102 | "Transformation failed", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
---|
[10786] | 103 | }
|
---|
| 104 | }
|
---|
[10303] | 105 | }
|
---|
| 106 | }
|
---|