(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System / System.ComponentModel.Design / DesignerTransaction.cs
blobc83ec514d47c6b91789fa222d7ce3d0efcdada07
1 //
2 // System.ComponentModel.Design.DesignerTransaction.cs
3 //
4 // Author:
5 // Alejandro Sánchez Acosta (raciel@es.gnu.org)
6 // Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Alejandro Sánchez Acosta
9 // (C) 2003 Andreas Nahr
10 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System;
35 namespace System.ComponentModel.Design
37 public abstract class DesignerTransaction : IDisposable
39 private string description;
40 private bool committed;
41 private bool canceled;
43 public DesignerTransaction ()
44 : this ("")
48 public DesignerTransaction (string description)
50 this.description = description;
51 this.committed = false;
52 this.canceled = false;
55 void IDisposable.Dispose ()
57 this.Dispose (true);
60 protected virtual void Dispose (bool disposing)
62 this.Cancel ();
65 protected abstract void OnCancel ();
67 protected abstract void OnCommit ();
69 public void Cancel ()
71 // LAMESPEC Cannot find anything about the exact behavior, but I do some checks that
72 // seem to make sense
73 if (this.Canceled == false && this.Committed == false) {
74 this.canceled = true;
75 OnCancel ();
79 public void Commit ()
81 // LAMESPEC Cannot find anything about the exact behavior, but I do some checks that
82 // seem to make sense
83 if (this.Canceled == false && this.Committed == false) {
84 this.committed = true;
85 OnCommit ();
89 public bool Canceled {
90 get {
91 return canceled;
95 public bool Committed {
96 get {
97 return committed;
101 public string Description {
102 get {
103 return description;
107 ~DesignerTransaction ()
109 Dispose (false);