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.ComponentModel;
|
---|
24 | using System.Drawing;
|
---|
25 | using System.Runtime.Serialization;
|
---|
26 | using HeuristicLab.Common;
|
---|
27 | using HeuristicLab.Core;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Clients.OKB {
|
---|
30 | [Item("OKBItem", "Base class for all OKB items.")]
|
---|
31 | [DataContract(IsReference = true)]
|
---|
32 | public abstract class OKBItem : IOKBItem {
|
---|
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 HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
|
---|
44 | }
|
---|
45 |
|
---|
46 | protected OKBItem() { }
|
---|
47 |
|
---|
48 | public object Clone() {
|
---|
49 | return Clone(new Cloner());
|
---|
50 | }
|
---|
51 | public virtual IDeepCloneable Clone(Cloner cloner) {
|
---|
52 | OKBItem clone = (OKBItem)Activator.CreateInstance(this.GetType(), true);
|
---|
53 | cloner.RegisterClonedObject(this, clone);
|
---|
54 | return clone;
|
---|
55 | }
|
---|
56 |
|
---|
57 | public override string ToString() {
|
---|
58 | return ItemName;
|
---|
59 | }
|
---|
60 |
|
---|
61 | public void Store() {
|
---|
62 | Administrator.Instance.Store(this);
|
---|
63 | }
|
---|
64 |
|
---|
65 | public event PropertyChangedEventHandler PropertyChanged;
|
---|
66 | protected void RaisePropertyChanged(string propertyName) {
|
---|
67 | OnPropertyChanged(new PropertyChangedEventArgs(propertyName));
|
---|
68 | }
|
---|
69 | protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) {
|
---|
70 | PropertyChangedEventHandler handler = PropertyChanged;
|
---|
71 | if (handler != null) handler(this, e);
|
---|
72 | }
|
---|
73 | public event EventHandler ItemImageChanged;
|
---|
74 | protected virtual void OnItemImageChanged() {
|
---|
75 | EventHandler handler = ItemImageChanged;
|
---|
76 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
77 | }
|
---|
78 | public event EventHandler ToStringChanged;
|
---|
79 | protected virtual void OnToStringChanged() {
|
---|
80 | EventHandler handler = ToStringChanged;
|
---|
81 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|