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/libeditor/JoinNodeTransaction.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/libeditor/JoinNodeTransaction.h')
-rw-r--r-- | editor/libeditor/JoinNodeTransaction.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/editor/libeditor/JoinNodeTransaction.h b/editor/libeditor/JoinNodeTransaction.h new file mode 100644 index 000000000..84208cb45 --- /dev/null +++ b/editor/libeditor/JoinNodeTransaction.h @@ -0,0 +1,68 @@ +/* -*- 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 JoinNodeTransaction_h +#define JoinNodeTransaction_h + +#include "mozilla/EditTransactionBase.h" // for EditTransactionBase, etc. +#include "nsCOMPtr.h" // for nsCOMPtr +#include "nsCycleCollectionParticipant.h" +#include "nsID.h" // for REFNSIID +#include "nscore.h" // for NS_IMETHOD + +class nsINode; + +namespace mozilla { + +class EditorBase; + +/** + * A transaction that joins two nodes E1 (left node) and E2 (right node) into a + * single node E. The children of E are the children of E1 followed by the + * children of E2. After DoTransaction() and RedoTransaction(), E1 is removed + * from the content tree and E2 remains. + */ +class JoinNodeTransaction final : public EditTransactionBase +{ +public: + /** + * @param aEditorBase The provider of core editing operations. + * @param aLeftNode The first of two nodes to join. + * @param aRightNode The second of two nodes to join. + */ + JoinNodeTransaction(EditorBase& aEditorBase, + nsINode& aLeftNode, nsINode& aRightNode); + + /** + * Call this after constructing to ensure the inputs are correct. + */ + nsresult CheckValidity(); + + NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(JoinNodeTransaction, + EditTransactionBase) + NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override; + + NS_DECL_EDITTRANSACTIONBASE + +protected: + EditorBase& mEditorBase; + + // The nodes to operate upon. After the merge, mRightNode remains and + // mLeftNode is removed from the content tree. + nsCOMPtr<nsINode> mLeftNode; + nsCOMPtr<nsINode> mRightNode; + + // The offset into mNode where the children of mElement are split (for + // undo). mOffset is the index of the first child in the right node. -1 + // means the left node had no children. + uint32_t mOffset; + + // The parent node containing mLeftNode and mRightNode. + nsCOMPtr<nsINode> mParent; +}; + +} // namespace mozilla + +#endif // #ifndef JoinNodeTransaction_h |