[2653] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) 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;
|
---|
[3341] | 23 | using System.Drawing;
|
---|
[17149] | 24 | using HEAL.Attic;
|
---|
[2756] | 25 | using HeuristicLab.Common;
|
---|
[2714] | 26 | using HeuristicLab.Core;
|
---|
[2653] | 27 |
|
---|
[2714] | 28 | namespace HeuristicLab.Parameters {
|
---|
[2653] | 29 | /// <summary>
|
---|
[2947] | 30 | /// A parameter whose value is either defined in the parameter itself or is retrieved from the scope.
|
---|
[2653] | 31 | /// </summary>
|
---|
[3822] | 32 | [Item("ValueLookupParameter", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
|
---|
[17097] | 33 | [StorableType("B34BB41A-CF50-4275-9BCD-1861EBA7C58F")]
|
---|
[2773] | 34 | public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
|
---|
[3341] | 35 | public override Image ItemImage {
|
---|
| 36 | get {
|
---|
| 37 | if (value != null) return value.ItemImage;
|
---|
| 38 | else return base.ItemImage;
|
---|
| 39 | }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[3317] | 42 | [Storable]
|
---|
[2756] | 43 | private T value;
|
---|
| 44 | public T Value {
|
---|
| 45 | get { return this.value; }
|
---|
[2653] | 46 | set {
|
---|
[17149] | 47 | if (ReadOnly) throw new InvalidOperationException("Cannot set the value of a readonly parameter.");
|
---|
[2756] | 48 | if (value != this.value) {
|
---|
[3341] | 49 | DeregisterValueEvents();
|
---|
[2756] | 50 | this.value = value;
|
---|
[3341] | 51 | RegisterValueEvents();
|
---|
[2756] | 52 | OnValueChanged();
|
---|
[2653] | 53 | }
|
---|
| 54 | }
|
---|
| 55 | }
|
---|
[2796] | 56 | IItem IValueParameter.Value {
|
---|
| 57 | get { return Value; }
|
---|
| 58 | set {
|
---|
| 59 | T val = value as T;
|
---|
[2852] | 60 | if ((value != null) && (val == null))
|
---|
[2796] | 61 | throw new InvalidOperationException(
|
---|
| 62 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
| 63 | typeof(T).GetPrettyName())
|
---|
| 64 | );
|
---|
| 65 | Value = val;
|
---|
| 66 | }
|
---|
| 67 | }
|
---|
[2653] | 68 |
|
---|
[17149] | 69 | [Storable(DefaultValue = false)]
|
---|
| 70 | private bool readOnly;
|
---|
| 71 | public bool ReadOnly {
|
---|
| 72 | get { return readOnly; }
|
---|
| 73 | set {
|
---|
| 74 | if (value == readOnly) return;
|
---|
| 75 | readOnly = value;
|
---|
| 76 | OnReadOnlyChanged();
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[4332] | 80 | [Storable(DefaultValue = true)]
|
---|
| 81 | private bool getsCollected;
|
---|
| 82 | public bool GetsCollected {
|
---|
| 83 | get { return getsCollected; }
|
---|
| 84 | set {
|
---|
| 85 | if (value != getsCollected) {
|
---|
| 86 | getsCollected = value;
|
---|
| 87 | OnGetsCollectedChanged();
|
---|
| 88 | }
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | #region Constructors
|
---|
[4722] | 93 | [StorableConstructor]
|
---|
[17097] | 94 | protected ValueLookupParameter(StorableConstructorFlag _) : base(_) { }
|
---|
[4722] | 95 | protected ValueLookupParameter(ValueLookupParameter<T> original, Cloner cloner)
|
---|
| 96 | : base(original, cloner) {
|
---|
| 97 | value = cloner.Clone(original.value);
|
---|
[17149] | 98 | readOnly = original.readOnly;
|
---|
[4722] | 99 | getsCollected = original.getsCollected;
|
---|
| 100 | RegisterValueEvents();
|
---|
| 101 | }
|
---|
[2756] | 102 | public ValueLookupParameter()
|
---|
[2773] | 103 | : base() {
|
---|
[17149] | 104 | this.readOnly = false;
|
---|
[5784] | 105 | this.Hidden = false;
|
---|
[4332] | 106 | this.getsCollected = true;
|
---|
[2653] | 107 | }
|
---|
[2756] | 108 | public ValueLookupParameter(string name)
|
---|
[2773] | 109 | : base(name) {
|
---|
[17149] | 110 | this.readOnly = false;
|
---|
[5784] | 111 | this.Hidden = false;
|
---|
[4332] | 112 | this.getsCollected = true;
|
---|
[2756] | 113 | }
|
---|
| 114 | public ValueLookupParameter(string name, T value)
|
---|
[2773] | 115 | : base(name) {
|
---|
[3317] | 116 | this.value = value;
|
---|
[17149] | 117 | this.readOnly = false;
|
---|
[5784] | 118 | this.Hidden = false;
|
---|
[4332] | 119 | this.getsCollected = true;
|
---|
[4722] | 120 | RegisterValueEvents();
|
---|
[2756] | 121 | }
|
---|
| 122 | public ValueLookupParameter(string name, string description)
|
---|
[2773] | 123 | : base(name, description) {
|
---|
[17149] | 124 | this.readOnly = false;
|
---|
[5784] | 125 | this.Hidden = false;
|
---|
[4332] | 126 | this.getsCollected = true;
|
---|
[2653] | 127 | }
|
---|
[2756] | 128 | public ValueLookupParameter(string name, string description, T value)
|
---|
[2773] | 129 | : base(name, description) {
|
---|
[3317] | 130 | this.value = value;
|
---|
[17149] | 131 | this.readOnly = false;
|
---|
[5784] | 132 | this.Hidden = false;
|
---|
[4332] | 133 | this.getsCollected = true;
|
---|
[4722] | 134 | RegisterValueEvents();
|
---|
[2653] | 135 | }
|
---|
[3080] | 136 | public ValueLookupParameter(string name, string description, string actualName)
|
---|
| 137 | : base(name, description, actualName) {
|
---|
[17149] | 138 | this.readOnly = false;
|
---|
[5784] | 139 | this.Hidden = false;
|
---|
[4332] | 140 | this.getsCollected = true;
|
---|
[3080] | 141 | }
|
---|
[4332] | 142 | #endregion
|
---|
[2653] | 143 |
|
---|
[3317] | 144 | [StorableHook(HookType.AfterDeserialization)]
|
---|
[4722] | 145 | private void AfterDeserialization() {
|
---|
[3341] | 146 | RegisterValueEvents();
|
---|
[3317] | 147 | }
|
---|
| 148 |
|
---|
[2740] | 149 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 150 | return new ValueLookupParameter<T>(this, cloner);
|
---|
[2740] | 151 | }
|
---|
| 152 |
|
---|
| 153 | public override string ToString() {
|
---|
[3688] | 154 | if (Value != null)
|
---|
| 155 | return Name + ": " + Value.ToString();
|
---|
| 156 | else if (Name.Equals(ActualName))
|
---|
| 157 | return Name;
|
---|
| 158 | else
|
---|
| 159 | return Name + ": " + ActualName;
|
---|
[2740] | 160 | }
|
---|
| 161 |
|
---|
[2756] | 162 | public event EventHandler ValueChanged;
|
---|
[4332] | 163 | protected virtual void OnValueChanged() {
|
---|
| 164 | EventHandler handler = ValueChanged;
|
---|
| 165 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[3341] | 166 | OnItemImageChanged();
|
---|
[2932] | 167 | OnToStringChanged();
|
---|
[2653] | 168 | }
|
---|
[17149] | 169 | public event EventHandler ReadOnlyChanged;
|
---|
| 170 | protected virtual void OnReadOnlyChanged() {
|
---|
| 171 | EventHandler handler = ReadOnlyChanged;
|
---|
| 172 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 173 | }
|
---|
[4332] | 174 | public event EventHandler GetsCollectedChanged;
|
---|
| 175 | protected virtual void OnGetsCollectedChanged() {
|
---|
| 176 | EventHandler handler = GetsCollectedChanged;
|
---|
| 177 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 178 | }
|
---|
[3341] | 179 |
|
---|
| 180 | private void RegisterValueEvents() {
|
---|
| 181 | if (value != null) {
|
---|
| 182 | value.ItemImageChanged += new EventHandler(Value_ItemImageChanged);
|
---|
| 183 | value.ToStringChanged += new EventHandler(Value_ToStringChanged);
|
---|
| 184 | }
|
---|
| 185 | }
|
---|
| 186 | private void DeregisterValueEvents() {
|
---|
| 187 | if (value != null) {
|
---|
| 188 | value.ItemImageChanged -= new EventHandler(Value_ItemImageChanged);
|
---|
| 189 | value.ToStringChanged -= new EventHandler(Value_ToStringChanged);
|
---|
| 190 | }
|
---|
| 191 | }
|
---|
| 192 | private void Value_ItemImageChanged(object sender, EventArgs e) {
|
---|
| 193 | OnItemImageChanged();
|
---|
| 194 | }
|
---|
[2932] | 195 | private void Value_ToStringChanged(object sender, EventArgs e) {
|
---|
| 196 | OnToStringChanged();
|
---|
[2653] | 197 | }
|
---|
| 198 | }
|
---|
| 199 | }
|
---|