[7368] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 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.Access {
|
---|
| 30 | [Item("AccessItem", "Base class for all AccessService items.")]
|
---|
| 31 | public partial class AccessItem : IAccessItem {
|
---|
| 32 | public virtual string ItemName {
|
---|
| 33 | get { return ItemAttribute.GetName(this.GetType()); }
|
---|
| 34 | }
|
---|
| 35 | public virtual string ItemDescription {
|
---|
| 36 | get { return ItemAttribute.GetDescription(this.GetType()); }
|
---|
| 37 | }
|
---|
| 38 | public Version ItemVersion {
|
---|
| 39 | get { return ItemAttribute.GetVersion(this.GetType()); }
|
---|
| 40 | }
|
---|
| 41 | public static Image StaticItemImage {
|
---|
| 42 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Database; }
|
---|
| 43 | }
|
---|
| 44 | public virtual Image ItemImage {
|
---|
| 45 | get {
|
---|
| 46 | if (Modified)
|
---|
| 47 | return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified;
|
---|
| 48 | else
|
---|
| 49 | return ItemAttribute.GetImage(this.GetType());
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | private bool modified;
|
---|
| 54 | public bool Modified {
|
---|
| 55 | get { return modified; }
|
---|
| 56 | private set {
|
---|
| 57 | if (value != modified) {
|
---|
| 58 | modified = value;
|
---|
| 59 | OnModifiedChanged();
|
---|
| 60 | RaisePropertyChanged("Modified");
|
---|
| 61 | OnItemImageChanged();
|
---|
| 62 | RaisePropertyChanged("ItemImage");
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
[7637] | 67 | public void SetUnmodified() {
|
---|
| 68 | Modified = false;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[7368] | 71 | protected AccessItem(AccessItem original, Cloner cloner) {
|
---|
| 72 | cloner.RegisterClonedObject(original, this);
|
---|
| 73 | modified = true;
|
---|
| 74 | }
|
---|
| 75 | protected AccessItem() {
|
---|
| 76 | modified = true;
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | [OnDeserialized]
|
---|
| 80 | private void OnDeserialized(StreamingContext context) {
|
---|
| 81 | modified = false;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | public object Clone() {
|
---|
| 85 | return Clone(new Cloner());
|
---|
| 86 | }
|
---|
| 87 | public virtual IDeepCloneable Clone(Cloner cloner) {
|
---|
| 88 | return new AccessItem(this, cloner);
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | public override string ToString() {
|
---|
| 92 | return ItemName;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | public void Store() {
|
---|
| 96 | AccessClient.Store(this);
|
---|
| 97 | Modified = false;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | protected void RaisePropertyChanged(string propertyName) {
|
---|
| 101 | OnPropertyChanged(new PropertyChangedEventArgs(propertyName));
|
---|
| 102 | if ((propertyName != "Id") && (propertyName != "Modified") && (propertyName != "ItemImage")) {
|
---|
| 103 | Modified = true;
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 | protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) {
|
---|
| 107 | PropertyChangedEventHandler handler = PropertyChanged;
|
---|
| 108 | if (handler != null) handler(this, e);
|
---|
| 109 | }
|
---|
| 110 | public event EventHandler ModifiedChanged;
|
---|
| 111 | protected virtual void OnModifiedChanged() {
|
---|
| 112 | EventHandler handler = ModifiedChanged;
|
---|
| 113 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 114 | }
|
---|
| 115 | public event EventHandler ItemImageChanged;
|
---|
| 116 | protected virtual void OnItemImageChanged() {
|
---|
| 117 | EventHandler handler = ItemImageChanged;
|
---|
| 118 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 119 | }
|
---|
| 120 | public event EventHandler ToStringChanged;
|
---|
| 121 | protected virtual void OnToStringChanged() {
|
---|
| 122 | EventHandler handler = ToStringChanged;
|
---|
| 123 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 | }
|
---|