Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Core/3.3/Collections/ReadOnlyKeyedItemCollection.cs @ 13656

Last change on this file since 13656 was 13656, checked in by ascheibe, 8 years ago

#2582 created branch for Hive Web Job Manager

File size: 3.1 KB
Line 
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
22using System;
23using System.Drawing;
24using HeuristicLab.Collections;
25using HeuristicLab.Common;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Core {
29  [StorableClass]
30  [Item("ReadOnlyKeyedItemCollection", "Represents a read-only keyed collection of items.")]
31  public class ReadOnlyKeyedItemCollection<TKey, TItem> : ReadOnlyObservableKeyedCollection<TKey, TItem>, IKeyedItemCollection<TKey, TItem> where TItem : class, IItem {
32    public virtual string ItemName
33    {
34      get { return ItemAttribute.GetName(this.GetType()); }
35    }
36    public virtual string ItemDescription
37    {
38      get { return ItemAttribute.GetDescription(this.GetType()); }
39    }
40    public Version ItemVersion
41    {
42      get { return ItemAttribute.GetVersion(this.GetType()); }
43    }
44    public static Image StaticItemImage
45    {
46      get { return new Bitmap(25, 25); }
47    }
48    public virtual Image ItemImage
49    {
50      get { return ItemAttribute.GetImage(this.GetType()); }
51    }
52
53    [StorableConstructor]
54    protected ReadOnlyKeyedItemCollection(bool deserializing) : base(deserializing) { }
55    protected ReadOnlyKeyedItemCollection(ReadOnlyKeyedItemCollection<TKey, TItem> original, Cloner cloner) {
56      cloner.RegisterClonedObject(original, this);
57      collection = cloner.Clone((IKeyedItemCollection<TKey, TItem>)original.collection);
58      RegisterEvents();
59    }
60    protected ReadOnlyKeyedItemCollection() : base() { }
61    public ReadOnlyKeyedItemCollection(IKeyedItemCollection<TKey, TItem> collection) : base(collection) { }
62
63    public object Clone() {
64      return Clone(new Cloner());
65    }
66    public virtual IDeepCloneable Clone(Cloner cloner) {
67      return new ReadOnlyKeyedItemCollection<TKey, TItem>(this, cloner);
68    }
69
70    public override string ToString() {
71      return ItemName;
72    }
73
74    public event EventHandler ItemImageChanged;
75    protected virtual void OnItemImageChanged() {
76      EventHandler handler = ItemImageChanged;
77      if (handler != null) handler(this, EventArgs.Empty);
78    }
79    public event EventHandler ToStringChanged;
80    protected virtual void OnToStringChanged() {
81      EventHandler handler = ToStringChanged;
82      if (handler != null) handler(this, EventArgs.Empty);
83    }
84  }
85}
Note: See TracBrowser for help on using the repository browser.