2016-07-07 09:42:08 +03:00
|
|
|
/* -*- 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 CompositionTransaction_h
|
|
|
|
#define CompositionTransaction_h
|
|
|
|
|
2016-07-08 08:03:31 +03:00
|
|
|
#include "mozilla/EditTransactionBase.h" // base class
|
2016-07-07 09:42:08 +03:00
|
|
|
#include "nsCycleCollectionParticipant.h" // various macros
|
|
|
|
#include "nsString.h" // mStringToInsert
|
|
|
|
|
|
|
|
#define NS_IMETEXTTXN_IID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2016-07-07 09:42:08 +03:00
|
|
|
0xb391355d, 0x346c, 0x43d1, { \
|
|
|
|
0x85, 0xed, 0x9e, 0x65, 0xbe, 0xe7, 0x7e, 0x48 \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-07-08 07:10:13 +03:00
|
|
|
class EditorBase;
|
2017-12-15 10:45:41 +03:00
|
|
|
class TextComposition;
|
2016-07-07 09:42:08 +03:00
|
|
|
class TextRangeArray;
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
class Text;
|
|
|
|
} // namespace dom
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CompositionTransaction stores all edit for a composition, i.e.,
|
|
|
|
* from compositionstart event to compositionend event. E.g., inserting a
|
|
|
|
* composition string, modifying the composition string or its IME selection
|
|
|
|
* ranges and commit or cancel the composition.
|
|
|
|
*/
|
2016-07-08 03:48:34 +03:00
|
|
|
class CompositionTransaction final : public EditTransactionBase {
|
2017-12-15 12:26:37 +03:00
|
|
|
protected:
|
|
|
|
CompositionTransaction(EditorBase& aEditorBase,
|
|
|
|
const nsAString& aStringToInsert, dom::Text& aTextNode,
|
|
|
|
uint32_t aOffset);
|
|
|
|
|
2016-07-07 09:42:08 +03:00
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMETEXTTXN_IID)
|
|
|
|
|
|
|
|
/**
|
2017-12-15 12:26:37 +03:00
|
|
|
* Creates a composition transaction. aEditorBase must not return from
|
|
|
|
* GetComposition() while calling this method. Note that this method will
|
|
|
|
* update text node information of aEditorBase.mComposition.
|
|
|
|
*
|
2017-12-15 10:45:41 +03:00
|
|
|
* @param aEditorBase The editor which has composition.
|
|
|
|
* @param aStringToInsert The new composition string to insert. This may
|
|
|
|
* be different from actual composition string.
|
|
|
|
* E.g., password editor can hide the character
|
|
|
|
* with a different character.
|
2017-12-15 12:26:37 +03:00
|
|
|
* @param aTextNode The text node which will have aStringToInsert.
|
|
|
|
* @param aOffset The offset in aTextNode where aStringToInsert
|
|
|
|
* will be inserted.
|
2016-07-07 09:42:08 +03:00
|
|
|
*/
|
2017-12-15 12:26:37 +03:00
|
|
|
static already_AddRefed<CompositionTransaction> Create(
|
|
|
|
EditorBase& aEditorBase, const nsAString& aStringToInsert,
|
|
|
|
dom::Text& aTextNode, uint32_t aOffset);
|
2016-07-07 09:42:08 +03:00
|
|
|
|
2016-07-08 03:48:34 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(CompositionTransaction,
|
|
|
|
EditTransactionBase)
|
2016-07-07 09:42:08 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2016-07-08 03:48:34 +03:00
|
|
|
NS_DECL_EDITTRANSACTIONBASE
|
2016-07-07 09:42:08 +03:00
|
|
|
|
|
|
|
NS_IMETHOD Merge(nsITransaction* aTransaction, bool* aDidMerge) override;
|
|
|
|
|
|
|
|
void MarkFixed();
|
|
|
|
|
2016-07-08 07:10:13 +03:00
|
|
|
static nsresult SetIMESelection(EditorBase& aEditorBase, dom::Text* aTextNode,
|
2016-07-07 09:42:08 +03:00
|
|
|
uint32_t aOffsetInNode,
|
|
|
|
uint32_t aLengthOfCompositionString,
|
|
|
|
const TextRangeArray* aRanges);
|
|
|
|
|
|
|
|
private:
|
|
|
|
~CompositionTransaction();
|
|
|
|
|
|
|
|
nsresult SetSelectionForRanges();
|
|
|
|
|
|
|
|
// The text element to operate upon.
|
|
|
|
RefPtr<dom::Text> mTextNode;
|
|
|
|
|
|
|
|
// The offsets into mTextNode where the insertion should be placed.
|
|
|
|
uint32_t mOffset;
|
|
|
|
|
|
|
|
uint32_t mReplaceLength;
|
|
|
|
|
|
|
|
// The range list.
|
|
|
|
RefPtr<TextRangeArray> mRanges;
|
|
|
|
|
|
|
|
// The text to insert into mTextNode at mOffset.
|
|
|
|
nsString mStringToInsert;
|
|
|
|
|
|
|
|
// The editor, which is used to get the selection controller.
|
2017-03-21 13:00:36 +03:00
|
|
|
RefPtr<EditorBase> mEditorBase;
|
2016-07-07 09:42:08 +03:00
|
|
|
|
|
|
|
bool mFixed;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(CompositionTransaction, NS_IMETEXTTXN_IID)
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // #ifndef CompositionTransaction_h
|