2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
#ifndef mozilla_TextEditor_h
|
|
|
|
#define mozilla_TextEditor_h
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-08 07:10:13 +03:00
|
|
|
#include "mozilla/EditorBase.h"
|
2001-01-28 23:13:07 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2012-07-13 10:33:42 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsIEditor.h"
|
|
|
|
#include "nsIEditorMailSupport.h"
|
|
|
|
#include "nsIPlaintextEditor.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nscore.h"
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2012-07-13 10:33:42 +04:00
|
|
|
class nsIContent;
|
2001-01-28 23:13:07 +03:00
|
|
|
class nsIDocumentEncoder;
|
2012-07-13 10:33:42 +04:00
|
|
|
class nsIOutputStream;
|
|
|
|
class nsISelectionController;
|
|
|
|
class nsITransferable;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2014-11-02 15:04:13 +03:00
|
|
|
namespace mozilla {
|
2016-06-23 13:18:13 +03:00
|
|
|
class AutoEditInitRulesTrigger;
|
2018-01-12 13:01:04 +03:00
|
|
|
enum class EditAction : int32_t;
|
|
|
|
|
2014-11-02 15:04:13 +03:00
|
|
|
namespace dom {
|
2018-03-13 23:24:00 +03:00
|
|
|
class DragEvent;
|
2014-11-02 15:04:13 +03:00
|
|
|
class Selection;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2014-11-02 15:04:13 +03:00
|
|
|
|
2001-01-28 23:13:07 +03:00
|
|
|
/**
|
|
|
|
* The text editor implementation.
|
2015-05-28 18:58:42 +03:00
|
|
|
* Use to edit text document represented as a DOM tree.
|
2001-01-28 23:13:07 +03:00
|
|
|
*/
|
2016-07-08 07:10:13 +03:00
|
|
|
class TextEditor : public EditorBase
|
2016-07-09 05:54:50 +03:00
|
|
|
, public nsIPlaintextEditor
|
|
|
|
, public nsIEditorMailSupport
|
2001-01-28 23:13:07 +03:00
|
|
|
{
|
|
|
|
public:
|
2018-05-22 14:15:05 +03:00
|
|
|
/****************************************************************************
|
|
|
|
* NOTE: DO NOT MAKE YOUR NEW METHODS PUBLIC IF they are called by other
|
|
|
|
* classes under libeditor except EditorEventListener and
|
|
|
|
* HTMLEditorEventListener because each public method which may fire
|
|
|
|
* eEditorInput event will need to instantiate new stack class for
|
|
|
|
* managing input type value of eEditorInput and cache some objects
|
|
|
|
* for smarter handling. In other words, when you add new root
|
|
|
|
* method to edit the DOM tree, you can make your new method public.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2001-01-28 23:13:07 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2016-07-08 07:10:13 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TextEditor, EditorBase)
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
TextEditor();
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
// nsIPlaintextEditor methods
|
2001-01-28 23:13:07 +03:00
|
|
|
NS_DECL_NSIPLAINTEXTEDITOR
|
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
// nsIEditorMailSupport overrides
|
2003-07-28 17:13:50 +04:00
|
|
|
NS_DECL_NSIEDITORMAILSUPPORT
|
2001-04-06 03:48:01 +04:00
|
|
|
|
2018-04-11 11:37:49 +03:00
|
|
|
// Overrides of nsIEditor
|
2016-07-09 05:54:50 +03:00
|
|
|
NS_IMETHOD GetDocumentIsEmpty(bool* aDocumentIsEmpty) override;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2012-05-10 18:54:33 +04:00
|
|
|
NS_IMETHOD DeleteSelection(EDirection aAction,
|
2015-03-21 19:28:04 +03:00
|
|
|
EStripWrappers aStripWrappers) override;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
NS_IMETHOD SetDocumentCharacterSet(const nsACString& characterSet) override;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2018-03-22 19:21:17 +03:00
|
|
|
// If there are some good name to create non-virtual Undo()/Redo() methods,
|
|
|
|
// we should create them and those methods should just run them.
|
|
|
|
NS_IMETHOD Undo(uint32_t aCount) final;
|
|
|
|
NS_IMETHOD Redo(uint32_t aCount) final;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Cut() override;
|
2016-07-09 05:54:50 +03:00
|
|
|
NS_IMETHOD CanCut(bool* aCanCut) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Copy() override;
|
2016-07-09 05:54:50 +03:00
|
|
|
NS_IMETHOD CanCopy(bool* aCanCopy) override;
|
|
|
|
NS_IMETHOD CanDelete(bool* aCanDelete) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Paste(int32_t aSelectionType) override;
|
2016-07-09 05:54:50 +03:00
|
|
|
NS_IMETHOD CanPaste(int32_t aSelectionType, bool* aCanPaste) override;
|
|
|
|
NS_IMETHOD PasteTransferable(nsITransferable* aTransferable) override;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2002-03-26 01:39:19 +03:00
|
|
|
NS_IMETHOD OutputToString(const nsAString& aFormatType,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFlags,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAString& aOutputString) override;
|
2015-05-28 18:58:42 +03:00
|
|
|
|
2018-05-22 12:23:21 +03:00
|
|
|
/** Can we paste |aTransferable| or, if |aTransferable| is null, will a call
|
|
|
|
* to pasteTransferable later possibly succeed if given an instance of
|
|
|
|
* nsITransferable then? True if the doc is modifiable, and, if
|
|
|
|
* |aTransfeable| is non-null, we have pasteable data in |aTransfeable|.
|
|
|
|
*/
|
|
|
|
virtual bool CanPasteTransferable(nsITransferable* aTransferable);
|
|
|
|
|
2018-04-11 11:37:49 +03:00
|
|
|
// Overrides of EditorBase
|
|
|
|
virtual nsresult Init(nsIDocument& aDoc, Element* aRoot,
|
|
|
|
nsISelectionController* aSelCon, uint32_t aFlags,
|
|
|
|
const nsAString& aValue) override;
|
|
|
|
|
|
|
|
nsresult DocumentIsEmpty(bool* aIsEmpty);
|
|
|
|
|
2017-02-08 14:18:17 +03:00
|
|
|
virtual nsresult HandleKeyPressEvent(
|
|
|
|
WidgetKeyboardEvent* aKeyboardEvent) override;
|
2010-06-10 05:16:58 +04:00
|
|
|
|
2018-01-09 16:41:42 +03:00
|
|
|
virtual dom::EventTarget* GetDOMEventTarget() override;
|
2010-06-17 09:30:10 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual already_AddRefed<nsIContent> GetInputEventTargetContent() override;
|
2012-03-27 05:36:44 +04:00
|
|
|
|
2018-04-16 17:43:36 +03:00
|
|
|
/**
|
|
|
|
* InsertTextAsAction() inserts aStringToInsert at selection.
|
|
|
|
* Although this method is implementation of nsIPlaintextEditor.insertText(),
|
|
|
|
* this treats the input is an edit action.
|
|
|
|
*
|
|
|
|
* @param aStringToInsert The string to insert.
|
|
|
|
*/
|
|
|
|
nsresult InsertTextAsAction(const nsAString& aStringToInsert);
|
|
|
|
|
|
|
|
/**
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
* DeleteSelectionAsAction() removes selection content or content around
|
|
|
|
* caret with transactions. This should be used for handling it as an
|
|
|
|
* edit action.
|
|
|
|
*
|
|
|
|
* @param aDirection How much range should be removed.
|
|
|
|
* @param aStripWrappers Whether the parent blocks should be removed
|
|
|
|
* when they become empty.
|
2016-07-09 05:54:50 +03:00
|
|
|
*/
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
nsresult DeleteSelectionAsAction(EDirection aDirection,
|
|
|
|
EStripWrappers aStripWrappers);
|
2010-02-01 21:12:31 +03:00
|
|
|
|
2018-02-21 07:21:57 +03:00
|
|
|
/**
|
|
|
|
* The maximum number of characters allowed.
|
|
|
|
* default: -1 (unlimited).
|
|
|
|
*/
|
2017-06-20 16:57:08 +03:00
|
|
|
int32_t MaxTextLength() const { return mMaxTextLength; }
|
2018-02-21 07:21:57 +03:00
|
|
|
void SetMaxTextLength(int32_t aLength) { mMaxTextLength = aLength; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replace existed string with a string.
|
|
|
|
* This is fast path to replace all string when using single line control.
|
|
|
|
*
|
|
|
|
* @ param aString the string to be set
|
|
|
|
*/
|
|
|
|
nsresult SetText(const nsAString& aString);
|
2017-06-20 16:57:08 +03:00
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
/**
|
|
|
|
* OnInputParagraphSeparator() is called when user tries to separate current
|
|
|
|
* paragraph with Enter key press or something.
|
|
|
|
*/
|
|
|
|
nsresult OnInputParagraphSeparator();
|
|
|
|
|
2018-04-18 18:31:51 +03:00
|
|
|
/**
|
|
|
|
* OnCompositionStart() is called when editor receives eCompositionStart
|
|
|
|
* event which should be handled in this editor.
|
|
|
|
*/
|
|
|
|
nsresult OnCompositionStart(WidgetCompositionEvent& aCompositionStartEvent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OnCompositionChange() is called when editor receives an eCompositioChange
|
|
|
|
* event which should be handled in this editor.
|
|
|
|
*
|
|
|
|
* @param aCompositionChangeEvent eCompositionChange event which should
|
|
|
|
* be handled in this editor.
|
|
|
|
*/
|
|
|
|
nsresult
|
|
|
|
OnCompositionChange(WidgetCompositionEvent& aCompositionChangeEvent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OnCompositionEnd() is called when editor receives an eCompositionChange
|
|
|
|
* event and it's followed by eCompositionEnd event and after
|
|
|
|
* OnCompositionChange() is called.
|
|
|
|
*/
|
|
|
|
void OnCompositionEnd(WidgetCompositionEvent& aCompositionEndEvent);
|
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
protected: // May be called by friends.
|
2018-05-22 14:15:05 +03:00
|
|
|
/****************************************************************************
|
|
|
|
* Some classes like TextEditRules, HTMLEditRules, WSRunObject which are
|
|
|
|
* part of handling edit actions are allowed to call the following protected
|
|
|
|
* methods. However, those methods won't prepare caches of some objects
|
|
|
|
* which are necessary for them. So, if you want some following methods
|
|
|
|
* to do that for you, you need to create a wrapper method in public scope
|
|
|
|
* and call it.
|
|
|
|
****************************************************************************/
|
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
// Overrides of EditorBase
|
|
|
|
virtual nsresult RemoveAttributeOrEquivalent(
|
|
|
|
Element* aElement,
|
|
|
|
nsAtom* aAttribute,
|
|
|
|
bool aSuppressTransaction) override;
|
|
|
|
virtual nsresult SetAttributeOrEquivalent(Element* aElement,
|
|
|
|
nsAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
bool aSuppressTransaction) override;
|
|
|
|
using EditorBase::RemoveAttributeOrEquivalent;
|
|
|
|
using EditorBase::SetAttributeOrEquivalent;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
virtual nsresult InsertFromDrop(dom::DragEvent* aDropEvent) override;
|
2005-03-24 22:00:01 +03:00
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
/**
|
|
|
|
* DeleteSelectionWithTransaction() removes selected content or content
|
|
|
|
* around caret with transactions.
|
|
|
|
*
|
|
|
|
* @param aDirection How much range should be removed.
|
|
|
|
* @param aStripWrappers Whether the parent blocks should be removed
|
|
|
|
* when they become empty.
|
|
|
|
*/
|
|
|
|
virtual nsresult
|
|
|
|
DeleteSelectionWithTransaction(EDirection aAction,
|
|
|
|
EStripWrappers aStripWrappers);
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2017-11-21 08:38:19 +03:00
|
|
|
/**
|
2018-04-16 13:21:29 +03:00
|
|
|
* InsertBrElementWithTransaction() creates a <br> element and inserts it
|
|
|
|
* before aPointToInsert. Then, tries to collapse selection at or after the
|
|
|
|
* new <br> node if aSelect is not eNone.
|
2017-11-21 08:38:19 +03:00
|
|
|
*
|
|
|
|
* @param aSelection The selection of this editor.
|
|
|
|
* @param aPointToInsert The DOM point where should be <br> node inserted
|
|
|
|
* before.
|
|
|
|
* @param aSelect If eNone, this won't change selection.
|
|
|
|
* If eNext, selection will be collapsed after
|
|
|
|
* the <br> element.
|
|
|
|
* If ePrevious, selection will be collapsed at
|
|
|
|
* the <br> element.
|
|
|
|
* @return The new <br> node. If failed to create new
|
|
|
|
* <br> node, returns nullptr.
|
|
|
|
*/
|
2018-03-20 08:05:47 +03:00
|
|
|
template<typename PT, typename CT>
|
2017-11-21 08:38:19 +03:00
|
|
|
already_AddRefed<Element>
|
2018-04-16 13:21:29 +03:00
|
|
|
InsertBrElementWithTransaction(
|
|
|
|
Selection& aSelection,
|
|
|
|
const EditorDOMPointBase<PT, CT>& aPointToInsert,
|
|
|
|
EDirection aSelect = eNone);
|
2001-01-28 23:13:07 +03:00
|
|
|
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
/**
|
|
|
|
* Extends the selection for given deletion operation
|
|
|
|
* If done, also update aAction to what's actually left to do after the
|
|
|
|
* extension.
|
|
|
|
*/
|
|
|
|
nsresult ExtendSelectionForDelete(Selection* aSelection,
|
|
|
|
nsIEditor::EDirection* aAction);
|
|
|
|
|
|
|
|
static void GetDefaultEditorPrefs(int32_t& aNewLineHandling,
|
|
|
|
int32_t& aCaretStyle);
|
|
|
|
|
|
|
|
protected: // Called by helper classes.
|
|
|
|
/**
|
|
|
|
* All editor operations which alter the doc should be prefaced
|
|
|
|
* with a call to StartOperation, naming the action and direction.
|
|
|
|
*/
|
|
|
|
virtual nsresult StartOperation(EditAction opID,
|
|
|
|
nsIEditor::EDirection aDirection) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All editor operations which alter the doc should be followed
|
|
|
|
* with a call to EndOperation.
|
|
|
|
*/
|
|
|
|
virtual nsresult EndOperation() override;
|
|
|
|
|
|
|
|
void BeginEditorInit();
|
|
|
|
nsresult EndEditorInit();
|
|
|
|
|
|
|
|
protected: // Shouldn't be used by friend classes
|
|
|
|
virtual ~TextEditor();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make the given selection span the entire document.
|
|
|
|
*/
|
|
|
|
virtual nsresult SelectEntireDocument(Selection* aSelection) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OnInputText() is called when user inputs text with keyboard or something.
|
|
|
|
*
|
|
|
|
* @param aStringToInsert The string to insert.
|
|
|
|
*/
|
|
|
|
nsresult OnInputText(const nsAString& aStringToInsert);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* InsertParagraphSeparatorAsAction() inserts a line break if it's TextEditor
|
|
|
|
* or inserts new paragraph if it's HTMLEditor and it's possible.
|
|
|
|
* Although, this method is implementation of
|
|
|
|
* nsIPlaintextEditor.insertLineBreak(), this treats the input is an edit
|
|
|
|
* action.
|
|
|
|
*/
|
|
|
|
nsresult InsertParagraphSeparatorAsAction();
|
|
|
|
|
|
|
|
nsresult InsertTextAt(const nsAString& aStringToInsert,
|
|
|
|
nsINode* aDestinationNode,
|
|
|
|
int32_t aDestOffset,
|
|
|
|
bool aDoDeleteSelection);
|
|
|
|
|
|
|
|
virtual nsresult InsertFromDataTransfer(dom::DataTransfer* aDataTransfer,
|
|
|
|
int32_t aIndex,
|
|
|
|
nsIDocument* aSourceDoc,
|
|
|
|
nsINode* aDestinationNode,
|
|
|
|
int32_t aDestOffset,
|
|
|
|
bool aDoDeleteSelection) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the data is safe to insert as the source and destination
|
|
|
|
* principals match, or we are in a editor context where this doesn't matter.
|
|
|
|
* Otherwise, the data must be sanitized first.
|
|
|
|
*/
|
|
|
|
bool IsSafeToInsertData(nsIDocument* aSourceDoc);
|
|
|
|
|
|
|
|
virtual nsresult InitRules();
|
|
|
|
|
|
|
|
already_AddRefed<nsIDocumentEncoder> GetAndInitDocEncoder(
|
|
|
|
const nsAString& aFormatType,
|
|
|
|
uint32_t aFlags,
|
|
|
|
const nsACString& aCharset);
|
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
/**
|
|
|
|
* Factored methods for handling insertion of data from transferables
|
|
|
|
* (drag&drop or clipboard).
|
|
|
|
*/
|
Bug 1463327 - part 2: Change scope of some methods of TextEditor which won't be called by non-helper classes of editing to protected r=m_kato
TextEditor has 2 type of public methods. One is true-public methods. I.e.,
they should be able to be called by anybody. E.g., command handlers, event
listeners, or JS via nsIEditor interface. The other is semi-public methods.
They are not called by the above examples but called by other classes which
are helper classes to handle edit actions. E.g., TextEditRules, HTMLEditRules,
HTMLEditUtils, CSSEditUtils and Transaction classes.
When we will implement InputEvent.inputType, we need to create new stack
class and create its instance at every true-public methods to manage current
inputType (like TextEditRules::AutoSafeEditorData). Therefore, it should not
happen that new code starts to call semi-public methods without the new
stack class instance.
For preventing this issue, we should make TextEditor have only the true-public
methods as public. The other public methods should be protected and their
users should be friend classes. Then, we can protect such method from external
classes.
Note that this patch just moves the methods without any changes in TextEditor.h.
MozReview-Commit-ID: Db3H6d1V8IU
--HG--
extra : rebase_source : d928a6bb378d02944c5a207de83211c33bb63613
2018-05-22 10:40:44 +03:00
|
|
|
virtual nsresult PrepareTransferable(nsITransferable** transferable);
|
|
|
|
|
2018-03-27 14:19:35 +03:00
|
|
|
nsresult InsertTextFromTransferable(nsITransferable* transferable);
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2018-04-11 11:37:49 +03:00
|
|
|
/**
|
|
|
|
* DeleteSelectionAndCreateElement() creates a element whose name is aTag.
|
|
|
|
* And insert it into the DOM tree after removing the selected content.
|
|
|
|
*
|
|
|
|
* @param aTag The element name to be created.
|
|
|
|
* @return Created new element.
|
|
|
|
*/
|
|
|
|
already_AddRefed<Element> DeleteSelectionAndCreateElement(nsAtom& aTag);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method first deletes the selection, if it's not collapsed. Then if
|
|
|
|
* the selection lies in a CharacterData node, it splits it. If the
|
|
|
|
* selection is at this point collapsed in a CharacterData node, it's
|
|
|
|
* adjusted to be collapsed right before or after the node instead (which is
|
|
|
|
* always possible, since the node was split).
|
|
|
|
*/
|
|
|
|
nsresult DeleteSelectionAndPrepareToCreateNode();
|
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
/**
|
|
|
|
* Shared outputstring; returns whether selection is collapsed and resulting
|
|
|
|
* string.
|
|
|
|
*/
|
|
|
|
nsresult SharedOutputString(uint32_t aFlags, bool* aIsCollapsed,
|
|
|
|
nsAString& aResult);
|
2003-07-28 17:13:50 +04:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
enum PasswordFieldAllowed
|
|
|
|
{
|
2015-01-16 00:47:56 +03:00
|
|
|
ePasswordFieldAllowed,
|
|
|
|
ePasswordFieldNotAllowed
|
|
|
|
};
|
|
|
|
bool CanCutOrCopy(PasswordFieldAllowed aPasswordFieldAllowed);
|
2016-07-09 05:54:50 +03:00
|
|
|
bool FireClipboardEvent(EventMessage aEventMessage,
|
2015-08-26 15:56:59 +03:00
|
|
|
int32_t aSelectionType,
|
|
|
|
bool* aActionTaken = nullptr);
|
2007-07-26 08:14:33 +04:00
|
|
|
|
2017-03-17 10:32:06 +03:00
|
|
|
bool UpdateMetaCharset(nsIDocument& aDocument,
|
2012-02-01 14:54:22 +04:00
|
|
|
const nsACString& aCharacterSet);
|
|
|
|
|
2018-04-18 18:31:51 +03:00
|
|
|
/**
|
|
|
|
* EnsureComposition() should be called by composition event handlers. This
|
|
|
|
* tries to get the composition for the event and set it to mComposition.
|
|
|
|
* However, this may fail because the composition may be committed before
|
|
|
|
* the event comes to the editor.
|
|
|
|
*
|
|
|
|
* @return true if there is a composition. Otherwise, for example,
|
|
|
|
* a composition event handler in web contents moved focus
|
|
|
|
* for committing the composition, returns false.
|
|
|
|
*/
|
|
|
|
bool EnsureComposition(WidgetCompositionEvent& aCompositionEvent);
|
|
|
|
|
2001-01-28 23:13:07 +03:00
|
|
|
protected:
|
2017-04-17 11:29:46 +03:00
|
|
|
nsCOMPtr<nsIDocumentEncoder> mCachedDocumentEncoder;
|
|
|
|
nsString mCachedDocumentEncoderType;
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mWrapColumn;
|
|
|
|
int32_t mMaxTextLength;
|
|
|
|
int32_t mInitTriggerCounter;
|
|
|
|
int32_t mNewlineHandling;
|
|
|
|
int32_t mCaretStyle;
|
2001-01-28 23:13:07 +03:00
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
friend class AutoEditInitRulesTrigger;
|
|
|
|
friend class TextEditRules;
|
2001-01-28 23:13:07 +03:00
|
|
|
};
|
|
|
|
|
2017-08-04 09:01:36 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
mozilla::TextEditor*
|
|
|
|
nsIEditor::AsTextEditor()
|
2017-08-04 00:18:50 +03:00
|
|
|
{
|
2017-08-04 09:01:36 +03:00
|
|
|
return static_cast<mozilla::TextEditor*>(this);
|
2017-08-04 00:18:50 +03:00
|
|
|
}
|
|
|
|
|
2017-08-04 09:01:36 +03:00
|
|
|
const mozilla::TextEditor*
|
|
|
|
nsIEditor::AsTextEditor() const
|
2017-08-04 00:18:50 +03:00
|
|
|
{
|
2017-08-04 09:01:36 +03:00
|
|
|
return static_cast<const mozilla::TextEditor*>(this);
|
2017-08-04 00:18:50 +03:00
|
|
|
}
|
|
|
|
|
2016-07-09 05:54:50 +03:00
|
|
|
#endif // #ifndef mozilla_TextEditor_h
|