[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] | 22 | using System.Linq;
|
---|
| 23 | using System.Windows.Forms;
|
---|
[2834] | 24 | using HeuristicLab.Core.Views;
|
---|
[2796] | 25 | using HeuristicLab.MainForm;
|
---|
[7641] | 26 | using HeuristicLab.Problems.Instances;
|
---|
[2796] | 27 |
|
---|
[2852] | 28 | namespace HeuristicLab.Optimization.Views {
|
---|
[2796] | 29 | /// <summary>
|
---|
| 30 | /// The base class for visual representations of items.
|
---|
| 31 | /// </summary>
|
---|
[2917] | 32 | [View("Problem View")]
|
---|
[2865] | 33 | [Content(typeof(IProblem), true)]
|
---|
[2851] | 34 | public partial class ProblemView : ParameterizedNamedItemView {
|
---|
[2796] | 35 | public new IProblem Content {
|
---|
| 36 | get { return (IProblem)base.Content; }
|
---|
| 37 | set { base.Content = value; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | /// <summary>
|
---|
| 41 | /// Initializes a new instance of <see cref="ItemBaseView"/>.
|
---|
| 42 | /// </summary>
|
---|
| 43 | public ProblemView() {
|
---|
| 44 | InitializeComponent();
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | protected override void OnContentChanged() {
|
---|
| 48 | base.OnContentChanged();
|
---|
[7823] | 49 | IProblemInstanceConsumer consumer = Content as IProblemInstanceConsumer;
|
---|
| 50 | if (consumer != null) {
|
---|
| 51 | problemInstanceConsumerView.Content = consumer;
|
---|
| 52 | problemInstanceSplitContainer.Panel1Collapsed = !problemInstanceConsumerView.ProblemInstanceProviders.Any();
|
---|
[7641] | 53 | } else {
|
---|
[7823] | 54 | problemInstanceSplitContainer.Panel1Collapsed = true;
|
---|
[7641] | 55 | }
|
---|
| 56 | SetEnabledStateOfControls();
|
---|
[2796] | 57 | }
|
---|
[7641] | 58 |
|
---|
[2796] | 59 | }
|
---|
| 60 | }
|
---|