1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.Drawing;
|
---|
25 | using System.Linq;
|
---|
26 | using HeuristicLab.Collections;
|
---|
27 | using HeuristicLab.Common;
|
---|
28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Core {
|
---|
31 | [StorableClass]
|
---|
32 | [Item("ItemSet", "Represents a set of items.")]
|
---|
33 | public class ItemSet<T> : ObservableSet<T>, IItemSet<T> where T : class, IItem {
|
---|
34 | public virtual string ItemName
|
---|
35 | {
|
---|
36 | get { return ItemAttribute.GetName(this.GetType()); }
|
---|
37 | }
|
---|
38 | public virtual string ItemDescription
|
---|
39 | {
|
---|
40 | get { return ItemAttribute.GetDescription(this.GetType()); }
|
---|
41 | }
|
---|
42 | public Version ItemVersion
|
---|
43 | {
|
---|
44 | get { return ItemAttribute.GetVersion(this.GetType()); }
|
---|
45 | }
|
---|
46 | public static Image StaticItemImage
|
---|
47 | {
|
---|
48 | get { return new Bitmap(25, 25); }
|
---|
49 | }
|
---|
50 | public virtual Image ItemImage
|
---|
51 | {
|
---|
52 | get { return ItemAttribute.GetImage(this.GetType()); }
|
---|
53 | }
|
---|
54 |
|
---|
55 | [StorableConstructor]
|
---|
56 | protected ItemSet(bool deserializing) : base(deserializing) { }
|
---|
57 | protected ItemSet(ItemSet<T> original, Cloner cloner) {
|
---|
58 | cloner.RegisterClonedObject(original, this);
|
---|
59 | set = new HashSet<T>(original.Select(cloner.Clone), original.set.Comparer);
|
---|
60 | }
|
---|
61 | public ItemSet() : base() { }
|
---|
62 | public ItemSet(IEnumerable<T> collection) : base(collection) { }
|
---|
63 | public ItemSet(IEqualityComparer<T> comparer) : base(comparer) { }
|
---|
64 | public ItemSet(IEnumerable<T> collection, IEqualityComparer<T> comparer) : base(collection, comparer) { }
|
---|
65 |
|
---|
66 | public object Clone() {
|
---|
67 | return Clone(new Cloner());
|
---|
68 | }
|
---|
69 | public virtual IDeepCloneable Clone(Cloner cloner) {
|
---|
70 | return new ItemSet<T>(this, cloner);
|
---|
71 | }
|
---|
72 |
|
---|
73 | public new ReadOnlyItemSet<T> AsReadOnly() {
|
---|
74 | return new ReadOnlyItemSet<T>(this);
|
---|
75 | }
|
---|
76 |
|
---|
77 | public override string ToString() {
|
---|
78 | return ItemName;
|
---|
79 | }
|
---|
80 |
|
---|
81 | public event EventHandler ItemImageChanged;
|
---|
82 | protected virtual void OnItemImageChanged() {
|
---|
83 | EventHandler handler = ItemImageChanged;
|
---|
84 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
85 | }
|
---|
86 | public event EventHandler ToStringChanged;
|
---|
87 | protected virtual void OnToStringChanged() {
|
---|
88 | EventHandler handler = ToStringChanged;
|
---|
89 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
90 | }
|
---|
91 | }
|
---|
92 | }
|
---|