#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Windows.Forms; using HeuristicLab.Core; using HeuristicLab.Core.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Optimization.Views { /// /// The visual representation of a . /// [View("Run View")] [Content(typeof(Run), true)] public sealed partial class RunView : NamedItemView { /// /// Gets or sets the variable to represent visually. /// /// Uses property of base class . /// No own data storage present. public new Run Content { get { return (Run)base.Content; } set { base.Content = value; } } /// /// Initializes a new instance of with caption "Variable". /// public RunView() { InitializeComponent(); Caption = "Run"; } /// /// Initializes a new instance of with the given . /// /// Calls . /// The variable to represent visually. public RunView(Run content) : this() { Content = content; } protected override void OnContentChanged() { base.OnContentChanged(); FillListView(); viewHost.ViewType = null; viewHost.Content = null; if (Content == null) { Caption = "Run"; parametersResultsGroupBox.Enabled = false; } else { Caption = Content.Name + " (" + Content.GetType().Name + ")"; parametersResultsGroupBox.Enabled = true; } } private void FillListView() { listView.Items.Clear(); if (Content != null) { foreach (string key in Content.Parameters.Keys) { IItem value = Content.Parameters[key]; ListViewItem item = new ListViewItem(new string[] { key, value != null ? value.ToString() : "-" }); item.Tag = value; item.Group = listView.Groups["parametersGroup"]; listView.Items.Add(item); } foreach (string key in Content.Results.Keys) { IItem value = Content.Results[key]; ListViewItem item = new ListViewItem(new string[] { key, value != null ? value.ToString() : "-" }); item.Tag = value; item.Group = listView.Groups["resultsGroup"]; listView.Items.Add(item); } if (listView.Items.Count > 0) { for (int i = 0; i < listView.Columns.Count; i++) listView.Columns[i].AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent); } } } private void listView_SelectedIndexChanged(object sender, EventArgs e) { if (listView.SelectedItems.Count == 1) { viewHost.ViewType = null; viewHost.Content = listView.SelectedItems[0].Tag; } else { viewHost.Content = null; } } } }