Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Optimization.Views/3.3/ProblemView.cs @ 8347

Last change on this file since 8347 was 8085, checked in by gkronber, 12 years ago

#1847: merged trunk changes r7800:HEAD into gp move operators branch

File size: 2.5 KB
RevLine 
[2796]1#region License Information
2/* HeuristicLab
[7259]3 * Copyright (C) 2002-2012 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
[7641]22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Windows.Forms;
[2834]26using HeuristicLab.Core.Views;
[2796]27using HeuristicLab.MainForm;
[7641]28using HeuristicLab.Problems.Instances;
[8085]29using HeuristicLab.Problems.Instances.Views;
[2796]30
[2852]31namespace 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 {
[8085]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();
[8085]55      IProblemInstanceConsumer consumer = Content as IProblemInstanceConsumer;
56      if (consumer != null) {
57        IEnumerable<Type> viewTypes = MainFormManager.GetViewTypes(consumer.GetType(), true);
58        Type genericView = viewTypes.Where(x => x.IsSubclassOf(neededViewType)).First();
59        ProblemInstanceConsumerViewHost.ViewType = genericView;
60        ProblemInstanceConsumerViewHost.Content = consumer;
61        ProblemInstanceConsumerView view = (ProblemInstanceConsumerView)ProblemInstanceConsumerViewHost.ActiveView;
62        problemInstanceSplitContainer.Panel1Collapsed = !view.ProblemInstanceProviders.Any();
[7641]63      } else {
[8085]64        problemInstanceSplitContainer.Panel1Collapsed = true;
[7641]65      }
66      SetEnabledStateOfControls();
[2796]67    }
[7641]68
[2796]69  }
70}
Note: See TracBrowser for help on using the repository browser.