[2851] | 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;
|
---|
[3376] | 24 | using HeuristicLab.Common;
|
---|
[2851] | 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Core.Views;
|
---|
| 27 | using HeuristicLab.MainForm;
|
---|
| 28 | using HeuristicLab.Persistence.Default.Xml;
|
---|
| 29 |
|
---|
[2852] | 30 | namespace HeuristicLab.Optimization.Views {
|
---|
[2851] | 31 | /// <summary>
|
---|
| 32 | /// The base class for visual representations of items.
|
---|
| 33 | /// </summary>
|
---|
[2917] | 34 | [View("UserDefinedAlgorithm View")]
|
---|
[2851] | 35 | [Content(typeof(UserDefinedAlgorithm), true)]
|
---|
| 36 | public sealed partial class UserDefinedAlgorithmView : EngineAlgorithmView {
|
---|
| 37 | public new UserDefinedAlgorithm Content {
|
---|
| 38 | get { return (UserDefinedAlgorithm)base.Content; }
|
---|
| 39 | set { base.Content = value; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Initializes a new instance of <see cref="ItemBaseView"/>.
|
---|
| 44 | /// </summary>
|
---|
| 45 | public UserDefinedAlgorithmView() {
|
---|
| 46 | InitializeComponent();
|
---|
| 47 | }
|
---|
| 48 | /// <summary>
|
---|
| 49 | /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
|
---|
| 50 | /// </summary>
|
---|
| 51 | /// <param name="item">The item that should be displayed.</param>
|
---|
| 52 | public UserDefinedAlgorithmView(UserDefinedAlgorithm content)
|
---|
| 53 | : this() {
|
---|
| 54 | Content = content;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | protected override void OnContentChanged() {
|
---|
| 58 | base.OnContentChanged();
|
---|
[3367] | 59 | if (Content == null)
|
---|
[2851] | 60 | globalScopeView.Content = null;
|
---|
[3367] | 61 | else
|
---|
[2851] | 62 | globalScopeView.Content = Content.GlobalScope;
|
---|
[3367] | 63 | SetEnableStateOfControls();
|
---|
[2851] | 64 | }
|
---|
| 65 |
|
---|
[3367] | 66 | protected override void OnReadOnlyChanged() {
|
---|
| 67 | base.OnReadOnlyChanged();
|
---|
| 68 | SetEnableStateOfControls();
|
---|
| 69 | }
|
---|
| 70 | private void SetEnableStateOfControls() {
|
---|
[3454] | 71 | globalScopeView.Enabled = Content != null;
|
---|
| 72 | newOperatorGraphButton.Enabled = Content != null && !ReadOnly;
|
---|
| 73 | openOperatorGraphButton.Enabled = Content != null && !ReadOnly;
|
---|
[2998] | 74 | }
|
---|
[2851] | 75 |
|
---|
| 76 | private void newOperatorGraphButton_Click(object sender, EventArgs e) {
|
---|
| 77 | Content.OperatorGraph = new OperatorGraph();
|
---|
| 78 | }
|
---|
| 79 | private void openOperatorGraphButton_Click(object sender, EventArgs e) {
|
---|
| 80 | openFileDialog.Title = "Open Operator Graph";
|
---|
| 81 | if (openFileDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
[2954] | 82 | this.Cursor = Cursors.AppStarting;
|
---|
[3454] | 83 | newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = false;
|
---|
[3177] | 84 | operatorGraphViewHost.Enabled = false;
|
---|
[2954] | 85 |
|
---|
| 86 | var call = new Func<string, object>(XmlParser.Deserialize);
|
---|
| 87 | call.BeginInvoke(openFileDialog.FileName, delegate(IAsyncResult a) {
|
---|
| 88 | OperatorGraph operatorGraph = null;
|
---|
| 89 | try {
|
---|
| 90 | operatorGraph = call.EndInvoke(a) as OperatorGraph;
|
---|
| 91 | }
|
---|
| 92 | catch (Exception ex) {
|
---|
| 93 | Auxiliary.ShowErrorMessageBox(ex);
|
---|
| 94 | }
|
---|
| 95 | Invoke(new Action(delegate() {
|
---|
| 96 | if (operatorGraph == null)
|
---|
| 97 | MessageBox.Show(this, "The selected file does not contain an operator graph.", "Invalid File", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 98 | else
|
---|
| 99 | Content.OperatorGraph = operatorGraph;
|
---|
[3177] | 100 | operatorGraphViewHost.Enabled = true;
|
---|
[3454] | 101 | newOperatorGraphButton.Enabled = openOperatorGraphButton.Enabled = true;
|
---|
[2954] | 102 | this.Cursor = Cursors.Default;
|
---|
| 103 | }));
|
---|
| 104 | }, null);
|
---|
[2851] | 105 | }
|
---|
| 106 | }
|
---|
| 107 | }
|
---|
| 108 | }
|
---|