[2908] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2908] | 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 |
|
---|
[4644] | 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
[2908] | 25 | using HeuristicLab.Collections;
|
---|
[3376] | 26 | using HeuristicLab.Common;
|
---|
[2908] | 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Analysis {
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// A row of data values.
|
---|
| 33 | /// </summary>
|
---|
| 34 | [Item("DataRow", "A row of data values.")]
|
---|
[3017] | 35 | [StorableClass]
|
---|
[5097] | 36 | public class DataRow : NamedItem {
|
---|
[4644] | 37 | private DataRowVisualProperties visualProperties;
|
---|
| 38 | public DataRowVisualProperties VisualProperties {
|
---|
| 39 | get { return visualProperties; }
|
---|
| 40 | set {
|
---|
| 41 | if (visualProperties != value) {
|
---|
| 42 | if (value == null) throw new ArgumentNullException("VisualProperties");
|
---|
| 43 | if (visualProperties != null) visualProperties.PropertyChanged -= new PropertyChangedEventHandler(VisualProperties_PropertyChanged);
|
---|
| 44 | visualProperties = value;
|
---|
| 45 | visualProperties.PropertyChanged += new PropertyChangedEventHandler(VisualProperties_PropertyChanged);
|
---|
| 46 | OnVisualPropertiesChanged();
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
[2908] | 50 | private ObservableList<double> values;
|
---|
[4703] | 51 | public ObservableList<double> Values {
|
---|
[2908] | 52 | get { return values; }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[4644] | 55 | #region Persistence Properties
|
---|
[5261] | 56 | [Storable(Name = "VisualProperties")]
|
---|
| 57 | private DataRowVisualProperties StorableVisualProperties {
|
---|
| 58 | get { return visualProperties; }
|
---|
| 59 | set {
|
---|
| 60 | visualProperties = value;
|
---|
| 61 | visualProperties.PropertyChanged += new PropertyChangedEventHandler(VisualProperties_PropertyChanged);
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
[4644] | 64 | [Storable(Name = "values")]
|
---|
| 65 | private IEnumerable<double> StorableValues {
|
---|
| 66 | get { return values; }
|
---|
| 67 | set { values = new ObservableList<double>(value); }
|
---|
| 68 | }
|
---|
| 69 | #endregion
|
---|
| 70 |
|
---|
[4722] | 71 | [StorableConstructor]
|
---|
[5097] | 72 | protected DataRow(bool deserializing) : base(deserializing) { }
|
---|
| 73 | protected DataRow(DataRow original, Cloner cloner)
|
---|
[4722] | 74 | : base(original, cloner) {
|
---|
| 75 | this.VisualProperties = (DataRowVisualProperties)cloner.Clone(original.visualProperties);
|
---|
| 76 | this.values = new ObservableList<double>(original.values);
|
---|
| 77 | }
|
---|
[2908] | 78 | public DataRow()
|
---|
| 79 | : base() {
|
---|
[4644] | 80 | VisualProperties = new DataRowVisualProperties();
|
---|
[2908] | 81 | values = new ObservableList<double>();
|
---|
| 82 | }
|
---|
| 83 | public DataRow(string name)
|
---|
| 84 | : base(name) {
|
---|
[6628] | 85 | VisualProperties = new DataRowVisualProperties(name);
|
---|
[2908] | 86 | values = new ObservableList<double>();
|
---|
| 87 | }
|
---|
| 88 | public DataRow(string name, string description)
|
---|
| 89 | : base(name, description) {
|
---|
[6628] | 90 | VisualProperties = new DataRowVisualProperties(name);
|
---|
[2908] | 91 | values = new ObservableList<double>();
|
---|
| 92 | }
|
---|
[4777] | 93 | public DataRow(string name, string description, IEnumerable<double> values)
|
---|
[4644] | 94 | : base(name, description) {
|
---|
[6628] | 95 | VisualProperties = new DataRowVisualProperties(name);
|
---|
[4777] | 96 | this.values = new ObservableList<double>(values);
|
---|
[4644] | 97 | }
|
---|
[2908] | 98 |
|
---|
[4644] | 99 | // BackwardsCompatibility3.3
|
---|
| 100 | #region Backwards compatible code, remove with 3.4
|
---|
| 101 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 102 | private void AfterDeserialization() {
|
---|
| 103 | if (VisualProperties == null) VisualProperties = new DataRowVisualProperties();
|
---|
| 104 | }
|
---|
| 105 | #endregion
|
---|
| 106 |
|
---|
[4777] | 107 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 108 | return new DataRow(this, cloner);
|
---|
| 109 | }
|
---|
| 110 |
|
---|
[4644] | 111 | public event EventHandler VisualPropertiesChanged;
|
---|
[5097] | 112 | protected virtual void OnVisualPropertiesChanged() {
|
---|
[4644] | 113 | EventHandler handler = VisualPropertiesChanged;
|
---|
| 114 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | private void VisualProperties_PropertyChanged(object sender, PropertyChangedEventArgs e) {
|
---|
| 118 | OnVisualPropertiesChanged();
|
---|
| 119 | }
|
---|
[2908] | 120 | }
|
---|
| 121 | }
|
---|