Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Collections/ReadOnlyItemList.cs @ 4419

Last change on this file since 4419 was 4419, checked in by swagner, 14 years ago

Enabled saving only for some specific items (#1193)

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