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;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core.Views;
|
---|
26 | using HeuristicLab.MainForm;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Optimization.Views {
|
---|
29 | /// <summary>
|
---|
30 | /// The visual representation of a <see cref="Variable"/>.
|
---|
31 | /// </summary>
|
---|
32 | [View("Result View")]
|
---|
33 | [Content(typeof(Result), true)]
|
---|
34 | [Content(typeof(IResult), false)]
|
---|
35 | public sealed partial class ResultView : NamedItemView {
|
---|
36 | /// <summary>
|
---|
37 | /// Gets or sets the variable to represent visually.
|
---|
38 | /// </summary>
|
---|
39 | /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
|
---|
40 | /// No own data storage present.</remarks>
|
---|
41 | public new IResult Content {
|
---|
42 | get { return (IResult)base.Content; }
|
---|
43 | set { base.Content = value; }
|
---|
44 | }
|
---|
45 |
|
---|
46 | /// <summary>
|
---|
47 | /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
|
---|
48 | /// </summary>
|
---|
49 | public ResultView() {
|
---|
50 | InitializeComponent();
|
---|
51 | Caption = "Result";
|
---|
52 | }
|
---|
53 | /// <summary>
|
---|
54 | /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.
|
---|
55 | /// </summary>
|
---|
56 | /// <remarks>Calls <see cref="VariableView()"/>.</remarks>
|
---|
57 | /// <param name="variable">The variable to represent visually.</param>
|
---|
58 | public ResultView(IResult content)
|
---|
59 | : this() {
|
---|
60 | Content = content;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /// <summary>
|
---|
64 | /// Removes the eventhandlers from the underlying <see cref="Variable"/>.
|
---|
65 | /// </summary>
|
---|
66 | /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
|
---|
67 | protected override void DeregisterContentEvents() {
|
---|
68 | Content.ValueChanged -= new EventHandler(Content_ValueChanged);
|
---|
69 | base.DeregisterContentEvents();
|
---|
70 | }
|
---|
71 |
|
---|
72 | /// <summary>
|
---|
73 | /// Adds eventhandlers to the underlying <see cref="Variable"/>.
|
---|
74 | /// </summary>
|
---|
75 | /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
|
---|
76 | protected override void RegisterContentEvents() {
|
---|
77 | base.RegisterContentEvents();
|
---|
78 | Content.ValueChanged += new EventHandler(Content_ValueChanged);
|
---|
79 | }
|
---|
80 |
|
---|
81 | protected override void OnContentChanged() {
|
---|
82 | base.OnContentChanged();
|
---|
83 | if (Content == null) {
|
---|
84 | Caption = "Result";
|
---|
85 | dataTypeTextBox.Text = "-";
|
---|
86 | dataTypeTextBox.Enabled = false;
|
---|
87 | valueGroupBox.Enabled = false;
|
---|
88 | viewHost.Content = null;
|
---|
89 | } else {
|
---|
90 | Caption = Content.Name + " (" + Content.GetType().Name + ")";
|
---|
91 | dataTypeTextBox.Text = Content.DataType.GetPrettyName();
|
---|
92 | dataTypeTextBox.Enabled = true;
|
---|
93 | valueGroupBox.Enabled = true;
|
---|
94 | viewHost.ViewType = null;
|
---|
95 | viewHost.Content = Content.Value;
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | private void Content_ValueChanged(object sender, EventArgs e) {
|
---|
100 | if (InvokeRequired)
|
---|
101 | Invoke(new EventHandler(Content_ValueChanged), sender, e);
|
---|
102 | else {
|
---|
103 | viewHost.ViewType = null;
|
---|
104 | viewHost.Content = Content.Value;
|
---|
105 | }
|
---|
106 | }
|
---|
107 | }
|
---|
108 | }
|
---|