1999-01-08 01:36:23 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-01-08 01:36:23 +03:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-01-08 01:36:23 +03:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-01-08 01:36:23 +03:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-01-08 01:36:23 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CreateElementTxn_h__
|
|
|
|
#define CreateElementTxn_h__
|
|
|
|
|
|
|
|
#include "EditTxn.h"
|
1999-02-22 18:53:31 +03:00
|
|
|
#include "nsIEditor.h"
|
1999-01-21 04:51:09 +03:00
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-07-15 23:13:46 +04:00
|
|
|
#define CREATE_ELEMENT_TXN_CID \
|
1999-01-21 04:51:09 +03:00
|
|
|
{/* 7a6393c0-ac48-11d2-86d8-000064657374 */ \
|
|
|
|
0x7a6393c0, 0xac48, 0x11d2, \
|
|
|
|
{0x86, 0xd8, 0x0, 0x0, 0x64, 0x65, 0x73, 0x74} }
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A transaction that creates a new node in the content tree.
|
|
|
|
*/
|
|
|
|
class CreateElementTxn : public EditTxn
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
1999-07-15 23:13:46 +04:00
|
|
|
static const nsIID& GetCID() { static nsIID iid = CREATE_ELEMENT_TXN_CID; return iid; }
|
|
|
|
|
1999-01-08 01:36:23 +03:00
|
|
|
enum { eAppend=-1 };
|
|
|
|
|
1999-02-15 21:25:30 +03:00
|
|
|
/** Initialize the transaction.
|
1999-02-22 18:53:31 +03:00
|
|
|
* @param aEditor the provider of basic editing functionality
|
1999-02-15 21:25:30 +03:00
|
|
|
* @param aTag the tag (P, HR, TABLE, etc.) for the new element
|
|
|
|
* @param aParent the node into which the new element will be inserted
|
|
|
|
* @param aOffsetInParent the location in aParent to insert the new element
|
|
|
|
* if eAppend, the new element is appended as the last child
|
|
|
|
*/
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Init(nsIEditor *aEditor,
|
|
|
|
const nsString& aTag,
|
|
|
|
nsIDOMNode *aParent,
|
|
|
|
PRUint32 aOffsetInParent);
|
1999-01-21 04:51:09 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
CreateElementTxn();
|
|
|
|
|
|
|
|
public:
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
virtual ~CreateElementTxn();
|
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Do(void);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Undo(void);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Redo(void);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Merge(PRBool *aDidMerge, nsITransaction *aTransaction);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD Write(nsIOutputStream *aOutputStream);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-05-28 00:50:52 +04:00
|
|
|
NS_IMETHOD GetUndoString(nsString *aString);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-05-28 00:50:52 +04:00
|
|
|
NS_IMETHOD GetRedoString(nsString *aString);
|
1999-01-08 01:36:23 +03:00
|
|
|
|
1999-03-02 08:30:53 +03:00
|
|
|
NS_IMETHOD GetNewNode(nsIDOMNode **aNewNode);
|
1999-02-24 20:24:37 +03:00
|
|
|
|
1999-09-22 02:31:27 +04:00
|
|
|
enum { kTransactionID = 11140 };
|
|
|
|
|
1999-01-08 01:36:23 +03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/** the document into which the new node will be inserted */
|
1999-05-28 04:13:02 +04:00
|
|
|
nsIEditor* mEditor;
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
/** the tag (mapping to object type) for the new element */
|
|
|
|
nsString mTag;
|
|
|
|
|
|
|
|
/** the node into which the new node will be inserted */
|
1999-01-21 04:51:09 +03:00
|
|
|
nsCOMPtr<nsIDOMNode> mParent;
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
/** the index in mParent for the new node */
|
|
|
|
PRUint32 mOffsetInParent;
|
|
|
|
|
|
|
|
/** the new node to insert */
|
1999-03-10 22:51:07 +03:00
|
|
|
nsCOMPtr<nsIDOMNode> mNewNode;
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
/** the node we will insert mNewNode before. We compute this ourselves. */
|
1999-01-21 04:51:09 +03:00
|
|
|
nsCOMPtr<nsIDOMNode> mRefNode;
|
|
|
|
|
|
|
|
friend class TransactionFactory;
|
1999-01-08 01:36:23 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|