2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef SplitElementTxn_h__
|
|
|
|
#define SplitElementTxn_h__
|
|
|
|
|
2012-07-12 23:33:42 -07:00
|
|
|
#include "EditTxn.h" // for EditTxn, NS_DECL_EDITTXN
|
|
|
|
#include "nsCOMPtr.h" // for nsCOMPtr
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsISupportsImpl.h" // for NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
#include "nscore.h" // for NS_IMETHOD
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsEditor;
|
2013-01-09 15:05:08 -08:00
|
|
|
class nsINode;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A transaction that splits an element E into two identical nodes, E1 and E2
|
|
|
|
* with the children of E divided between E1 and E2.
|
|
|
|
*/
|
|
|
|
class SplitElementTxn : public EditTxn
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** initialize the transaction.
|
|
|
|
* @param aEditor the provider of core editing operations
|
|
|
|
* @param aNode the node to split
|
|
|
|
* @param aOffset the location within aNode to do the split.
|
|
|
|
* aOffset may refer to children of aNode, or content of aNode.
|
|
|
|
* The left node will have child|content 0..aOffset-1.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD Init (nsEditor *aEditor,
|
2013-01-09 15:05:08 -08:00
|
|
|
nsINode *aNode,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aOffset);
|
2009-04-24 15:45:34 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
SplitElementTxn();
|
|
|
|
|
2011-02-19 14:18:37 -08:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2009-05-08 21:59:25 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(SplitElementTxn, EditTxn)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_DECL_EDITTXN
|
|
|
|
|
|
|
|
NS_IMETHOD RedoTransaction(void);
|
|
|
|
|
2013-01-09 15:05:08 -08:00
|
|
|
NS_IMETHOD GetNewNode(nsINode **aNewNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2013-01-09 15:05:08 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** the element to operate upon */
|
2013-01-09 15:05:08 -08:00
|
|
|
nsCOMPtr<nsINode> mExistingRightNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** the offset into mElement where the children of mElement are split.<BR>
|
|
|
|
* mOffset is the index of the first child in the right node.
|
|
|
|
* -1 means the new node gets no children.
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mOffset;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** the element we create when splitting mElement */
|
2013-01-09 15:05:08 -08:00
|
|
|
nsCOMPtr<nsINode> mNewLeftNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** the parent shared by mExistingRightNode and mNewLeftNode */
|
2013-01-09 15:05:08 -08:00
|
|
|
nsCOMPtr<nsINode> mParent;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsEditor* mEditor;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|