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.Collections;
|
---|
24 | using System.Collections.Generic;
|
---|
25 | using System.Collections.ObjectModel;
|
---|
26 | using System.Text;
|
---|
27 | using System.Drawing;
|
---|
28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
29 | using HeuristicLab.Common.Resources;
|
---|
30 | using HeuristicLab.Collections;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Core {
|
---|
33 | [EmptyStorableClass]
|
---|
34 | [Item("ItemArray<T>", "Represents an array of items.")]
|
---|
35 | public class ItemArray<T> : ObservableArray<T>, IItem where T : class, IItem {
|
---|
36 | [Storable(Name = "RestoreEvents")]
|
---|
37 | private object RestoreEvents {
|
---|
38 | get { return null; }
|
---|
39 | set {
|
---|
40 | foreach (T item in this)
|
---|
41 | if (item != null) item.Changed += new ChangedEventHandler(Item_Changed);
|
---|
42 | }
|
---|
43 | }
|
---|
44 |
|
---|
45 | public virtual string ItemName {
|
---|
46 | get { return ItemAttribute.GetName(this.GetType()); }
|
---|
47 | }
|
---|
48 | public virtual string ItemDescription {
|
---|
49 | get { return ItemAttribute.GetDescription(this.GetType()); }
|
---|
50 | }
|
---|
51 | public virtual Image ItemImage {
|
---|
52 | get { return VS2008ImageLibrary.Class; }
|
---|
53 | }
|
---|
54 |
|
---|
55 | public ItemArray() : base() { }
|
---|
56 | public ItemArray(int length) : base(length) { }
|
---|
57 | public ItemArray(T[] array) : base(array) { }
|
---|
58 | public ItemArray(IEnumerable<T> collection) : base(collection) { }
|
---|
59 |
|
---|
60 | public object Clone() {
|
---|
61 | return Clone(new Cloner());
|
---|
62 | }
|
---|
63 |
|
---|
64 | public IDeepCloneable Clone(Cloner cloner) {
|
---|
65 | T[] items = new T[Length];
|
---|
66 | for (int i = 0; i < items.Length; i++)
|
---|
67 | items[i] = (T)cloner.Clone(this[i]);
|
---|
68 | ItemArray<T> clone = (ItemArray<T>)Activator.CreateInstance(this.GetType(), new object[] { items });
|
---|
69 | cloner.RegisterClonedObject(this, clone);
|
---|
70 | return clone;
|
---|
71 | }
|
---|
72 |
|
---|
73 | public override string ToString() {
|
---|
74 | return ItemName;
|
---|
75 | }
|
---|
76 |
|
---|
77 | public event ChangedEventHandler Changed;
|
---|
78 | protected void OnChanged() {
|
---|
79 | OnChanged(new ChangedEventArgs());
|
---|
80 | }
|
---|
81 | protected virtual void OnChanged(ChangedEventArgs e) {
|
---|
82 | if ((e.RegisterChangedObject(this)) && (Changed != null))
|
---|
83 | Changed(this, e);
|
---|
84 | }
|
---|
85 |
|
---|
86 | protected override void OnItemsReplaced(IEnumerable<IndexedItem<T>> items, IEnumerable<IndexedItem<T>> oldItems) {
|
---|
87 | foreach (IndexedItem<T> oldItem in oldItems)
|
---|
88 | if (oldItem.Value != null) oldItem.Value.Changed -= new ChangedEventHandler(Item_Changed);
|
---|
89 | foreach (IndexedItem<T> item in items)
|
---|
90 | if (item.Value != null) item.Value.Changed += new ChangedEventHandler(Item_Changed);
|
---|
91 | base.OnItemsReplaced(items, oldItems);
|
---|
92 | }
|
---|
93 | protected override void OnCollectionReset(IEnumerable<IndexedItem<T>> items, IEnumerable<IndexedItem<T>> oldItems) {
|
---|
94 | foreach (IndexedItem<T> oldItem in oldItems)
|
---|
95 | if (oldItem.Value != null) oldItem.Value.Changed -= new ChangedEventHandler(Item_Changed);
|
---|
96 | foreach (IndexedItem<T> item in items)
|
---|
97 | if (item.Value != null) item.Value.Changed += new ChangedEventHandler(Item_Changed);
|
---|
98 | base.OnCollectionReset(items, oldItems);
|
---|
99 | }
|
---|
100 | protected override void OnPropertyChanged(string propertyName) {
|
---|
101 | base.OnPropertyChanged(propertyName);
|
---|
102 | OnChanged();
|
---|
103 | }
|
---|
104 |
|
---|
105 | private void Item_Changed(object sender, ChangedEventArgs e) {
|
---|
106 | OnChanged(e);
|
---|
107 | }
|
---|
108 | }
|
---|
109 | }
|
---|