#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.Common; using HeuristicLab.Core; using HeuristicLab.Core.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Problems.TravelingSalesman.Views { /// /// The base class for visual representations of items. /// [View("Traveling Salesman Problem View")] [Content(typeof(TravelingSalesmanProblem), true)] public sealed partial class TravelingSalesmanProblemView : NamedItemView { private TSPLIBImportDialog tsplibImportDialog; public new TravelingSalesmanProblem Content { get { return (TravelingSalesmanProblem)base.Content; } set { base.Content = value; } } /// /// Initializes a new instance of . /// public TravelingSalesmanProblemView() { InitializeComponent(); } protected override void DeregisterContentEvents() { Content.CoordinatesParameter.ValueChanged -= new EventHandler(CoordinatesParameter_ValueChanged); Content.BestKnownSolutionParameter.ValueChanged -= new EventHandler(BestKnownSolutionParameter_ValueChanged); base.DeregisterContentEvents(); } protected override void RegisterContentEvents() { base.RegisterContentEvents(); Content.CoordinatesParameter.ValueChanged += new EventHandler(CoordinatesParameter_ValueChanged); Content.BestKnownSolutionParameter.ValueChanged += new EventHandler(BestKnownSolutionParameter_ValueChanged); } protected override void OnContentChanged() { base.OnContentChanged(); if (Content == null) { parameterCollectionView.Content = null; pathTSPTourView.Content = null; } else { parameterCollectionView.Content = ((IParameterizedNamedItem)Content).Parameters; pathTSPTourView.Content = new PathTSPTour(Content.Coordinates, Content.BestKnownSolution, Content.BestKnownQuality); } SetEnabledStateOfControls(); } protected override void OnReadOnlyChanged() { base.OnReadOnlyChanged(); SetEnabledStateOfControls(); } private void SetEnabledStateOfControls() { parameterCollectionView.Enabled = Content != null; pathTSPTourView.Enabled = Content != null; importButton.Enabled = Content != null && !ReadOnly; } private void importButton_Click(object sender, System.EventArgs e) { if (tsplibImportDialog == null) tsplibImportDialog = new TSPLIBImportDialog(); if (tsplibImportDialog.ShowDialog(this) == DialogResult.OK) { try { if (tsplibImportDialog.Quality == null) Content.ImportFromTSPLIB(tsplibImportDialog.TSPFileName, tsplibImportDialog.TourFileName); else Content.ImportFromTSPLIB(tsplibImportDialog.TSPFileName, tsplibImportDialog.TourFileName, (double)tsplibImportDialog.Quality); } catch (Exception ex) { Auxiliary.ShowErrorMessageBox(ex); } } } private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) { pathTSPTourView.Content.Coordinates = Content.Coordinates; } private void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) { pathTSPTourView.Content.Permutation = Content.BestKnownSolution; } } }