1999-01-07 01:02:32 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-09-21 22:31:27 +00:00
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All Rights
|
1999-01-07 01:02:32 +00:00
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef InsertTextTxn_h__
|
|
|
|
#define InsertTextTxn_h__
|
|
|
|
|
|
|
|
#include "EditTxn.h"
|
1999-01-21 01:51:09 +00:00
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-08-25 10:51:55 +00:00
|
|
|
#include "nsWeakPtr.h"
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-07-15 19:13:46 +00:00
|
|
|
#define INSERT_TEXT_TXN_CID \
|
1999-01-14 18:02:45 +00:00
|
|
|
{/* 93276f00-ab2c-11d2-8f4b-006008159b0c*/ \
|
|
|
|
0x93276f00, 0xab2c, 0x11d2, \
|
|
|
|
{0x8f, 0xb4, 0x0, 0x60, 0x8, 0x15, 0x9b, 0xc} }
|
|
|
|
|
1999-01-29 18:57:56 +00:00
|
|
|
class nsIPresShell;
|
|
|
|
|
1999-01-07 01:02:32 +00:00
|
|
|
/**
|
1999-02-15 18:25:30 +00:00
|
|
|
* A transaction that inserts text into a content node.
|
|
|
|
*/
|
1999-01-07 01:02:32 +00:00
|
|
|
class InsertTextTxn : public EditTxn
|
|
|
|
{
|
|
|
|
public:
|
1999-07-15 19:13:46 +00:00
|
|
|
|
|
|
|
static const nsIID& GetCID() { static nsIID iid = INSERT_TEXT_TXN_CID; return iid; }
|
|
|
|
|
1999-03-05 21:05:35 +00:00
|
|
|
virtual ~InsertTextTxn();
|
1999-02-15 18:25:30 +00:00
|
|
|
|
|
|
|
/** used to name aggregate transactions that consist only of a single InsertTextTxn,
|
|
|
|
* or a DeleteSelection followed by an InsertTextTxn.
|
|
|
|
*/
|
|
|
|
static nsIAtom *gInsertTextTxnName;
|
1999-01-15 00:03:41 +00:00
|
|
|
|
1999-02-15 18:25:30 +00:00
|
|
|
/** initialize the transaction
|
|
|
|
* @param aElement the text content node
|
|
|
|
* @param aOffset the location in aElement to do the insertion
|
|
|
|
* @param aString the new text to insert
|
|
|
|
* @param aPresShell used to get and set the selection
|
|
|
|
*/
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Init(nsIDOMCharacterData *aElement,
|
|
|
|
PRUint32 aOffset,
|
|
|
|
const nsString& aString,
|
1999-08-25 10:51:55 +00:00
|
|
|
nsWeakPtr aPresShellWeak);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-01-15 00:03:41 +00:00
|
|
|
private:
|
|
|
|
|
1999-01-21 01:51:09 +00:00
|
|
|
InsertTextTxn();
|
1999-01-15 00:03:41 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Do(void);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Undo(void);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Merge(PRBool *aDidMerge, nsITransaction *aTransaction);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Write(nsIOutputStream *aOutputStream);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-05-27 20:50:52 +00:00
|
|
|
NS_IMETHOD GetUndoString(nsString *aString);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-05-27 20:50:52 +00:00
|
|
|
NS_IMETHOD GetRedoString(nsString *aString);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
1999-01-14 18:02:45 +00:00
|
|
|
// nsISupports declarations
|
|
|
|
|
|
|
|
// override QueryInterface to handle InsertTextTxn request
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
1999-01-28 19:00:14 +00:00
|
|
|
/** return the string data associated with this transaction */
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD GetData(nsString& aResult);
|
1999-01-14 18:02:45 +00:00
|
|
|
|
1999-02-15 18:25:30 +00:00
|
|
|
/** must be called before any InsertTextTxn is instantiated */
|
|
|
|
static nsresult ClassInit();
|
|
|
|
|
1999-10-06 20:27:41 +00:00
|
|
|
/** must be called once we are guaranteed all InsertTextTxn have completed */
|
|
|
|
static nsresult ClassShutdown();
|
|
|
|
|
1999-09-21 22:31:27 +00:00
|
|
|
enum { kTransactionID = 11120 };
|
|
|
|
|
1999-01-07 01:02:32 +00:00
|
|
|
protected:
|
1999-01-28 19:00:14 +00:00
|
|
|
|
|
|
|
/** return PR_TRUE if aOtherTxn immediately follows this txn */
|
|
|
|
virtual PRBool IsSequentialInsert(InsertTextTxn *aOtherTxn);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
|
|
|
/** the text element to operate upon */
|
1999-01-21 01:51:09 +00:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> mElement;
|
1999-01-07 01:02:32 +00:00
|
|
|
|
|
|
|
/** the offset into mElement where the insertion is to take place */
|
|
|
|
PRUint32 mOffset;
|
|
|
|
|
|
|
|
/** the text to insert into mElement at mOffset */
|
|
|
|
nsString mStringToInsert;
|
|
|
|
|
1999-01-29 18:57:56 +00:00
|
|
|
/** the presentation shell, which we'll need to get the selection */
|
1999-08-25 10:51:55 +00:00
|
|
|
nsWeakPtr mPresShellWeak; // weak reference to the nsIPresShell
|
1999-01-29 18:57:56 +00:00
|
|
|
|
1999-01-21 01:51:09 +00:00
|
|
|
friend class TransactionFactory;
|
|
|
|
|
1999-04-12 20:14:20 +00:00
|
|
|
friend class nsDerivedSafe<InsertTextTxn>; // work around for a compiler bug
|
|
|
|
|
1999-01-07 01:02:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|