diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /editor/txmgr/nsTransactionManager.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'editor/txmgr/nsTransactionManager.h')
-rw-r--r-- | editor/txmgr/nsTransactionManager.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/editor/txmgr/nsTransactionManager.h b/editor/txmgr/nsTransactionManager.h new file mode 100644 index 000000000..17d21819f --- /dev/null +++ b/editor/txmgr/nsTransactionManager.h @@ -0,0 +1,83 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef nsTransactionManager_h__ +#define nsTransactionManager_h__ + +#include "nsCOMArray.h" +#include "nsCOMPtr.h" +#include "nsCycleCollectionParticipant.h" +#include "nsTransactionStack.h" +#include "nsISupportsImpl.h" +#include "nsITransactionManager.h" +#include "nsTransactionStack.h" +#include "nsWeakReference.h" +#include "nscore.h" + +class nsITransaction; +class nsITransactionListener; + +/** implementation of a transaction manager object. + * + */ +class nsTransactionManager final : public nsITransactionManager + , public nsSupportsWeakReference +{ +private: + + int32_t mMaxTransactionCount; + nsTransactionStack mDoStack; + nsTransactionStack mUndoStack; + nsTransactionStack mRedoStack; + nsCOMArray<nsITransactionListener> mListeners; + + /** The default destructor. + */ + virtual ~nsTransactionManager(); + +public: + + /** The default constructor. + */ + explicit nsTransactionManager(int32_t aMaxTransactionCount=-1); + + /* Macro for AddRef(), Release(), and QueryInterface() */ + NS_DECL_CYCLE_COLLECTING_ISUPPORTS + NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsTransactionManager, + nsITransactionManager) + + /* nsITransactionManager method implementations. */ + NS_DECL_NSITRANSACTIONMANAGER + + already_AddRefed<nsITransaction> PeekUndoStack(); + already_AddRefed<nsITransaction> PeekRedoStack(); + + virtual nsresult WillDoNotify(nsITransaction *aTransaction, bool *aInterrupt); + virtual nsresult DidDoNotify(nsITransaction *aTransaction, nsresult aExecuteResult); + virtual nsresult WillUndoNotify(nsITransaction *aTransaction, bool *aInterrupt); + virtual nsresult DidUndoNotify(nsITransaction *aTransaction, nsresult aUndoResult); + virtual nsresult WillRedoNotify(nsITransaction *aTransaction, bool *aInterrupt); + virtual nsresult DidRedoNotify(nsITransaction *aTransaction, nsresult aRedoResult); + virtual nsresult WillBeginBatchNotify(bool *aInterrupt); + virtual nsresult DidBeginBatchNotify(nsresult aResult); + virtual nsresult WillEndBatchNotify(bool *aInterrupt); + virtual nsresult DidEndBatchNotify(nsresult aResult); + virtual nsresult WillMergeNotify(nsITransaction *aTop, + nsITransaction *aTransaction, + bool *aInterrupt); + virtual nsresult DidMergeNotify(nsITransaction *aTop, + nsITransaction *aTransaction, + bool aDidMerge, + nsresult aMergeResult); + +private: + + /* nsTransactionManager specific private methods. */ + virtual nsresult BeginTransaction(nsITransaction *aTransaction, + nsISupports *aData); + virtual nsresult EndTransaction(bool aAllowEmpty); +}; + +#endif // nsTransactionManager_h__ |