2018-01-12 13:01:04 +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 mozilla_EditAction_h
|
|
|
|
#define mozilla_EditAction_h
|
|
|
|
|
2019-01-07 13:10:57 +03:00
|
|
|
#include "mozilla/EventForwards.h"
|
2019-07-26 04:10:23 +03:00
|
|
|
#include "mozilla/StaticPrefs_dom.h"
|
2019-01-07 13:10:57 +03:00
|
|
|
|
2018-01-12 13:01:04 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
2018-10-30 12:56:41 +03:00
|
|
|
/**
|
|
|
|
* EditAction indicates which operation or command causes running the methods
|
|
|
|
* of editors.
|
|
|
|
*/
|
|
|
|
enum class EditAction {
|
|
|
|
// eNone indicates no edit action is being handled.
|
|
|
|
eNone,
|
|
|
|
|
2021-04-08 11:51:41 +03:00
|
|
|
// eNotEditing indicates that something is retrieved, doing something at
|
|
|
|
// destroying or focus move etc, i.e., not edit action is being handled but
|
|
|
|
// editor is doing something.
|
2018-10-30 12:56:41 +03:00
|
|
|
eNotEditing,
|
2018-10-30 12:57:52 +03:00
|
|
|
|
2021-04-08 11:51:41 +03:00
|
|
|
// eInitializing indicates that the editor instance is being initialized.
|
|
|
|
eInitializing,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eInsertText indicates to insert some characters.
|
|
|
|
eInsertText,
|
|
|
|
|
|
|
|
// eInsertParagraphSeparator indicates to insert a paragraph separator such
|
2018-11-03 14:22:13 +03:00
|
|
|
// as <p>, <div>.
|
2018-10-30 12:59:33 +03:00
|
|
|
eInsertParagraphSeparator,
|
|
|
|
|
2018-11-03 14:22:13 +03:00
|
|
|
// eInsertLineBreak indicates to insert \n into TextEditor or a <br> element
|
|
|
|
// in HTMLEditor.
|
2018-10-30 13:00:17 +03:00
|
|
|
eInsertLineBreak,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eDeleteSelection indicates to delete selected content or content around
|
|
|
|
// caret if selection is collapsed.
|
|
|
|
eDeleteSelection,
|
|
|
|
|
|
|
|
// eDeleteBackward indicates to remove previous character element of caret.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteBackward,
|
|
|
|
|
|
|
|
// eDeleteForward indicates to remove next character or element of caret.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteForward,
|
|
|
|
|
|
|
|
// eDeleteWordBackward indicates to remove previous word. If caret is in
|
|
|
|
// a word, remove characters between word start and caret.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteWordBackward,
|
|
|
|
|
|
|
|
// eDeleteWordForward indicates to remove next word. If caret is in a
|
|
|
|
// word, remove characters between caret and word end.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteWordForward,
|
|
|
|
|
|
|
|
// eDeleteToBeginningOfSoftLine indicates to remove characters between
|
|
|
|
// caret and previous visual line break.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteToBeginningOfSoftLine,
|
|
|
|
|
|
|
|
// eDeleteToEndOfSoftLine indicates to remove characters between caret and
|
|
|
|
// next visual line break.
|
|
|
|
// This may be set even when Selection is not collapsed.
|
|
|
|
eDeleteToEndOfSoftLine,
|
|
|
|
|
2019-01-07 13:10:57 +03:00
|
|
|
// eDeleteByDrag indicates to remove selection by dragging the content
|
|
|
|
// to different place.
|
|
|
|
eDeleteByDrag,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eStartComposition indicates that user starts composition.
|
|
|
|
eStartComposition,
|
|
|
|
|
|
|
|
// eUpdateComposition indicates that user updates composition with
|
2018-11-01 11:07:04 +03:00
|
|
|
// new non-empty composition string and IME selections.
|
2018-10-30 12:59:33 +03:00
|
|
|
eUpdateComposition,
|
|
|
|
|
|
|
|
// eCommitComposition indicates that user commits composition.
|
|
|
|
eCommitComposition,
|
|
|
|
|
2018-11-01 11:07:04 +03:00
|
|
|
// eCancelComposition indicates that user cancels composition.
|
|
|
|
eCancelComposition,
|
|
|
|
|
|
|
|
// eDeleteByComposition indicates that user starts composition with
|
|
|
|
// empty string and there was selected content.
|
|
|
|
eDeleteByComposition,
|
2018-10-30 12:59:33 +03:00
|
|
|
|
|
|
|
// eUndo/eRedo indicate to undo/redo a transaction.
|
|
|
|
eUndo,
|
|
|
|
eRedo,
|
|
|
|
|
2018-10-30 12:57:52 +03:00
|
|
|
// eSetTextDirection indicates that setting text direction (LTR or RTL).
|
|
|
|
eSetTextDirection,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eCut indicates to delete selected content and copy it to the clipboard.
|
|
|
|
eCut,
|
|
|
|
|
|
|
|
// eCopy indicates to copy selected content to the clipboard.
|
|
|
|
eCopy,
|
|
|
|
|
|
|
|
// ePaste indicates to paste clipboard data.
|
|
|
|
ePaste,
|
|
|
|
|
2019-03-05 17:35:43 +03:00
|
|
|
// ePasteAsQuotation indicates to paste clipboard data as quotation.
|
|
|
|
ePasteAsQuotation,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eDrop indicates that user drops dragging item into the editor.
|
|
|
|
eDrop,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eIndent indicates that to indent selected line(s).
|
|
|
|
eIndent,
|
|
|
|
|
|
|
|
// eOutdent indicates that to outdent selected line(s).
|
|
|
|
eOutdent,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eReplaceText indicates to replace a part of range in editor with
|
|
|
|
// specific text. For example, user select a correct word in suggestions
|
|
|
|
// of spellchecker or a suggestion in list of autocomplete.
|
|
|
|
eReplaceText,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eInsertTableRowElement indicates to insert table rows (i.e., <tr>
|
|
|
|
// elements).
|
|
|
|
eInsertTableRowElement,
|
|
|
|
|
|
|
|
// eRemoveTableRowElement indicates to remove table row elements.
|
|
|
|
eRemoveTableRowElement,
|
|
|
|
|
|
|
|
// eInsertTableColumn indicates to insert cell elements to each row.
|
|
|
|
eInsertTableColumn,
|
|
|
|
|
|
|
|
// eRemoveTableColumn indicates to remove cell elements from each row.
|
|
|
|
eRemoveTableColumn,
|
|
|
|
|
Bug 970802 - part 5: Make `AutoEditActionDataSetter` created method dispatch "beforeinput" event r=smaug,m_kato
`AutoEditActionDataSetter` is created in the stack when editor's public method
is called and that guarantees lifetime of global objects in editor such as
editor itself, selection controller, etc.
The dispatcher of `beforeinput` event returns `NS_ERROR_EDITOR_ACTION_CANCELED`
if an event is actually dispatched but canceled. The reason why it's an error
is, editor code must stop handling anything when any methods return error.
So, returning an error code is reasonable in editor module. But when it's
filtered by `EditorBase::ToGenericNSResult()` at return statement of public
methods, it's converted to `NS_SUCCESS_DOM_NO_OPERATION`. This avoids throwing
new exception, but editor class users in C++ can distinguish whether each edit
action is canceled or handled. The reason why we should not throw new
exception from XPCOM API is, without taking care of each caller may break some
our UI (especially for avoiding to break comm-central). Therefore, this patch
does not make XPCOM methods return error code when `beforeinput` event is
canceled.
In most cases, immediately after creating `AutoEditActionDataSetter` is good
timing to dispatch `beforeinput` event since editor has not touched the DOM
yet. If `beforeinput` requires `data` or `dataTransfer`, methods need to
dispatch `beforeinput` event after that. Alhtough this is not a good thing
from point of view of consistency of the code. However, I have no better
idea.
Note 1: Our implementation does NOT conform to the spec about event order
between `keypress` and `beforeinput` (dispatching `beforeinput` event after
`keypress` event). However, we follow all other browsers' behavior so that it
must be safe and the spec should be updated for backward compatibility.
Spec issue: https://github.com/w3c/uievents/issues/220
Note 2: Our implementation does NOT conform to the spec about event order
between `compositionupdate` and `beforeinput`. Our behavior is same as
Safari, but different from Chrome. This might cause web-compat issues.
However, our behavior does make sense from point of view of consistency of
event spec. Additionally, at both `compositionupdate` and `beforeinput`,
composition string in editor has not been modified yet. Therefore, this
may not cause web-compat issues (and I hope so).
Spec issue: https://github.com/w3c/input-events/issues/49
Note that this patch makes editor detect bugs that `beforeinput` event hasn't
been handled yet when it dispatches `input` event or modifying `data` and
`dataTransfer` value are modified after dispatching `beforeinput` event with
`MOZ_ASSERT`s.
Differential Revision: https://phabricator.services.mozilla.com/D58127
--HG--
extra : moz-landing-system : lando
2020-01-14 10:18:51 +03:00
|
|
|
// eResizingElement indicates that user starts to resize or keep resizing
|
|
|
|
// with dragging a resizer which is provided by Gecko.
|
|
|
|
eResizingElement,
|
|
|
|
|
|
|
|
// eResizeElement indicates that user resizes an element size with finishing
|
|
|
|
// dragging a resizer which is provided by Gecko.
|
2018-10-30 13:00:17 +03:00
|
|
|
eResizeElement,
|
|
|
|
|
Bug 970802 - part 5: Make `AutoEditActionDataSetter` created method dispatch "beforeinput" event r=smaug,m_kato
`AutoEditActionDataSetter` is created in the stack when editor's public method
is called and that guarantees lifetime of global objects in editor such as
editor itself, selection controller, etc.
The dispatcher of `beforeinput` event returns `NS_ERROR_EDITOR_ACTION_CANCELED`
if an event is actually dispatched but canceled. The reason why it's an error
is, editor code must stop handling anything when any methods return error.
So, returning an error code is reasonable in editor module. But when it's
filtered by `EditorBase::ToGenericNSResult()` at return statement of public
methods, it's converted to `NS_SUCCESS_DOM_NO_OPERATION`. This avoids throwing
new exception, but editor class users in C++ can distinguish whether each edit
action is canceled or handled. The reason why we should not throw new
exception from XPCOM API is, without taking care of each caller may break some
our UI (especially for avoiding to break comm-central). Therefore, this patch
does not make XPCOM methods return error code when `beforeinput` event is
canceled.
In most cases, immediately after creating `AutoEditActionDataSetter` is good
timing to dispatch `beforeinput` event since editor has not touched the DOM
yet. If `beforeinput` requires `data` or `dataTransfer`, methods need to
dispatch `beforeinput` event after that. Alhtough this is not a good thing
from point of view of consistency of the code. However, I have no better
idea.
Note 1: Our implementation does NOT conform to the spec about event order
between `keypress` and `beforeinput` (dispatching `beforeinput` event after
`keypress` event). However, we follow all other browsers' behavior so that it
must be safe and the spec should be updated for backward compatibility.
Spec issue: https://github.com/w3c/uievents/issues/220
Note 2: Our implementation does NOT conform to the spec about event order
between `compositionupdate` and `beforeinput`. Our behavior is same as
Safari, but different from Chrome. This might cause web-compat issues.
However, our behavior does make sense from point of view of consistency of
event spec. Additionally, at both `compositionupdate` and `beforeinput`,
composition string in editor has not been modified yet. Therefore, this
may not cause web-compat issues (and I hope so).
Spec issue: https://github.com/w3c/input-events/issues/49
Note that this patch makes editor detect bugs that `beforeinput` event hasn't
been handled yet when it dispatches `input` event or modifying `data` and
`dataTransfer` value are modified after dispatching `beforeinput` event with
`MOZ_ASSERT`s.
Differential Revision: https://phabricator.services.mozilla.com/D58127
--HG--
extra : moz-landing-system : lando
2020-01-14 10:18:51 +03:00
|
|
|
// eMovingElement indicates that user starts to move or keep moving an
|
|
|
|
// element with grabber which is provided by Gecko.
|
|
|
|
eMovingElement,
|
|
|
|
|
|
|
|
// eMoveElement indicates that user finishes moving an element with grabber
|
|
|
|
// which is provided by Gecko.
|
2018-10-30 13:00:17 +03:00
|
|
|
eMoveElement,
|
|
|
|
|
2018-10-30 12:57:52 +03:00
|
|
|
// The following edit actions are not user's operation. They are caused
|
2018-10-30 12:59:33 +03:00
|
|
|
// by if UI does something or web apps does something with JS.
|
2018-10-30 12:57:52 +03:00
|
|
|
|
|
|
|
// eUnknown indicates some special edit actions, e.g., batching of some
|
|
|
|
// nsI*Editor method calls. This shouldn't be set while handling a user
|
|
|
|
// operation.
|
|
|
|
eUnknown,
|
|
|
|
|
|
|
|
// eSetAttribute indicates to set attribute value of an element node.
|
|
|
|
eSetAttribute,
|
|
|
|
|
|
|
|
// eRemoveAttribute indicates to remove attribute from an element node.
|
|
|
|
eRemoveAttribute,
|
|
|
|
|
|
|
|
// eInsertNode indicates to insert a node into the tree.
|
|
|
|
eInsertNode,
|
|
|
|
|
|
|
|
// eDeleteNode indicates to remove a node form the tree.
|
|
|
|
eRemoveNode,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eInsertBlockElement indicates to insert a block-level element like <div>,
|
|
|
|
// <pre>, <li>, <dd> etc.
|
|
|
|
eInsertBlockElement,
|
|
|
|
|
|
|
|
// eInsertHorizontalRuleElement indicates to insert a <hr> element.
|
|
|
|
eInsertHorizontalRuleElement,
|
|
|
|
|
|
|
|
// eInsertLinkElement indicates to insert an anchor element which has
|
|
|
|
// href attribute.
|
|
|
|
eInsertLinkElement,
|
|
|
|
|
2018-11-12 11:13:58 +03:00
|
|
|
// eInsertUnorderedListElement and eInsertOrderedListElement indicate to
|
|
|
|
// insert <ul> or <ol> element.
|
2018-10-30 13:00:17 +03:00
|
|
|
eInsertUnorderedListElement,
|
|
|
|
eInsertOrderedListElement,
|
|
|
|
|
2018-11-12 11:13:58 +03:00
|
|
|
// eRemoveUnorderedListElement and eRemoveOrderedListElement indicate to
|
|
|
|
// remove <ul> or <ol> element.
|
|
|
|
eRemoveUnorderedListElement,
|
|
|
|
eRemoveOrderedListElement,
|
|
|
|
|
|
|
|
// eRemoveListElement indicates to remove <ul>, <ol> and/or <dl> element.
|
2018-10-30 13:00:17 +03:00
|
|
|
eRemoveListElement,
|
|
|
|
|
|
|
|
// eInsertBlockquoteElement indicates to insert a <blockquote> element.
|
|
|
|
eInsertBlockquoteElement,
|
|
|
|
|
|
|
|
// eNormalizeTable indicates to normalize table. E.g., if a row does
|
|
|
|
// not have enough number of cells, inserts empty cells.
|
|
|
|
eNormalizeTable,
|
|
|
|
|
|
|
|
// eRemoveTableElement indicates to remove <table> element.
|
|
|
|
eRemoveTableElement,
|
|
|
|
|
|
|
|
// eRemoveTableCellContents indicates to remove any children in a table
|
|
|
|
// cell element.
|
|
|
|
eDeleteTableCellContents,
|
|
|
|
|
|
|
|
// eInsertTableCellElement indicates to insert table cell elements (i.e.,
|
|
|
|
// <td> or <th>).
|
|
|
|
eInsertTableCellElement,
|
|
|
|
|
|
|
|
// eRemoveTableCellEelement indicates to remove table cell elements.
|
|
|
|
eRemoveTableCellElement,
|
|
|
|
|
|
|
|
// eJoinTableCellElements indicates to join table cell elements.
|
|
|
|
eJoinTableCellElements,
|
|
|
|
|
|
|
|
// eSplitTableCellElement indicates to split table cell elements.
|
|
|
|
eSplitTableCellElement,
|
|
|
|
|
|
|
|
// eSetTableCellElementType indicates to set table cell element type to
|
|
|
|
// <td> or <th>.
|
|
|
|
eSetTableCellElementType,
|
|
|
|
|
2022-05-20 10:39:51 +03:00
|
|
|
// Those edit actions are mapped to the methods in nsITableEditor which
|
|
|
|
// access table layout information.
|
|
|
|
eSelectTableCell,
|
|
|
|
eSelectTableRow,
|
|
|
|
eSelectTableColumn,
|
|
|
|
eSelectTable,
|
|
|
|
eSelectAllTableCells,
|
|
|
|
eGetCellIndexes,
|
|
|
|
eGetTableSize,
|
|
|
|
eGetCellAt,
|
|
|
|
eGetCellDataAt,
|
|
|
|
eGetFirstRow,
|
|
|
|
eGetSelectedOrParentTableElement,
|
|
|
|
eGetSelectedCellsType,
|
|
|
|
eGetFirstSelectedCellInTable,
|
|
|
|
eGetSelectedCells,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eSetInlineStyleProperty indicates to set CSS another inline style property
|
|
|
|
// which is not defined below.
|
|
|
|
eSetInlineStyleProperty,
|
|
|
|
|
|
|
|
// eRemoveInlineStyleProperty indicates to remove a CSS text property which
|
|
|
|
// is not defined below.
|
|
|
|
eRemoveInlineStyleProperty,
|
|
|
|
|
|
|
|
// <b> or font-weight.
|
|
|
|
eSetFontWeightProperty,
|
|
|
|
eRemoveFontWeightProperty,
|
|
|
|
|
|
|
|
// <i> or text-style: italic/oblique.
|
|
|
|
eSetTextStyleProperty,
|
|
|
|
eRemoveTextStyleProperty,
|
|
|
|
|
|
|
|
// <u> or text-decoration: underline.
|
|
|
|
eSetTextDecorationPropertyUnderline,
|
|
|
|
eRemoveTextDecorationPropertyUnderline,
|
|
|
|
|
|
|
|
// <strike> or text-decoration: line-through.
|
|
|
|
eSetTextDecorationPropertyLineThrough,
|
|
|
|
eRemoveTextDecorationPropertyLineThrough,
|
|
|
|
|
|
|
|
// <sup> or text-align: super.
|
|
|
|
eSetVerticalAlignPropertySuper,
|
|
|
|
eRemoveVerticalAlignPropertySuper,
|
|
|
|
|
|
|
|
// <sub> or text-align: sub.
|
|
|
|
eSetVerticalAlignPropertySub,
|
|
|
|
eRemoveVerticalAlignPropertySub,
|
|
|
|
|
|
|
|
// <font face="foo"> or font-family.
|
|
|
|
eSetFontFamilyProperty,
|
|
|
|
eRemoveFontFamilyProperty,
|
|
|
|
|
|
|
|
// <font color="foo"> or color.
|
|
|
|
eSetColorProperty,
|
|
|
|
eRemoveColorProperty,
|
|
|
|
|
|
|
|
// <span style="background-color: foo">
|
|
|
|
eSetBackgroundColorPropertyInline,
|
|
|
|
eRemoveBackgroundColorPropertyInline,
|
|
|
|
|
|
|
|
// eRemoveAllInlineStyleProperties indicates to remove all CSS inline
|
|
|
|
// style properties.
|
|
|
|
eRemoveAllInlineStyleProperties,
|
|
|
|
|
|
|
|
// eIncrementFontSize indicates to increment font-size.
|
|
|
|
eIncrementFontSize,
|
|
|
|
|
|
|
|
// eDecrementFontSize indicates to decrement font-size.
|
|
|
|
eDecrementFontSize,
|
|
|
|
|
|
|
|
// eSetAlignment indicates to set alignment of selected content but different
|
|
|
|
// from the following.
|
|
|
|
eSetAlignment,
|
|
|
|
|
|
|
|
// eAlign* and eJustify indicates to align contents in block with left
|
|
|
|
// edge, right edge, center or justify the text.
|
|
|
|
eAlignLeft,
|
|
|
|
eAlignRight,
|
|
|
|
eAlignCenter,
|
|
|
|
eJustify,
|
|
|
|
|
|
|
|
// eSetBackgroundColor indicates to set background color.
|
|
|
|
eSetBackgroundColor,
|
|
|
|
|
|
|
|
// eSetPositionToAbsoluteOrStatic indicates to set position property value
|
|
|
|
// to "absolute" or "static".
|
|
|
|
eSetPositionToAbsoluteOrStatic,
|
|
|
|
|
|
|
|
// eIncreaseOrDecreaseZIndex indicates to change z-index of an element.
|
|
|
|
eIncreaseOrDecreaseZIndex,
|
|
|
|
|
|
|
|
// eEnableOrDisableCSS indicates to enable or disable CSS mode of HTMLEditor.
|
|
|
|
eEnableOrDisableCSS,
|
|
|
|
|
|
|
|
// eEnableOrDisableAbsolutePositionEditor indicates to enable or disable
|
|
|
|
// absolute positioned element editing UI.
|
|
|
|
eEnableOrDisableAbsolutePositionEditor,
|
|
|
|
|
|
|
|
// eEnableOrDisableResizer indicates to enable or disable resizers of
|
|
|
|
// <img>, <table> and absolutely positioned element.
|
|
|
|
eEnableOrDisableResizer,
|
|
|
|
|
|
|
|
// eEnableOrDisableInlineTableEditingUI indicates to enable or disable
|
|
|
|
// inline table editing UI.
|
|
|
|
eEnableOrDisableInlineTableEditingUI,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eSetCharacterSet indicates to set character-set of the document.
|
|
|
|
eSetCharacterSet,
|
|
|
|
|
|
|
|
// eSetWrapWidth indicates to set wrap width.
|
|
|
|
eSetWrapWidth,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eRewrap indicates to rewrap for current wrap width.
|
|
|
|
eRewrap,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eSetText indicates to set new text of TextEditor, e.g., setting
|
|
|
|
// HTMLInputElement.value.
|
|
|
|
eSetText,
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
// eSetHTML indicates to set body of HTMLEditor.
|
|
|
|
eSetHTML,
|
|
|
|
|
|
|
|
// eInsertHTML indicates to insert HTML source code.
|
|
|
|
eInsertHTML,
|
|
|
|
|
2018-10-30 12:59:33 +03:00
|
|
|
// eHidePassword indicates that editor hides password with mask characters.
|
|
|
|
eHidePassword,
|
2018-10-30 13:00:17 +03:00
|
|
|
|
2019-08-02 08:44:40 +03:00
|
|
|
// eCreatePaddingBRElementForEmptyEditor indicates that editor wants to
|
|
|
|
// create a padding <br> element for empty editor after it modifies its
|
|
|
|
// content.
|
|
|
|
eCreatePaddingBRElementForEmptyEditor,
|
2018-10-30 12:56:41 +03:00
|
|
|
};
|
|
|
|
|
2018-01-12 13:01:04 +03:00
|
|
|
// This is int32_t instead of int16_t because nsIInlineSpellChecker.idl's
|
|
|
|
// spellCheckAfterEditorChange is defined to take it as a long.
|
|
|
|
// TODO: Make each name eFoo and investigate whether the numeric values
|
|
|
|
// still have some meaning.
|
Bug 1463985 - part 1: Rename EditAction to EditSubAction and related stuff r=m_kato
When we implement InputEvent.inputType, we need to set a stack class to record
which edit action is currently handled. However, currently, we call smaller
jobs as edit action. For example, when user types a character at selecting
some characters, then, EditAction::deleteSelection is performed first, then,
EditAction::insertText is performed. However, for the InputEvent.inputType,
we need inserText information. So, for making new enum EditAction, we need
to rename current EditAction to EditSubAction.
And also this renames related stuff:
EditorBase::mIsInEditAction -> EditorBase::mIsInEditSubAction
EditorBase::IsInEditAction() -> EditorBase::IsInEditSubAction()
EditorBase::mAction -> EditorBase::mTopLevelEditSubAction
TextEditRules::mTheAction -> TextEditRules::mTopLevelEditSubAction
EditorBase::StartOperation() ->
EditorBase::OnStartToHandleTopLevelEditSubAction()
EditorBase::EndOperation() ->
EditorBase::OnEndHandlingTopLevelEditSubAction()
AutoRules -> AutoTopLevelEditSubActionNotifier
RulesInfo -> EditSubActionInfo
MozReview-Commit-ID: cvSkPUjFm1
--HG--
extra : rebase_source : baf527a3e353b7a8ebe9a46be2243b059c500234
2018-05-28 14:12:34 +03:00
|
|
|
enum class EditSubAction : int32_t {
|
2018-05-28 14:29:34 +03:00
|
|
|
// eNone indicates not edit sub-action is being handled. This is useful
|
|
|
|
// of initial value of member variables.
|
2018-05-28 18:06:24 +03:00
|
|
|
eNone,
|
2018-05-28 14:36:06 +03:00
|
|
|
|
|
|
|
// eUndo and eRedo indicate entire actions of undo/redo operation.
|
|
|
|
eUndo,
|
|
|
|
eRedo,
|
|
|
|
|
2018-05-28 15:16:44 +03:00
|
|
|
// eInsertNode indicates to insert a new node into the DOM tree.
|
|
|
|
eInsertNode,
|
|
|
|
|
|
|
|
// eCreateNode indicates to create a new node and insert it into the DOM tree.
|
|
|
|
eCreateNode,
|
|
|
|
|
2018-05-28 15:19:34 +03:00
|
|
|
// eDeleteNode indicates to remove a node from the DOM tree.
|
|
|
|
eDeleteNode,
|
|
|
|
|
Bug 1766355 - part 1: Add `MoveNodeTransaction` to handle delete node and insert node in a transaction class instance r=m_kato
Creating both `DeleteNodeTransaction` and `InsertNodeTransaction` wastes
memory. They should be done in an instance instead.
Fortunately, no edit action listener checks whether the deleted node is still
in the composed document or not, etc. Therefore, we can simply notify them of
both deletion and insertion which were done in
`EditorBase::InsertNodeWithTransaction` and
`EditorBase::DeleteNodeWithTransaction`. Note that previously, the range
updater needs to ignore the notifications from them while the node is being
moved. However, it does not require anymore. Therefore, this patch makes it
stop locking, and that would fix minor problem in the case of legacy mutation
event listeners run another edit action.
On the other hand, this changes some edge cases handling of
`MoveNodeWithTransaction` which are detected by the WPT. According to the
previous result of applying this patch, `nsINode::InsertBefore` fails and that
leads some errors at updating the changed range. I guess that the cause is
that there is some bugs at updating insertion point after deleting the node from
the DOM tree around here:
https://searchfox.org/mozilla-central/rev/0ffae75b690219858e5a45a39f8759a8aee7b9a2/editor/libeditor/HTMLEditor.cpp#5058-5071
However, it's safely fixed by the new code which does not remove the node from
the DOM tree explicitly. So, I think that it's safe to accept this behavior
change for web apps in the wild.
Differential Revision: https://phabricator.services.mozilla.com/D146397
2022-05-20 11:28:08 +03:00
|
|
|
// eMoveNode indicates to move a node connected in the DOM tree to different
|
|
|
|
// place.
|
|
|
|
eMoveNode,
|
|
|
|
|
2018-05-28 15:25:20 +03:00
|
|
|
// eSplitNode indicates to split a node to 2 nodes.
|
|
|
|
eSplitNode,
|
|
|
|
|
|
|
|
// eJoinNodes indicates to join 2 nodes.
|
|
|
|
eJoinNodes,
|
2018-01-12 13:01:04 +03:00
|
|
|
|
2018-05-28 15:29:14 +03:00
|
|
|
// eDeleteText indicates to delete some characters form a text node.
|
|
|
|
eDeleteText,
|
2018-01-12 13:01:04 +03:00
|
|
|
|
2018-05-28 15:36:47 +03:00
|
|
|
// eInsertText indicates to insert some characters.
|
|
|
|
eInsertText,
|
|
|
|
|
2018-05-28 15:44:39 +03:00
|
|
|
// eInsertTextComingFromIME indicates to insert or update composition string
|
|
|
|
// with new text which is new composition string or commit string.
|
|
|
|
eInsertTextComingFromIME,
|
|
|
|
|
2018-05-28 15:49:56 +03:00
|
|
|
// eDeleteSelectedContent indicates to remove selected content.
|
|
|
|
eDeleteSelectedContent,
|
|
|
|
|
2018-05-28 16:05:10 +03:00
|
|
|
// eSetTextProperty indicates to set a style from text.
|
|
|
|
eSetTextProperty,
|
|
|
|
|
|
|
|
// eRemoveTextProperty indicates to remove a style from text.
|
|
|
|
eRemoveTextProperty,
|
|
|
|
|
2018-05-28 17:40:45 +03:00
|
|
|
// eRemoveAllTextProperties indicate to remove all styles from text.
|
|
|
|
eRemoveAllTextProperties,
|
|
|
|
|
2018-05-28 16:09:55 +03:00
|
|
|
// eComputeTextToOutput indicates to compute the editor value as plain text
|
|
|
|
// or something requested format.
|
|
|
|
eComputeTextToOutput,
|
|
|
|
|
2018-05-28 16:20:43 +03:00
|
|
|
// eSetText indicates to set editor value to new value.
|
|
|
|
eSetText,
|
2018-01-12 13:01:04 +03:00
|
|
|
|
2018-11-03 14:22:13 +03:00
|
|
|
// eInsertLineBreak indicates to insert a line break, <br> or \n to break
|
|
|
|
// current line.
|
|
|
|
eInsertLineBreak,
|
|
|
|
|
2018-05-28 16:27:47 +03:00
|
|
|
// eInsertParagraphSeparator indicates to insert paragraph separator, <br> or
|
2018-11-03 14:22:13 +03:00
|
|
|
// \n at least to break current line in HTMLEditor.
|
2018-05-28 16:27:47 +03:00
|
|
|
eInsertParagraphSeparator,
|
|
|
|
|
2018-05-28 16:36:19 +03:00
|
|
|
// eCreateOrChangeList indicates to create new list or change existing list
|
|
|
|
// type.
|
|
|
|
eCreateOrChangeList,
|
|
|
|
|
2018-05-28 16:42:31 +03:00
|
|
|
// eIndent and eOutdent indicates to indent or outdent the target with
|
|
|
|
// using <blockquote>, <ul>, <ol> or just margin of start edge.
|
|
|
|
eIndent,
|
|
|
|
eOutdent,
|
|
|
|
|
2018-05-28 16:51:31 +03:00
|
|
|
// eSetOrClearAlignment aligns content or clears alignment with align
|
|
|
|
// attribute or text-align.
|
|
|
|
eSetOrClearAlignment,
|
|
|
|
|
2018-05-28 17:01:19 +03:00
|
|
|
// eCreateOrRemoveBlock creates new block or removes existing block and
|
|
|
|
// move its descendants to where the block was.
|
|
|
|
eCreateOrRemoveBlock,
|
|
|
|
|
2019-08-25 07:20:34 +03:00
|
|
|
// eMergeBlockContents is not an actual sub-action, but this is used by
|
|
|
|
// HTMLEditor::MoveBlock() to request special handling in
|
2022-06-21 04:07:10 +03:00
|
|
|
// HTMLEditor::MaybeSplitElementsAtEveryBRElement().
|
2019-08-25 07:20:34 +03:00
|
|
|
eMergeBlockContents,
|
|
|
|
|
2018-05-28 17:05:00 +03:00
|
|
|
// eRemoveList removes specific type of list but keep its content.
|
|
|
|
eRemoveList,
|
|
|
|
|
2019-09-03 12:32:17 +03:00
|
|
|
// eCreateOrChangeDefinitionListItem indicates to format current hard line(s)
|
|
|
|
// `<dd>` or `<dt>`. This may cause creating or changing existing list
|
|
|
|
// element to new `<dl>` element.
|
|
|
|
eCreateOrChangeDefinitionListItem,
|
2018-05-28 17:08:50 +03:00
|
|
|
|
2018-05-28 17:13:41 +03:00
|
|
|
// eInsertElement indicates to insert an element.
|
|
|
|
eInsertElement,
|
|
|
|
|
2018-05-28 17:22:19 +03:00
|
|
|
// eInsertQuotation indicates to insert an element and make it "quoted text".
|
|
|
|
eInsertQuotation,
|
2018-01-12 13:01:04 +03:00
|
|
|
|
2019-08-09 11:25:37 +03:00
|
|
|
// eInsertQuotedText indicates to insert text which has already been quoted.
|
|
|
|
eInsertQuotedText,
|
|
|
|
|
2018-05-28 17:37:12 +03:00
|
|
|
// ePasteHTMLContent indicates to paste HTML content in clipboard.
|
|
|
|
ePasteHTMLContent,
|
|
|
|
|
|
|
|
// eInsertHTMLSource indicates to create a document fragment from given HTML
|
|
|
|
// source and insert into the DOM tree. So, this is similar to innerHTML.
|
|
|
|
eInsertHTMLSource,
|
|
|
|
|
2018-05-28 18:06:24 +03:00
|
|
|
// eReplaceHeadWithHTMLSource indicates to create a document fragment from
|
|
|
|
// given HTML source and replace content of <head> with it.
|
|
|
|
eReplaceHeadWithHTMLSource,
|
|
|
|
|
|
|
|
// eSetPositionToAbsolute and eSetPositionToStatic indicates to set position
|
2018-05-28 17:48:39 +03:00
|
|
|
// property to absolute or static.
|
|
|
|
eSetPositionToAbsolute,
|
|
|
|
eSetPositionToStatic,
|
|
|
|
|
2018-05-28 17:52:16 +03:00
|
|
|
// eDecreaseZIndex and eIncreaseZIndex indicate to decrease and increase
|
|
|
|
// z-index value.
|
|
|
|
eDecreaseZIndex,
|
|
|
|
eIncreaseZIndex,
|
2018-05-28 18:06:24 +03:00
|
|
|
|
2019-08-02 08:44:40 +03:00
|
|
|
// eCreatePaddingBRElementForEmptyEditor indicates to create a padding <br>
|
|
|
|
// element for empty editor.
|
|
|
|
eCreatePaddingBRElementForEmptyEditor,
|
2018-01-12 13:01:04 +03:00
|
|
|
};
|
|
|
|
|
2022-05-20 10:39:51 +03:00
|
|
|
// You can use this macro as:
|
|
|
|
// case NS_EDIT_ACTION_CASES_ACCESSING_TABLE_DATA_WITHOUT_EDITING:
|
|
|
|
// clang-format off
|
|
|
|
#define NS_EDIT_ACTION_CASES_ACCESSING_TABLE_DATA_WITHOUT_EDITING \
|
|
|
|
mozilla::EditAction::eSelectTableCell: \
|
|
|
|
case mozilla::EditAction::eSelectTableRow: \
|
|
|
|
case mozilla::EditAction::eSelectTableColumn: \
|
|
|
|
case mozilla::EditAction::eSelectTable: \
|
|
|
|
case mozilla::EditAction::eSelectAllTableCells: \
|
|
|
|
case mozilla::EditAction::eGetCellIndexes: \
|
|
|
|
case mozilla::EditAction::eGetTableSize: \
|
|
|
|
case mozilla::EditAction::eGetCellAt: \
|
|
|
|
case mozilla::EditAction::eGetCellDataAt: \
|
|
|
|
case mozilla::EditAction::eGetFirstRow: \
|
|
|
|
case mozilla::EditAction::eGetSelectedOrParentTableElement: \
|
|
|
|
case mozilla::EditAction::eGetSelectedCellsType: \
|
|
|
|
case mozilla::EditAction::eGetFirstSelectedCellInTable: \
|
|
|
|
case mozilla::EditAction::eGetSelectedCells
|
|
|
|
// clang-format on
|
|
|
|
|
2019-01-07 13:10:57 +03:00
|
|
|
inline EditorInputType ToInputType(EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
case EditAction::eInsertText:
|
|
|
|
return EditorInputType::eInsertText;
|
|
|
|
case EditAction::eReplaceText:
|
|
|
|
return EditorInputType::eInsertReplacementText;
|
|
|
|
case EditAction::eInsertLineBreak:
|
|
|
|
return EditorInputType::eInsertLineBreak;
|
|
|
|
case EditAction::eInsertParagraphSeparator:
|
|
|
|
return EditorInputType::eInsertParagraph;
|
|
|
|
case EditAction::eInsertOrderedListElement:
|
|
|
|
case EditAction::eRemoveOrderedListElement:
|
|
|
|
return EditorInputType::eInsertOrderedList;
|
|
|
|
case EditAction::eInsertUnorderedListElement:
|
|
|
|
case EditAction::eRemoveUnorderedListElement:
|
|
|
|
return EditorInputType::eInsertUnorderedList;
|
|
|
|
case EditAction::eInsertHorizontalRuleElement:
|
|
|
|
return EditorInputType::eInsertHorizontalRule;
|
|
|
|
case EditAction::eDrop:
|
|
|
|
return EditorInputType::eInsertFromDrop;
|
|
|
|
case EditAction::ePaste:
|
|
|
|
return EditorInputType::eInsertFromPaste;
|
2019-03-05 17:35:43 +03:00
|
|
|
case EditAction::ePasteAsQuotation:
|
|
|
|
return EditorInputType::eInsertFromPasteAsQuotation;
|
2019-01-07 13:10:57 +03:00
|
|
|
case EditAction::eUpdateComposition:
|
|
|
|
return EditorInputType::eInsertCompositionText;
|
|
|
|
case EditAction::eCommitComposition:
|
|
|
|
if (StaticPrefs::dom_input_events_conform_to_level_1()) {
|
|
|
|
return EditorInputType::eInsertCompositionText;
|
|
|
|
}
|
|
|
|
return EditorInputType::eInsertFromComposition;
|
|
|
|
case EditAction::eCancelComposition:
|
|
|
|
if (StaticPrefs::dom_input_events_conform_to_level_1()) {
|
|
|
|
return EditorInputType::eInsertCompositionText;
|
|
|
|
}
|
|
|
|
return EditorInputType::eDeleteCompositionText;
|
|
|
|
case EditAction::eDeleteByComposition:
|
|
|
|
if (StaticPrefs::dom_input_events_conform_to_level_1()) {
|
|
|
|
// XXX Or EditorInputType::eDeleteContent? I don't know which IME may
|
|
|
|
// causes this situation.
|
|
|
|
return EditorInputType::eInsertCompositionText;
|
|
|
|
}
|
|
|
|
return EditorInputType::eDeleteByComposition;
|
|
|
|
case EditAction::eInsertLinkElement:
|
|
|
|
return EditorInputType::eInsertLink;
|
|
|
|
case EditAction::eDeleteWordBackward:
|
|
|
|
return EditorInputType::eDeleteWordBackward;
|
|
|
|
case EditAction::eDeleteWordForward:
|
|
|
|
return EditorInputType::eDeleteWordForward;
|
|
|
|
case EditAction::eDeleteToBeginningOfSoftLine:
|
|
|
|
return EditorInputType::eDeleteSoftLineBackward;
|
|
|
|
case EditAction::eDeleteToEndOfSoftLine:
|
|
|
|
return EditorInputType::eDeleteSoftLineForward;
|
|
|
|
case EditAction::eDeleteByDrag:
|
|
|
|
return EditorInputType::eDeleteByDrag;
|
|
|
|
case EditAction::eCut:
|
|
|
|
return EditorInputType::eDeleteByCut;
|
|
|
|
case EditAction::eDeleteSelection:
|
|
|
|
case EditAction::eRemoveTableRowElement:
|
|
|
|
case EditAction::eRemoveTableColumn:
|
|
|
|
case EditAction::eRemoveTableElement:
|
|
|
|
case EditAction::eDeleteTableCellContents:
|
|
|
|
case EditAction::eRemoveTableCellElement:
|
|
|
|
return EditorInputType::eDeleteContent;
|
|
|
|
case EditAction::eDeleteBackward:
|
|
|
|
return EditorInputType::eDeleteContentBackward;
|
|
|
|
case EditAction::eDeleteForward:
|
|
|
|
return EditorInputType::eDeleteContentForward;
|
|
|
|
case EditAction::eUndo:
|
|
|
|
return EditorInputType::eHistoryUndo;
|
|
|
|
case EditAction::eRedo:
|
|
|
|
return EditorInputType::eHistoryRedo;
|
|
|
|
case EditAction::eSetFontWeightProperty:
|
|
|
|
case EditAction::eRemoveFontWeightProperty:
|
|
|
|
return EditorInputType::eFormatBold;
|
|
|
|
case EditAction::eSetTextStyleProperty:
|
|
|
|
case EditAction::eRemoveTextStyleProperty:
|
|
|
|
return EditorInputType::eFormatItalic;
|
|
|
|
case EditAction::eSetTextDecorationPropertyUnderline:
|
|
|
|
case EditAction::eRemoveTextDecorationPropertyUnderline:
|
|
|
|
return EditorInputType::eFormatUnderline;
|
|
|
|
case EditAction::eSetTextDecorationPropertyLineThrough:
|
|
|
|
case EditAction::eRemoveTextDecorationPropertyLineThrough:
|
|
|
|
return EditorInputType::eFormatStrikeThrough;
|
|
|
|
case EditAction::eSetVerticalAlignPropertySuper:
|
|
|
|
case EditAction::eRemoveVerticalAlignPropertySuper:
|
|
|
|
return EditorInputType::eFormatSuperscript;
|
|
|
|
case EditAction::eSetVerticalAlignPropertySub:
|
|
|
|
case EditAction::eRemoveVerticalAlignPropertySub:
|
|
|
|
return EditorInputType::eFormatSubscript;
|
|
|
|
case EditAction::eJustify:
|
|
|
|
return EditorInputType::eFormatJustifyFull;
|
|
|
|
case EditAction::eAlignCenter:
|
|
|
|
return EditorInputType::eFormatJustifyCenter;
|
|
|
|
case EditAction::eAlignRight:
|
|
|
|
return EditorInputType::eFormatJustifyRight;
|
|
|
|
case EditAction::eAlignLeft:
|
|
|
|
return EditorInputType::eFormatJustifyLeft;
|
|
|
|
case EditAction::eIndent:
|
|
|
|
return EditorInputType::eFormatIndent;
|
|
|
|
case EditAction::eOutdent:
|
|
|
|
return EditorInputType::eFormatOutdent;
|
|
|
|
case EditAction::eRemoveAllInlineStyleProperties:
|
|
|
|
return EditorInputType::eFormatRemove;
|
|
|
|
case EditAction::eSetTextDirection:
|
|
|
|
return EditorInputType::eFormatSetBlockTextDirection;
|
|
|
|
case EditAction::eSetBackgroundColorPropertyInline:
|
|
|
|
case EditAction::eRemoveBackgroundColorPropertyInline:
|
|
|
|
return EditorInputType::eFormatBackColor;
|
|
|
|
case EditAction::eSetColorProperty:
|
|
|
|
case EditAction::eRemoveColorProperty:
|
|
|
|
return EditorInputType::eFormatFontColor;
|
|
|
|
case EditAction::eSetFontFamilyProperty:
|
|
|
|
case EditAction::eRemoveFontFamilyProperty:
|
|
|
|
return EditorInputType::eFormatFontName;
|
|
|
|
default:
|
|
|
|
return EditorInputType::eUnknown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-27 07:49:41 +03:00
|
|
|
inline bool MayEditActionDeleteAroundCollapsedSelection(
|
|
|
|
const EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
case EditAction::eDeleteSelection:
|
|
|
|
case EditAction::eDeleteBackward:
|
|
|
|
case EditAction::eDeleteForward:
|
|
|
|
case EditAction::eDeleteWordBackward:
|
|
|
|
case EditAction::eDeleteWordForward:
|
|
|
|
case EditAction::eDeleteToBeginningOfSoftLine:
|
|
|
|
case EditAction::eDeleteToEndOfSoftLine:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-20 10:39:51 +03:00
|
|
|
inline bool IsEditActionInOrderToEditSomething(const EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
case EditAction::eNotEditing:
|
|
|
|
case NS_EDIT_ACTION_CASES_ACCESSING_TABLE_DATA_WITHOUT_EDITING:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-27 07:49:41 +03:00
|
|
|
inline bool IsEditActionTableEditing(const EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
case EditAction::eInsertTableRowElement:
|
|
|
|
case EditAction::eRemoveTableRowElement:
|
|
|
|
case EditAction::eInsertTableColumn:
|
|
|
|
case EditAction::eRemoveTableColumn:
|
|
|
|
case EditAction::eRemoveTableElement:
|
|
|
|
case EditAction::eRemoveTableCellElement:
|
|
|
|
case EditAction::eDeleteTableCellContents:
|
|
|
|
case EditAction::eInsertTableCellElement:
|
|
|
|
case EditAction::eJoinTableCellElements:
|
|
|
|
case EditAction::eSplitTableCellElement:
|
|
|
|
case EditAction::eSetTableCellElementType:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool MayEditActionDeleteSelection(const EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
case EditAction::eNone:
|
|
|
|
case EditAction::eNotEditing:
|
2021-04-08 11:51:41 +03:00
|
|
|
case EditAction::eInitializing:
|
2022-05-20 10:39:51 +03:00
|
|
|
case NS_EDIT_ACTION_CASES_ACCESSING_TABLE_DATA_WITHOUT_EDITING:
|
2020-09-27 07:49:41 +03:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// EditActions modifying around selection.
|
|
|
|
case EditAction::eInsertText:
|
|
|
|
case EditAction::eInsertParagraphSeparator:
|
|
|
|
case EditAction::eInsertLineBreak:
|
|
|
|
case EditAction::eDeleteSelection:
|
|
|
|
case EditAction::eDeleteBackward:
|
|
|
|
case EditAction::eDeleteForward:
|
|
|
|
case EditAction::eDeleteWordBackward:
|
|
|
|
case EditAction::eDeleteWordForward:
|
|
|
|
case EditAction::eDeleteToBeginningOfSoftLine:
|
|
|
|
case EditAction::eDeleteToEndOfSoftLine:
|
|
|
|
case EditAction::eDeleteByDrag:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case EditAction::eStartComposition:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case EditAction::eUpdateComposition:
|
|
|
|
case EditAction::eCommitComposition:
|
|
|
|
case EditAction::eCancelComposition:
|
|
|
|
case EditAction::eDeleteByComposition:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case EditAction::eUndo:
|
|
|
|
case EditAction::eRedo:
|
|
|
|
case EditAction::eSetTextDirection:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case EditAction::eCut:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case EditAction::eCopy:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case EditAction::ePaste:
|
|
|
|
case EditAction::ePasteAsQuotation:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case EditAction::eDrop:
|
|
|
|
return false; // Not deleting selection at drop.
|
|
|
|
|
|
|
|
// EditActions changing format around selection.
|
|
|
|
case EditAction::eIndent:
|
|
|
|
case EditAction::eOutdent:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// EditActions inserting or deleting something at specified position.
|
|
|
|
case EditAction::eInsertTableRowElement:
|
|
|
|
case EditAction::eRemoveTableRowElement:
|
|
|
|
case EditAction::eInsertTableColumn:
|
|
|
|
case EditAction::eRemoveTableColumn:
|
|
|
|
case EditAction::eResizingElement:
|
|
|
|
case EditAction::eResizeElement:
|
|
|
|
case EditAction::eMovingElement:
|
|
|
|
case EditAction::eMoveElement:
|
|
|
|
case EditAction::eUnknown:
|
|
|
|
case EditAction::eSetAttribute:
|
|
|
|
case EditAction::eRemoveAttribute:
|
|
|
|
case EditAction::eRemoveNode:
|
|
|
|
case EditAction::eInsertBlockElement:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// EditActions inserting someting around selection or replacing selection
|
|
|
|
// with something.
|
|
|
|
case EditAction::eReplaceText:
|
|
|
|
case EditAction::eInsertNode:
|
|
|
|
case EditAction::eInsertHorizontalRuleElement:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// EditActions chaning format around selection or inserting or deleting
|
|
|
|
// something at specific position.
|
|
|
|
case EditAction::eInsertLinkElement:
|
|
|
|
case EditAction::eInsertUnorderedListElement:
|
|
|
|
case EditAction::eInsertOrderedListElement:
|
|
|
|
case EditAction::eRemoveUnorderedListElement:
|
|
|
|
case EditAction::eRemoveOrderedListElement:
|
|
|
|
case EditAction::eRemoveListElement:
|
|
|
|
case EditAction::eInsertBlockquoteElement:
|
|
|
|
case EditAction::eNormalizeTable:
|
|
|
|
case EditAction::eRemoveTableElement:
|
|
|
|
case EditAction::eRemoveTableCellElement:
|
|
|
|
case EditAction::eDeleteTableCellContents:
|
|
|
|
case EditAction::eInsertTableCellElement:
|
|
|
|
case EditAction::eJoinTableCellElements:
|
|
|
|
case EditAction::eSplitTableCellElement:
|
|
|
|
case EditAction::eSetTableCellElementType:
|
|
|
|
case EditAction::eSetInlineStyleProperty:
|
|
|
|
case EditAction::eRemoveInlineStyleProperty:
|
|
|
|
case EditAction::eSetFontWeightProperty:
|
|
|
|
case EditAction::eRemoveFontWeightProperty:
|
|
|
|
case EditAction::eSetTextStyleProperty:
|
|
|
|
case EditAction::eRemoveTextStyleProperty:
|
|
|
|
case EditAction::eSetTextDecorationPropertyUnderline:
|
|
|
|
case EditAction::eRemoveTextDecorationPropertyUnderline:
|
|
|
|
case EditAction::eSetTextDecorationPropertyLineThrough:
|
|
|
|
case EditAction::eRemoveTextDecorationPropertyLineThrough:
|
|
|
|
case EditAction::eSetVerticalAlignPropertySuper:
|
|
|
|
case EditAction::eRemoveVerticalAlignPropertySuper:
|
|
|
|
case EditAction::eSetVerticalAlignPropertySub:
|
|
|
|
case EditAction::eRemoveVerticalAlignPropertySub:
|
|
|
|
case EditAction::eSetFontFamilyProperty:
|
|
|
|
case EditAction::eRemoveFontFamilyProperty:
|
|
|
|
case EditAction::eSetColorProperty:
|
|
|
|
case EditAction::eRemoveColorProperty:
|
|
|
|
case EditAction::eSetBackgroundColorPropertyInline:
|
|
|
|
case EditAction::eRemoveBackgroundColorPropertyInline:
|
|
|
|
case EditAction::eRemoveAllInlineStyleProperties:
|
|
|
|
case EditAction::eIncrementFontSize:
|
|
|
|
case EditAction::eDecrementFontSize:
|
|
|
|
case EditAction::eSetAlignment:
|
|
|
|
case EditAction::eAlignLeft:
|
|
|
|
case EditAction::eAlignRight:
|
|
|
|
case EditAction::eAlignCenter:
|
|
|
|
case EditAction::eJustify:
|
|
|
|
case EditAction::eSetBackgroundColor:
|
|
|
|
case EditAction::eSetPositionToAbsoluteOrStatic:
|
|
|
|
case EditAction::eIncreaseOrDecreaseZIndex:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// EditActions controlling editor feature or state.
|
|
|
|
case EditAction::eEnableOrDisableCSS:
|
|
|
|
case EditAction::eEnableOrDisableAbsolutePositionEditor:
|
|
|
|
case EditAction::eEnableOrDisableResizer:
|
|
|
|
case EditAction::eEnableOrDisableInlineTableEditingUI:
|
|
|
|
case EditAction::eSetCharacterSet:
|
|
|
|
case EditAction::eSetWrapWidth:
|
|
|
|
return false;
|
|
|
|
|
2020-10-14 15:55:00 +03:00
|
|
|
case EditAction::eRewrap:
|
2020-09-27 07:49:41 +03:00
|
|
|
case EditAction::eSetText:
|
|
|
|
case EditAction::eSetHTML:
|
|
|
|
case EditAction::eInsertHTML:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case EditAction::eHidePassword:
|
|
|
|
case EditAction::eCreatePaddingBRElementForEmptyEditor:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-05-20 10:39:51 +03:00
|
|
|
inline bool MayEditActionRequireLayout(const EditAction aEditAction) {
|
|
|
|
switch (aEditAction) {
|
|
|
|
// Table editing require layout information for referring table cell data
|
|
|
|
// such as row/column number and rowspan/colspan.
|
|
|
|
case EditAction::eInsertTableRowElement:
|
|
|
|
case EditAction::eRemoveTableRowElement:
|
|
|
|
case EditAction::eInsertTableColumn:
|
|
|
|
case EditAction::eRemoveTableColumn:
|
|
|
|
case EditAction::eRemoveTableElement:
|
|
|
|
case EditAction::eRemoveTableCellElement:
|
|
|
|
case EditAction::eDeleteTableCellContents:
|
|
|
|
case EditAction::eInsertTableCellElement:
|
|
|
|
case EditAction::eJoinTableCellElements:
|
|
|
|
case EditAction::eSplitTableCellElement:
|
|
|
|
case EditAction::eSetTableCellElementType:
|
|
|
|
case NS_EDIT_ACTION_CASES_ACCESSING_TABLE_DATA_WITHOUT_EDITING:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 13:01:04 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
Bug 1463985 - part 1: Rename EditAction to EditSubAction and related stuff r=m_kato
When we implement InputEvent.inputType, we need to set a stack class to record
which edit action is currently handled. However, currently, we call smaller
jobs as edit action. For example, when user types a character at selecting
some characters, then, EditAction::deleteSelection is performed first, then,
EditAction::insertText is performed. However, for the InputEvent.inputType,
we need inserText information. So, for making new enum EditAction, we need
to rename current EditAction to EditSubAction.
And also this renames related stuff:
EditorBase::mIsInEditAction -> EditorBase::mIsInEditSubAction
EditorBase::IsInEditAction() -> EditorBase::IsInEditSubAction()
EditorBase::mAction -> EditorBase::mTopLevelEditSubAction
TextEditRules::mTheAction -> TextEditRules::mTopLevelEditSubAction
EditorBase::StartOperation() ->
EditorBase::OnStartToHandleTopLevelEditSubAction()
EditorBase::EndOperation() ->
EditorBase::OnEndHandlingTopLevelEditSubAction()
AutoRules -> AutoTopLevelEditSubActionNotifier
RulesInfo -> EditSubActionInfo
MozReview-Commit-ID: cvSkPUjFm1
--HG--
extra : rebase_source : baf527a3e353b7a8ebe9a46be2243b059c500234
2018-05-28 14:12:34 +03:00
|
|
|
inline bool operator!(const mozilla::EditSubAction& aEditSubAction) {
|
2018-05-28 14:29:34 +03:00
|
|
|
return aEditSubAction == mozilla::EditSubAction::eNone;
|
2018-01-12 13:01:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifdef mozilla_EditAction_h
|