#region License Information /* HeuristicLab * Copyright (C) 2002-2008 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.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using HeuristicLab.Common; using HeuristicLab.MainForm; namespace HeuristicLab.Core.Views { /// /// The visual representation of the information of the variables of an operator. /// public partial class OperatorBaseVariableInfosView : ViewBase { /// /// Gets or sets the operator whose variable infos should be represented visually. /// /// Uses property of base class . /// No own data storage present. public IOperator Operator { get { return (IOperator)Item; } set { base.Item = value; } } /// /// Gets all selected variable infos. /// Variable infos are returned read-only! /// public ICollection SelectedVariableInfos { get { List selected = new List(); foreach (ListViewItem item in variableInfosListView.SelectedItems) selected.Add((IVariableInfo)item.Tag); return selected.AsReadOnly(); } } /// /// Initializes a new instance of with caption "Operator". /// public OperatorBaseVariableInfosView() { InitializeComponent(); variableInfosListView.Columns[0].Width = Math.Max(0, variableInfosListView.Width - 25); Caption = "Operator"; } /// /// Initializes a new instance of with the given operator /// . /// /// Calls . /// The operator whose variable infos should be displayed. public OperatorBaseVariableInfosView(IOperator op) : this() { Operator = op; } /// /// Removes the eventhandlers from the underlying . /// /// Calls of base class . protected override void RemoveItemEvents() { Operator.VariableInfoAdded -= new EventHandler>(OperatorBase_VariableInfoAdded); Operator.VariableInfoRemoved -= new EventHandler>(OperatorBase_VariableInfoRemoved); base.RemoveItemEvents(); } /// /// Adds eventhandlers to the underlying . /// /// Calls of base class . protected override void AddItemEvents() { base.AddItemEvents(); Operator.VariableInfoAdded += new EventHandler>(OperatorBase_VariableInfoAdded); Operator.VariableInfoRemoved += new EventHandler>(OperatorBase_VariableInfoRemoved); } /// /// Updates all controls with the latest data of the model. /// /// Calls of base class . protected override void UpdateControls() { base.UpdateControls(); variableInfoDetailsGroupBox.Controls.Clear(); if (Operator == null) { Caption = "Operator"; variableInfosListView.Enabled = false; variableInfoDetailsGroupBox.Enabled = false; } else { Caption = Operator.Name + " (" + Operator.GetType().Name + ")"; variableInfosListView.Enabled = true; foreach (ListViewItem item in variableInfosListView.Items) { ((IVariableInfo)item.Tag).ActualNameChanged -= new EventHandler(VariableInfo_ActualNameChanged); } variableInfosListView.Items.Clear(); foreach (IVariableInfo variableInfo in Operator.VariableInfos) { ListViewItem item = new ListViewItem(); item.Text = variableInfo.ActualName; item.Tag = variableInfo; variableInfosListView.Items.Add(item); variableInfo.ActualNameChanged += new EventHandler(VariableInfo_ActualNameChanged); } if (variableInfosListView.Items.Count > 0) variableInfosListView.SelectedIndices.Add(0); } } private void variableInfosListView_SelectedIndexChanged(object sender, EventArgs e) { if (variableInfoDetailsGroupBox.Controls.Count > 0) variableInfoDetailsGroupBox.Controls[0].Dispose(); variableInfoDetailsGroupBox.Controls.Clear(); variableInfoDetailsGroupBox.Enabled = false; if (variableInfosListView.SelectedItems.Count == 1) { IVariableInfo variableInfo = (IVariableInfo)variableInfosListView.SelectedItems[0].Tag; Control control = (Control)MainFormManager.CreateDefaultView(variableInfo); variableInfoDetailsGroupBox.Controls.Add(control); control.Dock = DockStyle.Fill; variableInfoDetailsGroupBox.Enabled = true; } OnSelectedVariableInfosChanged(); } /// /// Occurs when the variables were changed, whose infos should be displayed. /// public event EventHandler SelectedVariableInfosChanged; /// /// Fires a new SelectedVariableInfosChanged. /// protected virtual void OnSelectedVariableInfosChanged() { if (SelectedVariableInfosChanged != null) SelectedVariableInfosChanged(this, new EventArgs()); } #region Size Changed Events private void variableInfosListView_SizeChanged(object sender, EventArgs e) { if (variableInfosListView.Columns.Count > 0) variableInfosListView.Columns[0].Width = Math.Max(0, variableInfosListView.Width - 25); } #endregion #region VariableInfo Events private void VariableInfo_ActualNameChanged(object sender, EventArgs e) { IVariableInfo variableInfo = (IVariableInfo)sender; foreach (ListViewItem item in variableInfosListView.Items) { if (item.Tag == variableInfo) item.Text = variableInfo.ActualName; } } #endregion #region OperatorBase Events private void OperatorBase_VariableInfoAdded(object sender, EventArgs e) { ListViewItem item = new ListViewItem(); item.Text = e.Value.ActualName; item.Tag = e.Value; variableInfosListView.Items.Add(item); e.Value.ActualNameChanged += new EventHandler(VariableInfo_ActualNameChanged); } private void OperatorBase_VariableInfoRemoved(object sender, EventArgs e) { ListViewItem itemToDelete = null; foreach (ListViewItem item in variableInfosListView.Items) { if (item.Tag == e.Value) itemToDelete = item; } e.Value.ActualNameChanged -= new EventHandler(VariableInfo_ActualNameChanged); variableInfosListView.Items.Remove(itemToDelete); } #endregion } }