Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/RegressionSolutionView.cs @ 15847

Last change on this file since 15847 was 15847, checked in by pfleck, 6 years ago

#2906 Implemented chained transformations on target and input variables.

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Linq;
23using System.Windows.Forms;
24using HeuristicLab.Core;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Problems.DataAnalysis.Views {
28  [View("Solution View")]
29  [Content(typeof(RegressionSolutionBase), false)]
30  public partial class RegressionSolutionView : DataAnalysisSolutionView {
31    public RegressionSolutionView() {
32      InitializeComponent();
33      flowLayoutPanel.Controls.Add(transformButton);
34    }
35
36    public new RegressionSolutionBase Content {
37      get { return (RegressionSolutionBase)base.Content; }
38      set { base.Content = value; }
39    }
40
41    protected override void SetEnabledStateOfControls() {
42      base.SetEnabledStateOfControls();
43      transformButton.Visible = Content != null && Content.ProblemData.Transformations.Any();
44    }
45
46    #region drag and drop
47    protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
48      validDragOperation = false;
49      if (ReadOnly) return;
50
51      var dropData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
52      if (dropData is IRegressionProblemData) validDragOperation = true;
53      else if (dropData is IRegressionProblem) validDragOperation = true;
54      else if (dropData is IValueParameter) {
55        var param = (IValueParameter)dropData;
56        if (param.Value is RegressionProblemData) validDragOperation = true;
57      }
58    }
59    #endregion
60
61    private void transformButton_Click(object sender, System.EventArgs e) {
62      var transformedModel = new TransformedRegressionModel(Content.Model, Content.ProblemData.Transformations);
63      var originalProblemData = (IRegressionProblemData)Content.ProblemData.InverseTransform();
64      var transformedSolution = new TransformedRegressionSolution(transformedModel, originalProblemData);
65      MainFormManager.MainForm.ShowContent(transformedSolution);
66    }
67  }
68}
Note: See TracBrowser for help on using the repository browser.