1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
/* Utilities for animation of computed style values */
#ifndef mozilla_StyleAnimationValue_h_
#define mozilla_StyleAnimationValue_h_
#include "mozilla/RefPtr.h"
#include "mozilla/ServoBindingTypes.h"
#include "mozilla/ServoStyleConsts.h" // Servo_AnimationValue_Dump
#include "mozilla/AnimatedPropertyID.h"
#include "nsStringFwd.h"
#include "nsColor.h"
#include "nsCSSPropertyID.h"
#include "nsStyleTransformMatrix.h"
class nsIFrame;
namespace mozilla {
namespace css {
class StyleRule;
} // namespace css
namespace dom {
class Element;
} // namespace dom
namespace layers {
class Animatable;
} // namespace layers
enum class PseudoStyleType : uint8_t;
struct PropertyStyleAnimationValuePair;
struct AnimationValue {
explicit AnimationValue(const RefPtr<StyleAnimationValue>& aValue)
: mServo(aValue) {}
AnimationValue() = default;
AnimationValue(const AnimationValue& aOther) = default;
AnimationValue(AnimationValue&& aOther) = default;
AnimationValue& operator=(const AnimationValue& aOther) = default;
AnimationValue& operator=(AnimationValue&& aOther) = default;
bool operator==(const AnimationValue& aOther) const;
bool operator!=(const AnimationValue& aOther) const;
bool IsNull() const { return !mServo; }
float GetOpacity() const;
// Returns nscolor value in this AnimationValue.
// Currently only background-color is supported.
nscolor GetColor(nscolor aForegroundColor) const;
// Returns true if this AnimationValue is current-color.
// Currently only background-color is supported.
bool IsCurrentColor() const;
// Return a transform list for the transform property.
const mozilla::StyleTransform& GetTransformProperty() const;
const mozilla::StyleScale& GetScaleProperty() const;
const mozilla::StyleTranslate& GetTranslateProperty() const;
const mozilla::StyleRotate& GetRotateProperty() const;
// Motion path properties.
// Note: This clones the StyleOffsetPath object from its AnimatedValue, so
// this may be expensive if the path is a complex SVG path or polygon. The
// caller should be aware of this performance impact.
void GetOffsetPathProperty(StyleOffsetPath& aOffsetPath) const;
const mozilla::LengthPercentage& GetOffsetDistanceProperty() const;
const mozilla::StyleOffsetRotate& GetOffsetRotateProperty() const;
const mozilla::StylePositionOrAuto& GetOffsetAnchorProperty() const;
const mozilla::StyleOffsetPosition& GetOffsetPositionProperty() const;
bool IsOffsetPathUrl() const;
// Return the scale for mServo, which is calculated with reference to aFrame.
mozilla::gfx::MatrixScales GetScaleValue(const nsIFrame* aFrame) const;
// Uncompute this AnimationValue and then serialize it.
void SerializeSpecifiedValue(const AnimatedPropertyID& aProperty,
const StylePerDocumentStyleData* aRawData,
nsACString& aString) const;
// Check if |*this| and |aToValue| can be interpolated.
bool IsInterpolableWith(const AnimatedPropertyID& aProperty,
const AnimationValue& aToValue) const;
// Compute the distance between *this and aOther.
double ComputeDistance(const AnimationValue& aOther) const;
// Create an AnimaitonValue from a string. This method flushes style, so we
// should use this carefully. Now, it is only used by
// nsDOMWindowUtils::ComputeAnimationDistance.
static AnimationValue FromString(AnimatedPropertyID& aProperty,
const nsACString& aValue,
dom::Element* aElement);
// Create an already_AddRefed<StyleAnimationValue> from a
// layers::Animatable. Basically, this function should return AnimationValue,
// but it seems the caller, AnimationHelper, only needs
// StyleAnimationValue, so we return its already_AddRefed<> to avoid
// adding/removing a redundant ref-count.
static already_AddRefed<StyleAnimationValue> FromAnimatable(
nsCSSPropertyID aProperty, const layers::Animatable& aAnimatable);
RefPtr<StyleAnimationValue> mServo;
};
inline std::ostream& operator<<(std::ostream& aOut,
const AnimationValue& aValue) {
MOZ_ASSERT(aValue.mServo);
nsAutoCString s;
Servo_AnimationValue_Dump(aValue.mServo, &s);
return aOut << s;
}
struct PropertyStyleAnimationValuePair {
AnimatedPropertyID mProperty;
AnimationValue mValue;
};
} // namespace mozilla
#endif
|