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/. */
|
|
|
|
|
2016-07-08 08:03:31 +03:00
|
|
|
#ifndef mozilla_ChangeStyleTransaction_h
|
|
|
|
#define mozilla_ChangeStyleTransaction_h
|
2016-07-07 08:23:25 +03:00
|
|
|
|
2016-07-08 08:03:31 +03:00
|
|
|
#include "mozilla/EditTransactionBase.h" // base class
|
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;
|
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:
|
|
|
|
ChangeStyleTransaction(dom::Element& aElement, nsAtom& aProperty,
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @param aNode The node whose style attribute will be changed.
|
|
|
|
* @param aProperty The name of the property to change.
|
|
|
|
* @param aValue New value for aProperty.
|
|
|
|
*/
|
|
|
|
static already_AddRefed<ChangeStyleTransaction> Create(
|
|
|
|
dom::Element& aElement, nsAtom& aProperty, const nsAString& aValue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a change style transaction. This never returns nullptr.
|
|
|
|
*
|
|
|
|
* @param aNode 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.
|
|
|
|
*/
|
|
|
|
static already_AddRefed<ChangeStyleTransaction> CreateToRemove(
|
|
|
|
dom::Element& aElement, nsAtom& aProperty, const nsAString& aValue);
|
|
|
|
|
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
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
NS_IMETHOD RedoTransaction() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
static bool ValueIncludes(const nsAString& aValueList,
|
|
|
|
const nsAString& aValue);
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~ChangeStyleTransaction();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adds the value aNewValue to list of white-space separated values aValues.
|
|
|
|
*
|
|
|
|
* @param aValues [IN/OUT] a list of wite-space separated values
|
|
|
|
* @param aNewValue [IN] a value this code adds to aValues if it is not
|
|
|
|
* already in
|
|
|
|
*/
|
|
|
|
void AddValueToMultivalueProperty(nsAString& aValues,
|
|
|
|
const nsAString& aNewValue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the property accepts more than one value.
|
|
|
|
*
|
|
|
|
* @param aCSSProperty [IN] the CSS property
|
|
|
|
* @return true if the property accepts more than one value
|
|
|
|
*/
|
2017-10-03 01:05:19 +03:00
|
|
|
bool AcceptsMoreThanOneValue(nsAtom& aCSSProperty);
|
2016-07-07 08:23:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a value from a list of white-space separated values.
|
|
|
|
* @param aValues [IN] a list of white-space separated values
|
|
|
|
* @param aRemoveValue [IN] the value to remove from the list
|
|
|
|
*/
|
|
|
|
void RemoveValueFromListOfValues(nsAString& aValues,
|
|
|
|
const nsAString& aRemoveValue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
nsresult SetStyle(bool aAttributeWasSet, nsAString& aValue);
|
|
|
|
|
|
|
|
// The element to operate upon.
|
|
|
|
nsCOMPtr<dom::Element> mElement;
|
|
|
|
|
|
|
|
// 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).
|
|
|
|
nsString mValue;
|
|
|
|
|
|
|
|
// true if the operation is to remove mProperty from mElement.
|
|
|
|
bool mRemoveProperty;
|
|
|
|
|
|
|
|
// The value to set the property to for undo.
|
|
|
|
nsString mUndoValue;
|
|
|
|
// The value to set the property to for redo.
|
|
|
|
nsString mRedoValue;
|
|
|
|
// 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
|
|
|
|
|
2016-07-08 08:03:31 +03:00
|
|
|
#endif // #ifndef mozilla_ChangeStyleTransaction_h
|