[4536] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using HeuristicLab.Core.Views;
|
---|
| 24 | using HeuristicLab.Optimization;
|
---|
| 25 |
|
---|
| 26 | namespace HeuristicLab.Algorithms.DataAnalysis.Views {
|
---|
| 27 | internal partial class AlgorithmResultsCollectionView : ItemCollectionView<IAlgorithm> {
|
---|
| 28 | public AlgorithmResultsCollectionView() {
|
---|
| 29 | InitializeComponent();
|
---|
| 30 | ReadOnly = true;
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | public override bool ReadOnly {
|
---|
| 34 | get { return true; }
|
---|
| 35 | set { }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | protected override void itemsListView_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 39 | removeButton.Enabled = (Content != null) && !Content.IsReadOnly && !ReadOnly && itemsListView.SelectedItems.Count > 0;
|
---|
| 40 | AdjustListViewColumnSizes();
|
---|
| 41 | if (showDetailsCheckBox.Checked) {
|
---|
| 42 | if (itemsListView.SelectedItems.Count == 1) {
|
---|
| 43 | IAlgorithm item = (IAlgorithm)itemsListView.SelectedItems[0].Tag;
|
---|
| 44 | detailsGroupBox.Enabled = true;
|
---|
| 45 | viewHost.Content = item.Results;
|
---|
| 46 | } else {
|
---|
| 47 | viewHost.Content = null;
|
---|
| 48 | detailsGroupBox.Enabled = false;
|
---|
| 49 | }
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
| 52 | }
|
---|
| 53 | }
|
---|