/* -*- 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/. */
#include"nsCycleCollectionParticipant.h"// various macros #include"nsID.h"// NS_DECLARE_STATIC_IID_ACCESSOR #include"nsISupportsImpl.h"// NS_DECL_ISUPPORTS_INHERITED #include"nsString.h"// nsString members #include"nscore.h"// NS_IMETHOD, nsAString
namespace mozilla { namespace dom { class Text;
} // namespace dom
/** * A transaction that inserts text into a content node.
*/ class InsertTextTransaction final : public EditTransactionBase { protected:
InsertTextTransaction(EditorBase& aEditorBase, const nsAString& aStringToInsert, const EditorDOMPointInText& aPointToInsert);
public: /** * Creates new InsertTextTransaction instance. This never returns nullptr. * * @param aEditorBase The editor which manages the transaction. * @param aPointToInsert The insertion point. * @param aStringToInsert The new string to insert.
*/ static already_AddRefed<InsertTextTransaction> Create(
EditorBase& aEditorBase, const nsAString& aStringToInsert, const EditorDOMPointInText& aPointToInsert);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.