1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Drawing;
|
---|
26 | using System.Data;
|
---|
27 | using System.Text;
|
---|
28 | using System.Windows.Forms;
|
---|
29 | using HeuristicLab.Core;
|
---|
30 | using HeuristicLab.Core.Views;
|
---|
31 | using HeuristicLab.MainForm;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.Parameters.Views {
|
---|
34 | /// <summary>
|
---|
35 | /// The visual representation of a <see cref="Parameter"/>.
|
---|
36 | /// </summary>
|
---|
37 | [Content(typeof(Parameter), true)]
|
---|
38 | [Content(typeof(IParameter), false)]
|
---|
39 | public partial class ParameterView : NamedItemView {
|
---|
40 | /// <summary>
|
---|
41 | /// Gets or sets the variable to represent visually.
|
---|
42 | /// </summary>
|
---|
43 | /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
|
---|
44 | /// No own data storage present.</remarks>
|
---|
45 | public new IParameter Content {
|
---|
46 | get { return (IParameter)base.Content; }
|
---|
47 | set { base.Content = value; }
|
---|
48 | }
|
---|
49 |
|
---|
50 | /// <summary>
|
---|
51 | /// Initializes a new instance of <see cref="VariableView"/> with caption "Variable".
|
---|
52 | /// </summary>
|
---|
53 | public ParameterView() {
|
---|
54 | InitializeComponent();
|
---|
55 | Caption = "Parameter";
|
---|
56 | }
|
---|
57 | /// <summary>
|
---|
58 | /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.
|
---|
59 | /// </summary>
|
---|
60 | /// <remarks>Calls <see cref="VariableView()"/>.</remarks>
|
---|
61 | /// <param name="variable">The variable to represent visually.</param>
|
---|
62 | public ParameterView(IParameter content)
|
---|
63 | : this() {
|
---|
64 | Content = content;
|
---|
65 | }
|
---|
66 |
|
---|
67 | protected override void OnContentChanged() {
|
---|
68 | base.OnContentChanged();
|
---|
69 | if (Content == null) {
|
---|
70 | Caption = "Parameter";
|
---|
71 | dataTypeTextBox.Text = "-";
|
---|
72 | dataTypeTextBox.Enabled = false;
|
---|
73 | } else {
|
---|
74 | Caption = Content.Name + " (" + Content.GetType().Name + ")";
|
---|
75 | dataTypeTextBox.Text = Content.DataType.Name;
|
---|
76 | dataTypeTextBox.Enabled = true;
|
---|
77 | }
|
---|
78 | }
|
---|
79 | }
|
---|
80 | }
|
---|