Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/ClassificationEnsembleSolutionView.cs @ 17208

Last change on this file since 17208 was 17208, checked in by gkronber, 5 years ago

#2971: merged r17180:17184 from trunk to branch

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Windows.Forms;
23using HeuristicLab.Core;
24using HeuristicLab.MainForm;
25
26namespace HeuristicLab.Problems.DataAnalysis.Views {
27  [View("ClassificationEnsembleSolution View")]
28  [Content(typeof(ClassificationEnsembleSolution), false)]
29  public partial class ClassificationEnsembleSolutionView : ClassificationSolutionView {
30    public ClassificationEnsembleSolutionView() {
31      InitializeComponent();
32    }
33
34    public new ClassificationEnsembleSolution Content {
35      get { return (ClassificationEnsembleSolution)base.Content; }
36      set { base.Content = value; }
37    }
38
39    protected override void SetEnabledStateOfControls() {
40      base.SetEnabledStateOfControls();
41      //loading of problemdata is currently not support for ensemble solutions
42      loadProblemDataButton.Enabled = false;
43      loadProblemDataButton.Visible = false;
44    }
45
46    protected override void OnContentChanged() {
47      base.OnContentChanged();
48      itemsListView.Items.Remove(itemsListView.FindItemWithText("Model: ClassificationEnsembleModel"));
49    }
50
51    #region drag & drop
52    protected override void itemsListView_DragDrop(object sender, DragEventArgs e) {
53      if (e.Effect != DragDropEffects.None) {
54        var droppedData = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
55        if (droppedData is IValueParameter) droppedData = ((IValueParameter)droppedData).Value;
56        else if (droppedData is IClassificationProblem) droppedData = ((IClassificationProblem)droppedData).ProblemData;
57
58        ClassificationEnsembleProblemData ensembleProblemData = droppedData as ClassificationEnsembleProblemData;
59        ClassificationProblemData problemData = droppedData as ClassificationProblemData;
60        if (ensembleProblemData != null) {
61          Content.ProblemData = (ClassificationEnsembleProblemData)ensembleProblemData.Clone();
62        } else if (problemData != null) {
63          Content.ProblemData = new ClassificationEnsembleProblemData((IClassificationProblemData)problemData.Clone());
64        }
65      }
66    }
67    #endregion
68  }
69}
Note: See TracBrowser for help on using the repository browser.