2001-09-25 22:53:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-01-07 01:02:32 +00:00
|
|
|
*
|
2001-09-25 22:53:13 +00: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-07 01:02:32 +00:00
|
|
|
*
|
2001-09-25 22:53:13 +00: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-07 01:02:32 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-25 22:53:13 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-25 22:53:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-01-07 01:02:32 +00:00
|
|
|
|
|
|
|
#ifndef InsertTextTxn_h__
|
|
|
|
#define InsertTextTxn_h__
|
|
|
|
|
|
|
|
#include "EditTxn.h"
|
1999-01-21 01:51:09 +00:00
|
|
|
#include "nsIDOMCharacterData.h"
|
2000-01-04 03:09:41 +00:00
|
|
|
#include "nsIEditor.h"
|
1999-01-21 01:51:09 +00:00
|
|
|
#include "nsCOMPtr.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,
|
2001-04-07 00:45:26 +00:00
|
|
|
const nsAReadableString& aString,
|
2000-01-04 03:09:41 +00:00
|
|
|
nsIEditor *aEditor);
|
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:
|
|
|
|
|
2001-03-09 14:23:59 +00:00
|
|
|
NS_IMETHOD DoTransaction(void);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
2001-03-09 14:23:59 +00:00
|
|
|
NS_IMETHOD UndoTransaction(void);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
2001-03-09 14:23:59 +00:00
|
|
|
NS_IMETHOD Merge(nsITransaction *aTransaction, PRBool *aDidMerge);
|
1999-01-07 01:02:32 +00:00
|
|
|
|
2001-03-09 14:23:59 +00:00
|
|
|
NS_IMETHOD GetTxnDescription(nsAWritableString& aTxnDescription);
|
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-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;
|
|
|
|
|
2000-01-04 03:09:41 +00:00
|
|
|
/** the editor, which we'll need to get the selection */
|
|
|
|
nsIEditor *mEditor;
|
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
|