[2805] | 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 System.Windows.Forms;
|
---|
[3153] | 24 | using HeuristicLab.Core;
|
---|
[2805] | 25 | using HeuristicLab.Core.Views;
|
---|
| 26 | using HeuristicLab.MainForm;
|
---|
[3758] | 27 | using HeuristicLab.PluginInfrastructure;
|
---|
[2805] | 28 |
|
---|
[3158] | 29 | namespace HeuristicLab.Problems.TravelingSalesman.Views {
|
---|
[2805] | 30 | /// <summary>
|
---|
[4513] | 31 | /// A view for a Traveling Salesman Problem instance.
|
---|
[2805] | 32 | /// </summary>
|
---|
[3159] | 33 | [View("Traveling Salesman Problem View")]
|
---|
| 34 | [Content(typeof(TravelingSalesmanProblem), true)]
|
---|
| 35 | public sealed partial class TravelingSalesmanProblemView : NamedItemView {
|
---|
[3151] | 36 | private TSPLIBImportDialog tsplibImportDialog;
|
---|
| 37 |
|
---|
[3159] | 38 | public new TravelingSalesmanProblem Content {
|
---|
| 39 | get { return (TravelingSalesmanProblem)base.Content; }
|
---|
[2805] | 40 | set { base.Content = value; }
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | /// <summary>
|
---|
[4513] | 44 | /// Initializes a new instance of <see cref="TravelingSalesmanProblemView"/>.
|
---|
[2805] | 45 | /// </summary>
|
---|
[3159] | 46 | public TravelingSalesmanProblemView() {
|
---|
[2805] | 47 | InitializeComponent();
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[3153] | 50 | protected override void DeregisterContentEvents() {
|
---|
| 51 | Content.CoordinatesParameter.ValueChanged -= new EventHandler(CoordinatesParameter_ValueChanged);
|
---|
[3712] | 52 | Content.BestKnownQualityParameter.ValueChanged -= new EventHandler(BestKnownQualityParameter_ValueChanged);
|
---|
[3153] | 53 | Content.BestKnownSolutionParameter.ValueChanged -= new EventHandler(BestKnownSolutionParameter_ValueChanged);
|
---|
| 54 | base.DeregisterContentEvents();
|
---|
| 55 | }
|
---|
| 56 | protected override void RegisterContentEvents() {
|
---|
| 57 | base.RegisterContentEvents();
|
---|
| 58 | Content.CoordinatesParameter.ValueChanged += new EventHandler(CoordinatesParameter_ValueChanged);
|
---|
[3712] | 59 | Content.BestKnownQualityParameter.ValueChanged += new EventHandler(BestKnownQualityParameter_ValueChanged);
|
---|
[3153] | 60 | Content.BestKnownSolutionParameter.ValueChanged += new EventHandler(BestKnownSolutionParameter_ValueChanged);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[2998] | 63 | protected override void OnContentChanged() {
|
---|
| 64 | base.OnContentChanged();
|
---|
| 65 | if (Content == null) {
|
---|
[3153] | 66 | parameterCollectionView.Content = null;
|
---|
| 67 | pathTSPTourView.Content = null;
|
---|
[2998] | 68 | } else {
|
---|
[3153] | 69 | parameterCollectionView.Content = ((IParameterizedNamedItem)Content).Parameters;
|
---|
[3616] | 70 | pathTSPTourView.Content = new PathTSPTour(Content.Coordinates, Content.BestKnownSolution, Content.BestKnownQuality);
|
---|
[2998] | 71 | }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[3904] | 74 | protected override void SetEnabledStateOfControls() {
|
---|
| 75 | base.SetEnabledStateOfControls();
|
---|
[3454] | 76 | parameterCollectionView.Enabled = Content != null;
|
---|
| 77 | pathTSPTourView.Enabled = Content != null;
|
---|
| 78 | importButton.Enabled = Content != null && !ReadOnly;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
[2805] | 81 | private void importButton_Click(object sender, System.EventArgs e) {
|
---|
[3151] | 82 | if (tsplibImportDialog == null) tsplibImportDialog = new TSPLIBImportDialog();
|
---|
| 83 |
|
---|
| 84 | if (tsplibImportDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
[2805] | 85 | try {
|
---|
[3151] | 86 | if (tsplibImportDialog.Quality == null)
|
---|
| 87 | Content.ImportFromTSPLIB(tsplibImportDialog.TSPFileName, tsplibImportDialog.TourFileName);
|
---|
| 88 | else
|
---|
| 89 | Content.ImportFromTSPLIB(tsplibImportDialog.TSPFileName, tsplibImportDialog.TourFileName, (double)tsplibImportDialog.Quality);
|
---|
[2805] | 90 | }
|
---|
| 91 | catch (Exception ex) {
|
---|
[3758] | 92 | ErrorHandling.ShowErrorDialog(this, ex);
|
---|
[2805] | 93 | }
|
---|
| 94 | }
|
---|
| 95 | }
|
---|
[3153] | 96 |
|
---|
| 97 | private void CoordinatesParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 98 | pathTSPTourView.Content.Coordinates = Content.Coordinates;
|
---|
| 99 | }
|
---|
[3712] | 100 | private void BestKnownQualityParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 101 | pathTSPTourView.Content.Quality = Content.BestKnownQuality;
|
---|
| 102 | }
|
---|
[3153] | 103 | private void BestKnownSolutionParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 104 | pathTSPTourView.Content.Permutation = Content.BestKnownSolution;
|
---|
| 105 | }
|
---|
[2805] | 106 | }
|
---|
| 107 | }
|
---|