1999-01-07 17:56:20 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +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 17:56:20 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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 17:56:20 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-01-07 17:56:20 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-01-07 17:56:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DeleteTextTxn_h__
|
|
|
|
#define DeleteTextTxn_h__
|
|
|
|
|
|
|
|
#include "EditTxn.h"
|
1999-02-22 15:53:31 +00:00
|
|
|
#include "nsIEditor.h"
|
1999-01-21 01:51:09 +00:00
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-07-15 19:13:46 +00:00
|
|
|
#define DELETE_TEXT_TXN_CID \
|
1999-01-21 01:51:09 +00:00
|
|
|
{/* 4d3a2720-ac49-11d2-86d8-000064657374 */ \
|
|
|
|
0x4d3a2720, 0xac49, 0x11d2, \
|
|
|
|
{0x86, 0xd8, 0x0, 0x0, 0x64, 0x65, 0x73, 0x74} }
|
1999-01-07 17:56:20 +00:00
|
|
|
|
|
|
|
/**
|
1999-02-15 18:25:30 +00:00
|
|
|
* A transaction that removes text from a content node.
|
1999-01-07 17:56:20 +00:00
|
|
|
*/
|
|
|
|
class DeleteTextTxn : public EditTxn
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
1999-07-15 19:13:46 +00:00
|
|
|
static const nsIID& GetCID() { static nsIID iid = DELETE_TEXT_TXN_CID; return iid; }
|
|
|
|
|
1999-02-15 18:25:30 +00:00
|
|
|
/** initialize the transaction.
|
1999-02-22 15:53:31 +00:00
|
|
|
* @param aEditor the provider of basic editing operations
|
1999-02-15 18:25:30 +00:00
|
|
|
* @param aElement the content node to remove text from
|
|
|
|
* @param aOffset the location in aElement to begin the deletion
|
|
|
|
* @param aNumCharsToDelete the number of characters to delete. Not the number of bytes!
|
|
|
|
*/
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Init(nsIEditor *aEditor,
|
|
|
|
nsIDOMCharacterData *aElement,
|
|
|
|
PRUint32 aOffset,
|
|
|
|
PRUint32 aNumCharsToDelete);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-01-21 01:51:09 +00:00
|
|
|
private:
|
|
|
|
DeleteTextTxn();
|
|
|
|
|
|
|
|
public:
|
1999-03-05 21:05:35 +00:00
|
|
|
virtual ~DeleteTextTxn();
|
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Do(void);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Undo(void);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Merge(PRBool *aDidMerge, nsITransaction *aTransaction);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-03-02 05:30:53 +00:00
|
|
|
NS_IMETHOD Write(nsIOutputStream *aOutputStream);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-05-27 20:50:52 +00:00
|
|
|
NS_IMETHOD GetUndoString(nsString *aString);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-05-27 20:50:52 +00:00
|
|
|
NS_IMETHOD GetRedoString(nsString *aString);
|
1999-01-07 17:56:20 +00:00
|
|
|
|
1999-09-21 22:31:27 +00:00
|
|
|
enum { kTransactionID = 11130 };
|
|
|
|
|
1999-01-07 17:56:20 +00:00
|
|
|
protected:
|
1999-02-22 15:53:31 +00:00
|
|
|
|
|
|
|
/** the provider of basic editing operations */
|
1999-05-28 00:13:02 +00:00
|
|
|
nsIEditor* mEditor;
|
1999-02-22 15:53:31 +00:00
|
|
|
|
1999-01-07 17:56:20 +00:00
|
|
|
/** the text element to operate upon */
|
1999-01-21 01:51:09 +00:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> mElement;
|
1999-01-07 17:56:20 +00:00
|
|
|
|
|
|
|
/** the offset into mElement where the deletion is to take place */
|
|
|
|
PRUint32 mOffset;
|
|
|
|
|
|
|
|
/** the number of characters to delete */
|
|
|
|
PRUint32 mNumCharsToDelete;
|
|
|
|
|
|
|
|
/** the text that was deleted */
|
|
|
|
nsString mDeletedText;
|
|
|
|
|
1999-01-21 01:51:09 +00:00
|
|
|
friend class TransactionFactory;
|
|
|
|
|
1999-01-07 17:56:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|