[2796] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2796] | 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 |
|
---|
[7956] | 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
[7641] | 24 | using System.Linq;
|
---|
| 25 | using System.Windows.Forms;
|
---|
[2834] | 26 | using HeuristicLab.Core.Views;
|
---|
[2796] | 27 | using HeuristicLab.MainForm;
|
---|
[7641] | 28 | using HeuristicLab.Problems.Instances;
|
---|
[7956] | 29 | using HeuristicLab.Problems.Instances.Views;
|
---|
[2796] | 30 |
|
---|
[2852] | 31 | namespace HeuristicLab.Optimization.Views {
|
---|
[2796] | 32 | /// <summary>
|
---|
| 33 | /// The base class for visual representations of items.
|
---|
| 34 | /// </summary>
|
---|
[2917] | 35 | [View("Problem View")]
|
---|
[2865] | 36 | [Content(typeof(IProblem), true)]
|
---|
[2851] | 37 | public partial class ProblemView : ParameterizedNamedItemView {
|
---|
[7956] | 38 |
|
---|
| 39 | private static Type neededViewType = typeof(ProblemInstanceConsumerView);
|
---|
| 40 |
|
---|
[2796] | 41 | public new IProblem Content {
|
---|
| 42 | get { return (IProblem)base.Content; }
|
---|
| 43 | set { base.Content = value; }
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | /// <summary>
|
---|
| 47 | /// Initializes a new instance of <see cref="ItemBaseView"/>.
|
---|
| 48 | /// </summary>
|
---|
| 49 | public ProblemView() {
|
---|
| 50 | InitializeComponent();
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | protected override void OnContentChanged() {
|
---|
| 54 | base.OnContentChanged();
|
---|
[7823] | 55 | IProblemInstanceConsumer consumer = Content as IProblemInstanceConsumer;
|
---|
| 56 | if (consumer != null) {
|
---|
[7956] | 57 | IEnumerable<Type> viewTypes = MainFormManager.GetViewTypes(consumer.GetType(), true);
|
---|
| 58 | Type genericView = viewTypes.Where(x => x.IsSubclassOf(neededViewType)).First();
|
---|
[8968] | 59 | ProblemInstanceConsumerViewHost.Content = null; //necessary to enable the change of the ViewType
|
---|
[7956] | 60 | ProblemInstanceConsumerViewHost.ViewType = genericView;
|
---|
| 61 | ProblemInstanceConsumerViewHost.Content = consumer;
|
---|
| 62 | ProblemInstanceConsumerView view = (ProblemInstanceConsumerView)ProblemInstanceConsumerViewHost.ActiveView;
|
---|
| 63 | problemInstanceSplitContainer.Panel1Collapsed = !view.ProblemInstanceProviders.Any();
|
---|
[7641] | 64 | } else {
|
---|
[7823] | 65 | problemInstanceSplitContainer.Panel1Collapsed = true;
|
---|
[7641] | 66 | }
|
---|
| 67 | SetEnabledStateOfControls();
|
---|
[2796] | 68 | }
|
---|
[7641] | 69 |
|
---|
[2796] | 70 | }
|
---|
| 71 | }
|
---|