[2653] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2653] | 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;
|
---|
[3136] | 23 | using System.Drawing;
|
---|
[2818] | 24 | using HeuristicLab.Common;
|
---|
[2714] | 25 | using HeuristicLab.Core;
|
---|
[2653] | 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
[2714] | 28 | namespace HeuristicLab.Parameters {
|
---|
[2653] | 29 | /// <summary>
|
---|
[2740] | 30 | /// A base class for parameters.
|
---|
[2653] | 31 | /// </summary>
|
---|
[2664] | 32 | [Item("Parameter", "A base class for parameters.")]
|
---|
[3017] | 33 | [StorableClass]
|
---|
[9195] | 34 | public abstract class Parameter : NamedItem, IParameter {
|
---|
[3136] | 35 | public override Image ItemImage {
|
---|
| 36 | get {
|
---|
| 37 | if ((dataType != null) && (typeof(IOperator).IsAssignableFrom(dataType)))
|
---|
[5287] | 38 | return HeuristicLab.Common.Resources.VSImageLibrary.Method;
|
---|
[3136] | 39 | else
|
---|
| 40 | return base.ItemImage;
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
[2653] | 43 | public override bool CanChangeName {
|
---|
| 44 | get { return false; }
|
---|
| 45 | }
|
---|
| 46 | public override bool CanChangeDescription {
|
---|
| 47 | get { return false; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | [Storable]
|
---|
| 51 | private Type dataType;
|
---|
| 52 | public Type DataType {
|
---|
| 53 | get { return dataType; }
|
---|
| 54 | }
|
---|
[5193] | 55 |
|
---|
[5768] | 56 | [Storable(DefaultValue = false)]
|
---|
| 57 | private bool hidden;
|
---|
| 58 | public bool Hidden {
|
---|
| 59 | get { return hidden; }
|
---|
| 60 | set {
|
---|
| 61 | if (value != hidden) {
|
---|
| 62 | hidden = value;
|
---|
| 63 | OnHiddenChanged();
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
[2757] | 68 | public IItem ActualValue {
|
---|
[9195] | 69 | get { return GetActualValue(); }
|
---|
| 70 | set { SetActualValue(value); }
|
---|
[2757] | 71 | }
|
---|
[2653] | 72 |
|
---|
[4722] | 73 | [StorableConstructor]
|
---|
[5193] | 74 | protected Parameter(bool deserializing)
|
---|
| 75 | : base(deserializing) {
|
---|
| 76 | }
|
---|
[4722] | 77 | protected Parameter(Parameter original, Cloner cloner)
|
---|
| 78 | : base(original, cloner) {
|
---|
| 79 | dataType = original.dataType;
|
---|
[5768] | 80 | hidden = original.hidden;
|
---|
[4722] | 81 | }
|
---|
[2664] | 82 | protected Parameter()
|
---|
[2653] | 83 | : base("Anonymous") {
|
---|
| 84 | dataType = typeof(IItem);
|
---|
[5768] | 85 | hidden = false;
|
---|
[2653] | 86 | }
|
---|
[2756] | 87 | protected Parameter(string name, Type dataType)
|
---|
| 88 | : base(name) {
|
---|
| 89 | if (dataType == null) throw new ArgumentNullException();
|
---|
| 90 | this.dataType = dataType;
|
---|
[5768] | 91 | hidden = false;
|
---|
[2756] | 92 | }
|
---|
[2664] | 93 | protected Parameter(string name, string description, Type dataType)
|
---|
[2653] | 94 | : base(name, description) {
|
---|
| 95 | if (dataType == null) throw new ArgumentNullException();
|
---|
| 96 | this.dataType = dataType;
|
---|
[5768] | 97 | hidden = false;
|
---|
[6103] | 98 | }
|
---|
| 99 |
|
---|
[2669] | 100 | public override string ToString() {
|
---|
[3688] | 101 | return Name;
|
---|
[2669] | 102 | }
|
---|
[2757] | 103 |
|
---|
| 104 | protected abstract IItem GetActualValue();
|
---|
| 105 | protected abstract void SetActualValue(IItem value);
|
---|
[5768] | 106 |
|
---|
| 107 | public event EventHandler HiddenChanged;
|
---|
| 108 | protected virtual void OnHiddenChanged() {
|
---|
| 109 | EventHandler handler = HiddenChanged;
|
---|
| 110 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 111 | }
|
---|
[2653] | 112 | }
|
---|
| 113 | }
|
---|