mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
77 lines
2.0 KiB
C++
77 lines
2.0 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef DeleteTextTxn_h__
|
|
#define DeleteTextTxn_h__
|
|
|
|
#include "EditTxn.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsGenericDOMDataNode.h"
|
|
#include "nsID.h"
|
|
#include "nsString.h"
|
|
#include "nscore.h"
|
|
|
|
class nsEditor;
|
|
class nsRangeUpdater;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
/**
|
|
* A transaction that removes text from a content node.
|
|
*/
|
|
class DeleteTextTxn : public EditTxn
|
|
{
|
|
public:
|
|
/** initialize the transaction.
|
|
* @param aEditor the provider of basic editing operations
|
|
* @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!
|
|
*/
|
|
DeleteTextTxn(nsEditor& aEditor,
|
|
nsGenericDOMDataNode& aCharData,
|
|
uint32_t aOffset,
|
|
uint32_t aNumCharsToDelete,
|
|
nsRangeUpdater* aRangeUpdater);
|
|
|
|
nsresult Init();
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DeleteTextTxn, EditTxn)
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
|
|
|
NS_DECL_EDITTXN
|
|
|
|
uint32_t GetOffset() { return mOffset; }
|
|
|
|
uint32_t GetNumCharsToDelete() { return mNumCharsToDelete; }
|
|
|
|
protected:
|
|
|
|
/** the provider of basic editing operations */
|
|
nsEditor& mEditor;
|
|
|
|
/** the CharacterData node to operate upon */
|
|
nsRefPtr<nsGenericDOMDataNode> mCharData;
|
|
|
|
/** the offset into mCharData where the deletion is to take place */
|
|
uint32_t mOffset;
|
|
|
|
/** the number of characters to delete */
|
|
uint32_t mNumCharsToDelete;
|
|
|
|
/** the text that was deleted */
|
|
nsString mDeletedText;
|
|
|
|
/** range updater object */
|
|
nsRangeUpdater* mRangeUpdater;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|