2016-07-07 08:23:25 +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/. */
|
|
|
|
|
2022-10-12 05:44:20 +03:00
|
|
|
#ifndef ChangeStyleTransaction_h
|
|
|
|
#define ChangeStyleTransaction_h
|
2016-07-07 08:23:25 +03:00
|
|
|
|
2022-10-12 05:44:20 +03:00
|
|
|
#include "EditTransactionBase.h" // base class
|
2022-04-20 17:46:16 +03:00
|
|
|
|
2016-07-07 08:23:25 +03:00
|
|
|
#include "nsCOMPtr.h" // nsCOMPtr members
|
|
|
|
#include "nsCycleCollectionParticipant.h" // various macros
|
|
|
|
#include "nsString.h" // nsString members
|
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
class nsAtom;
|
2020-04-03 11:30:37 +03:00
|
|
|
class nsStyledElement;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
class Element;
|
|
|
|
} // namespace dom
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A transaction that changes the value of a CSS inline style of a content
|
|
|
|
* node. This transaction covers add, remove, and change a property's value.
|
|
|
|
*/
|
2016-07-08 03:48:34 +03:00
|
|
|
class ChangeStyleTransaction final : public EditTransactionBase {
|
2017-12-18 11:46:57 +03:00
|
|
|
protected:
|
2020-04-03 11:30:37 +03:00
|
|
|
ChangeStyleTransaction(nsStyledElement& aStyledElement, nsAtom& aProperty,
|
2017-12-18 11:46:57 +03:00
|
|
|
const nsAString& aValue, bool aRemove);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-07-07 08:23:25 +03:00
|
|
|
public:
|
2017-12-18 11:46:57 +03:00
|
|
|
/**
|
|
|
|
* Creates a change style transaction. This never returns nullptr.
|
|
|
|
*
|
2020-04-03 11:30:37 +03:00
|
|
|
* @param aStyledElement The node whose style attribute will be changed.
|
|
|
|
* @param aProperty The name of the property to change.
|
|
|
|
* @param aValue New value for aProperty.
|
2017-12-18 11:46:57 +03:00
|
|
|
*/
|
|
|
|
static already_AddRefed<ChangeStyleTransaction> Create(
|
2020-04-03 11:30:37 +03:00
|
|
|
nsStyledElement& aStyledElement, nsAtom& aProperty,
|
|
|
|
const nsAString& aValue);
|
2017-12-18 11:46:57 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a change style transaction. This never returns nullptr.
|
|
|
|
*
|
2020-04-03 11:30:37 +03:00
|
|
|
* @param aStyledElement The node whose style attribute will be changed.
|
|
|
|
* @param aProperty The name of the property to change.
|
|
|
|
* @param aValue The value to remove from aProperty.
|
2017-12-18 11:46:57 +03:00
|
|
|
*/
|
|
|
|
static already_AddRefed<ChangeStyleTransaction> CreateToRemove(
|
2020-04-03 11:30:37 +03:00
|
|
|
nsStyledElement& aStyledElement, nsAtom& aProperty,
|
|
|
|
const nsAString& aValue);
|
2017-12-18 11:46:57 +03:00
|
|
|
|
2016-07-08 03:48:34 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ChangeStyleTransaction,
|
|
|
|
EditTransactionBase)
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2016-07-08 03:48:34 +03:00
|
|
|
NS_DECL_EDITTRANSACTIONBASE
|
2020-04-23 08:46:43 +03:00
|
|
|
NS_DECL_EDITTRANSACTIONBASE_GETASMETHODS_OVERRIDE(ChangeStyleTransaction)
|
2016-07-07 08:23:25 +03:00
|
|
|
|
2020-04-03 11:32:01 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT NS_IMETHOD RedoTransaction() override;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the list of white-space separated values contains aValue
|
|
|
|
*
|
|
|
|
* @param aValueList [IN] a list of white-space separated values
|
|
|
|
* @param aValue [IN] the value to look for in the list
|
|
|
|
* @return true if the value is in the list of values
|
|
|
|
*/
|
2020-12-17 17:04:35 +03:00
|
|
|
static bool ValueIncludes(const nsACString& aValueList,
|
|
|
|
const nsACString& aValue);
|
2016-07-07 08:23:25 +03:00
|
|
|
|
2021-04-05 14:35:48 +03:00
|
|
|
friend std::ostream& operator<<(std::ostream& aStream,
|
|
|
|
const ChangeStyleTransaction& aTransaction);
|
|
|
|
|
2016-07-07 08:23:25 +03:00
|
|
|
private:
|
2020-03-06 07:38:25 +03:00
|
|
|
virtual ~ChangeStyleTransaction() = default;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
/**
|
Bug 1802831 - Make `AutoInlineStyleSetter` align setting `text-decoration` style behavior in the CSS mode to the other browsers r=m_kato
Gecko wraps selection (and parent elements if entirely selected in them) in
new `<span>` element and set `text-decoration`. However, the other browsers
tries to reuse selected or parent element which already has `text-decoration`
style. The other browsers' behavior is more reasonable from point of view of:
* smaller footprint
* minimizing to update the DOM tree
And aligning the behavior makes it easier to check the compatibility between
browsers and us avoid from new test failures aligning other behaviors to the
other browsers.
If there is an element specifying `text-decoration`, its `text-decoration`
declaration should be updated first.
If found element is `<i>`, `<s>` or `<strike>`, it should be replaced with new
`<span>` because these elements just represents the visual style and we should
not use such elements in the CSS mode (bug 1802736). At this time, unless
the element has `text-decoration` rules in its `style` attribute value, we
the new `text-decoration` style should have the value represented by the
removing element (i.e., `underline` for `<i>`, `line-through` for the others).
However, if found element is `<ins>` or `<del>`, we should set its
`text-decoration` and unless it already has `text-decoration` rules, we need
to append corresponding style (`underline` for `<ins>` and `line-through` for
`<del>`) too.
When setting the values or removing a value from `text-decoration` declaration,
the value should be normalized to represent only `text-decoration-line` for
compatibility with the other browsers and keeping the implementation simpler.
And also the value should be built as the following order:
1. underline
2. overline
3. line-though
rather than updating current value with complicated code. Then, the tests can
compare with one expectation.
Depends on D163188
Differential Revision: https://phabricator.services.mozilla.com/D163429
2022-12-03 01:50:56 +03:00
|
|
|
* Build new text-decoration value to set/remove specific values to/from the
|
|
|
|
* rule which already has aCurrentValues.
|
2016-07-07 08:23:25 +03:00
|
|
|
*/
|
Bug 1802831 - Make `AutoInlineStyleSetter` align setting `text-decoration` style behavior in the CSS mode to the other browsers r=m_kato
Gecko wraps selection (and parent elements if entirely selected in them) in
new `<span>` element and set `text-decoration`. However, the other browsers
tries to reuse selected or parent element which already has `text-decoration`
style. The other browsers' behavior is more reasonable from point of view of:
* smaller footprint
* minimizing to update the DOM tree
And aligning the behavior makes it easier to check the compatibility between
browsers and us avoid from new test failures aligning other behaviors to the
other browsers.
If there is an element specifying `text-decoration`, its `text-decoration`
declaration should be updated first.
If found element is `<i>`, `<s>` or `<strike>`, it should be replaced with new
`<span>` because these elements just represents the visual style and we should
not use such elements in the CSS mode (bug 1802736). At this time, unless
the element has `text-decoration` rules in its `style` attribute value, we
the new `text-decoration` style should have the value represented by the
removing element (i.e., `underline` for `<i>`, `line-through` for the others).
However, if found element is `<ins>` or `<del>`, we should set its
`text-decoration` and unless it already has `text-decoration` rules, we need
to append corresponding style (`underline` for `<ins>` and `line-through` for
`<del>`) too.
When setting the values or removing a value from `text-decoration` declaration,
the value should be normalized to represent only `text-decoration-line` for
compatibility with the other browsers and keeping the implementation simpler.
And also the value should be built as the following order:
1. underline
2. overline
3. line-though
rather than updating current value with complicated code. Then, the tests can
compare with one expectation.
Depends on D163188
Differential Revision: https://phabricator.services.mozilla.com/D163429
2022-12-03 01:50:56 +03:00
|
|
|
void BuildTextDecorationValueToSet(const nsACString& aCurrentValues,
|
|
|
|
const nsACString& aAddingValues,
|
|
|
|
nsACString& aOutValues);
|
|
|
|
void BuildTextDecorationValueToRemove(const nsACString& aCurrentValues,
|
|
|
|
const nsACString& aRemovingValues,
|
|
|
|
nsACString& aOutValues);
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
/**
|
Bug 1802831 - Make `AutoInlineStyleSetter` align setting `text-decoration` style behavior in the CSS mode to the other browsers r=m_kato
Gecko wraps selection (and parent elements if entirely selected in them) in
new `<span>` element and set `text-decoration`. However, the other browsers
tries to reuse selected or parent element which already has `text-decoration`
style. The other browsers' behavior is more reasonable from point of view of:
* smaller footprint
* minimizing to update the DOM tree
And aligning the behavior makes it easier to check the compatibility between
browsers and us avoid from new test failures aligning other behaviors to the
other browsers.
If there is an element specifying `text-decoration`, its `text-decoration`
declaration should be updated first.
If found element is `<i>`, `<s>` or `<strike>`, it should be replaced with new
`<span>` because these elements just represents the visual style and we should
not use such elements in the CSS mode (bug 1802736). At this time, unless
the element has `text-decoration` rules in its `style` attribute value, we
the new `text-decoration` style should have the value represented by the
removing element (i.e., `underline` for `<i>`, `line-through` for the others).
However, if found element is `<ins>` or `<del>`, we should set its
`text-decoration` and unless it already has `text-decoration` rules, we need
to append corresponding style (`underline` for `<ins>` and `line-through` for
`<del>`) too.
When setting the values or removing a value from `text-decoration` declaration,
the value should be normalized to represent only `text-decoration-line` for
compatibility with the other browsers and keeping the implementation simpler.
And also the value should be built as the following order:
1. underline
2. overline
3. line-though
rather than updating current value with complicated code. Then, the tests can
compare with one expectation.
Depends on D163188
Differential Revision: https://phabricator.services.mozilla.com/D163429
2022-12-03 01:50:56 +03:00
|
|
|
* Helper method for above methods.
|
2016-07-07 08:23:25 +03:00
|
|
|
*/
|
Bug 1802831 - Make `AutoInlineStyleSetter` align setting `text-decoration` style behavior in the CSS mode to the other browsers r=m_kato
Gecko wraps selection (and parent elements if entirely selected in them) in
new `<span>` element and set `text-decoration`. However, the other browsers
tries to reuse selected or parent element which already has `text-decoration`
style. The other browsers' behavior is more reasonable from point of view of:
* smaller footprint
* minimizing to update the DOM tree
And aligning the behavior makes it easier to check the compatibility between
browsers and us avoid from new test failures aligning other behaviors to the
other browsers.
If there is an element specifying `text-decoration`, its `text-decoration`
declaration should be updated first.
If found element is `<i>`, `<s>` or `<strike>`, it should be replaced with new
`<span>` because these elements just represents the visual style and we should
not use such elements in the CSS mode (bug 1802736). At this time, unless
the element has `text-decoration` rules in its `style` attribute value, we
the new `text-decoration` style should have the value represented by the
removing element (i.e., `underline` for `<i>`, `line-through` for the others).
However, if found element is `<ins>` or `<del>`, we should set its
`text-decoration` and unless it already has `text-decoration` rules, we need
to append corresponding style (`underline` for `<ins>` and `line-through` for
`<del>`) too.
When setting the values or removing a value from `text-decoration` declaration,
the value should be normalized to represent only `text-decoration-line` for
compatibility with the other browsers and keeping the implementation simpler.
And also the value should be built as the following order:
1. underline
2. overline
3. line-though
rather than updating current value with complicated code. Then, the tests can
compare with one expectation.
Depends on D163188
Differential Revision: https://phabricator.services.mozilla.com/D163429
2022-12-03 01:50:56 +03:00
|
|
|
void BuildTextDecorationValue(bool aUnderline, bool aOverline,
|
|
|
|
bool aLineThrough, nsACString& aOutValues);
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the boolean is true and if the value is not the empty string,
|
|
|
|
* set the property in the transaction to that value; if the value
|
|
|
|
* is empty, remove the property from element's styles. If the boolean
|
|
|
|
* is false, just remove the style attribute.
|
|
|
|
*/
|
2020-04-03 11:32:01 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT nsresult SetStyle(bool aAttributeWasSet,
|
2020-12-17 17:04:35 +03:00
|
|
|
nsACString& aValue);
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
// The element to operate upon.
|
2020-04-03 11:30:37 +03:00
|
|
|
RefPtr<nsStyledElement> mStyledElement;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
// The CSS property to change.
|
2017-10-03 01:05:19 +03:00
|
|
|
RefPtr<nsAtom> mProperty;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
// The value to set the property to (ignored if mRemoveProperty==true).
|
2020-12-17 17:04:35 +03:00
|
|
|
nsCString mValue;
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
// The value to set the property to for undo.
|
2020-12-17 17:04:35 +03:00
|
|
|
nsCString mUndoValue;
|
2016-07-07 08:23:25 +03:00
|
|
|
// The value to set the property to for redo.
|
2020-12-17 17:04:35 +03:00
|
|
|
nsCString mRedoValue;
|
2020-04-03 11:30:37 +03:00
|
|
|
|
|
|
|
// true if the operation is to remove mProperty from mElement.
|
|
|
|
bool mRemoveProperty;
|
|
|
|
|
2016-07-07 08:23:25 +03:00
|
|
|
// True if the style attribute was present and not empty before DoTransaction.
|
|
|
|
bool mUndoAttributeWasSet;
|
|
|
|
// True if the style attribute is present and not empty after DoTransaction.
|
|
|
|
bool mRedoAttributeWasSet;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2022-10-12 05:44:20 +03:00
|
|
|
#endif // #ifndef ChangeStyleTransaction_h
|