[5829] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5829] | 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 |
|
---|
[10174] | 22 | using System;
|
---|
[5829] | 23 | using System.Windows.Forms;
|
---|
[10175] | 24 | using HeuristicLab.Common;
|
---|
[6666] | 25 | using HeuristicLab.Core;
|
---|
[5829] | 26 | using HeuristicLab.MainForm;
|
---|
[10174] | 27 | using HeuristicLab.PluginInfrastructure;
|
---|
[5829] | 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[5834] | 30 | [View("RegressionSolution View")]
|
---|
[6652] | 31 | [Content(typeof(RegressionSolutionBase), false)]
|
---|
[5829] | 32 | public partial class RegressionSolutionView : DataAnalysisSolutionView {
|
---|
| 33 | public RegressionSolutionView() {
|
---|
| 34 | InitializeComponent();
|
---|
| 35 | }
|
---|
| 36 |
|
---|
[6597] | 37 | public new RegressionSolutionBase Content {
|
---|
| 38 | get { return (RegressionSolutionBase)base.Content; }
|
---|
[5829] | 39 | set { base.Content = value; }
|
---|
| 40 | }
|
---|
[6653] | 41 |
|
---|
| 42 | #region drag and drop
|
---|
| 43 | protected override void itemsListView_DragEnter(object sender, DragEventArgs e) {
|
---|
| 44 | validDragOperation = false;
|
---|
[6666] | 45 | if (ReadOnly) return;
|
---|
| 46 |
|
---|
| 47 | var dropData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
[10173] | 48 | if (dropData is IRegressionProblemData) validDragOperation = true;
|
---|
| 49 | else if (dropData is IRegressionProblem) validDragOperation = true;
|
---|
[6666] | 50 | else if (dropData is IValueParameter) {
|
---|
| 51 | var param = (IValueParameter)dropData;
|
---|
| 52 | if (param.Value is RegressionProblemData) validDragOperation = true;
|
---|
[6653] | 53 | }
|
---|
| 54 | }
|
---|
| 55 | #endregion
|
---|
[10174] | 56 |
|
---|
| 57 | protected override bool CheckCompatibilityOfProblemData(IDataAnalysisProblemData problemData) {
|
---|
[10175] | 58 | IRegressionProblemData regressionProblemData = problemData as IRegressionProblemData;
|
---|
| 59 | if (regressionProblemData == null) {
|
---|
| 60 | ErrorHandling.ShowErrorDialog(this, new ArgumentException("The problem data is no regression problem data. Instead a " + problemData.GetType().GetPrettyName() + " was provided."));
|
---|
| 61 | return false;
|
---|
| 62 | }
|
---|
[10174] | 63 |
|
---|
| 64 | if (!regressionProblemData.TargetVariable.Equals(Content.ProblemData.TargetVariable)) {
|
---|
| 65 | string message = "The target variables are not matching. Old target variable: '"
|
---|
| 66 | + Content.ProblemData.TargetVariable
|
---|
| 67 | + "'. New targetvariable: '" + regressionProblemData.TargetVariable + "'";
|
---|
| 68 | ErrorHandling.ShowErrorDialog(this, new InvalidOperationException(message));
|
---|
| 69 | return false;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | return base.CheckCompatibilityOfProblemData(problemData);
|
---|
| 73 | }
|
---|
[5829] | 74 | }
|
---|
| 75 | }
|
---|