| /* |
| * Copyright (C) 2019-2023 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #pragma once |
| |
| #include "CSSToLengthConversionData.h" |
| #include "CSSToStyleMap.h" |
| #include "CascadeLevel.h" |
| #include "Document.h" |
| #include "FontTaggedSettings.h" |
| #include "PositionArea.h" |
| #include "PositionTryFallback.h" |
| #include "PropertyCascade.h" |
| #include "RuleSet.h" |
| #include "SelectorChecker.h" |
| #include "StyleForVisitedLink.h" |
| #include "TreeResolutionState.h" |
| #include "platform/text/TextFlags.h" |
| #include <wtf/BitSet.h> |
| #include <wtf/RefCountedFixedVector.h> |
| |
| namespace WebCore { |
| |
| class FilterOperations; |
| class FontCascadeDescription; |
| class FontSelectionValue; |
| class RenderStyle; |
| class StyleImage; |
| class StyleResolver; |
| class TextAutospace; |
| class TextSpacingTrim; |
| |
| struct FontPalette; |
| struct FontSizeAdjust; |
| |
| namespace CSSCalc { |
| struct RandomCachingKey; |
| } |
| |
| namespace CSS { |
| struct AppleColorFilterProperty; |
| struct FilterProperty; |
| } |
| |
| namespace Style { |
| |
| class BuilderState; |
| struct Color; |
| |
| void maybeUpdateFontForLetterSpacing(BuilderState&, CSSValue&); |
| |
| enum class ApplyValueType : uint8_t { Value, Initial, Inherit }; |
| |
| struct BuilderPositionTryFallback { |
| RefPtr<const StyleProperties> properties; |
| Vector<PositionTryFallback::Tactic> tactics; |
| }; |
| |
| struct BuilderContext { |
| const RefPtr<const Document> document { }; |
| const RenderStyle* parentStyle { }; |
| const RenderStyle* rootElementStyle { }; |
| RefPtr<const Element> element { }; |
| CheckedPtr<TreeResolutionState> treeResolutionState { }; |
| std::optional<BuilderPositionTryFallback> positionTryFallback { }; |
| }; |
| |
| class BuilderState { |
| public: |
| BuilderState(RenderStyle&); |
| BuilderState(RenderStyle&, BuilderContext&&); |
| |
| RenderStyle& style() { return m_style; } |
| const RenderStyle& style() const { return m_style; } |
| |
| const RenderStyle& parentStyle() const { return *m_context.parentStyle; } |
| const RenderStyle* rootElementStyle() const { return m_context.rootElementStyle; } |
| |
| const Document& document() const { return *m_context.document; } |
| Ref<const Document> protectedDocument() const { return *m_context.document; } |
| const Element* element() const { return m_context.element.get(); } |
| |
| inline void setZoom(float); |
| inline void setUsedZoom(float); |
| inline void setWritingMode(StyleWritingMode); |
| inline void setTextOrientation(TextOrientation); |
| |
| bool fontDirty() const { return m_fontDirty; } |
| void setFontDirty() { m_fontDirty = true; } |
| |
| inline const FontCascadeDescription& fontDescription(); |
| inline const FontCascadeDescription& parentFontDescription(); |
| |
| bool applyPropertyToRegularStyle() const { return m_linkMatch != SelectorChecker::MatchVisited; } |
| bool applyPropertyToVisitedLinkStyle() const { return m_linkMatch != SelectorChecker::MatchLink; } |
| |
| bool useSVGZoomRules() const; |
| bool useSVGZoomRulesForLength() const; |
| ScopeOrdinal styleScopeOrdinal() const { return m_currentProperty->styleScopeOrdinal; } |
| |
| RefPtr<StyleImage> createStyleImage(const CSSValue&) const; |
| FilterOperations createFilterOperations(const CSS::FilterProperty&) const; |
| FilterOperations createFilterOperations(const CSSValue&) const; |
| FilterOperations createAppleColorFilterOperations(const CSS::AppleColorFilterProperty&) const; |
| FilterOperations createAppleColorFilterOperations(const CSSValue&) const; |
| |
| const Vector<AtomString>& registeredContentAttributes() const { return m_registeredContentAttributes; } |
| void registerContentAttribute(const AtomString& attributeLocalName); |
| |
| const CSSToLengthConversionData& cssToLengthConversionData() const { return m_cssToLengthConversionData; } |
| CSSToStyleMap& styleMap() { return m_styleMap; } |
| |
| void setIsBuildingKeyframeStyle() { m_isBuildingKeyframeStyle = true; } |
| |
| bool isAuthorOrigin() const |
| { |
| return m_currentProperty && m_currentProperty->cascadeLevel == CascadeLevel::Author; |
| } |
| |
| CSSPropertyID cssPropertyID() const; |
| |
| bool isCurrentPropertyInvalidAtComputedValueTime() const; |
| void setCurrentPropertyInvalidAtComputedValueTime(); |
| |
| void setUsesViewportUnits(); |
| void setUsesContainerUnits(); |
| |
| double lookupCSSRandomBaseValue(const CSSCalc::RandomCachingKey&, std::optional<CSS::Keyword::ElementShared>) const; |
| |
| // Accessors for sibling information used by the sibling-count() and sibling-index() CSS functions. |
| unsigned siblingCount(); |
| unsigned siblingIndex(); |
| |
| AnchorPositionedStates* anchorPositionedStates() { return m_context.treeResolutionState ? &m_context.treeResolutionState->anchorPositionedStates : nullptr; } |
| const std::optional<BuilderPositionTryFallback>& positionTryFallback() const { return m_context.positionTryFallback; } |
| |
| // FIXME: Copying a FontCascadeDescription is really inefficient. Migrate all callers to |
| // setFontDescriptionXXX() variants below, then remove these functions. |
| inline void setFontDescription(FontCascadeDescription&&); |
| void setFontSize(FontCascadeDescription&, float size); |
| |
| void setFontDescriptionKeywordSizeFromIdentifier(CSSValueID); |
| void setFontDescriptionIsAbsoluteSize(bool); |
| void setFontDescriptionFontSize(float); |
| void setFontDescriptionFamilies(RefCountedFixedVector<AtomString>&); |
| void setFontDescriptionFamilies(Vector<AtomString>&); |
| void setFontDescriptionIsSpecifiedFont(bool); |
| void setFontDescriptionFeatureSettings(FontFeatureSettings&&); |
| void setFontDescriptionFontPalette(const FontPalette&); |
| void setFontDescriptionFontSizeAdjust(FontSizeAdjust); |
| void setFontDescriptionFontSmoothing(FontSmoothingMode); |
| void setFontDescriptionFontSynthesisSmallCaps(FontSynthesisLonghandValue); |
| void setFontDescriptionFontSynthesisStyle(FontSynthesisLonghandValue); |
| void setFontDescriptionFontSynthesisWeight(FontSynthesisLonghandValue); |
| void setFontDescriptionKerning(Kerning); |
| void setFontDescriptionOpticalSizing(FontOpticalSizing); |
| void setFontDescriptionSpecifiedLocale(const AtomString&); |
| void setFontDescriptionTextAutospace(TextAutospace); |
| void setFontDescriptionTextRenderingMode(TextRenderingMode); |
| void setFontDescriptionTextSpacingTrim(TextSpacingTrim); |
| void setFontDescriptionVariantCaps(FontVariantCaps); |
| void setFontDescriptionVariantEmoji(FontVariantEmoji); |
| void setFontDescriptionVariantPosition(FontVariantPosition); |
| void setFontDescriptionVariationSettings(FontVariationSettings&&); |
| void setFontDescriptionWeight(FontSelectionValue); |
| void setFontDescriptionWidth(FontSelectionValue); |
| void setFontDescriptionVariantAlternates(const FontVariantAlternates&); |
| void setFontDescriptionVariantEastAsianVariant(FontVariantEastAsianVariant); |
| void setFontDescriptionVariantEastAsianWidth(FontVariantEastAsianWidth); |
| void setFontDescriptionVariantEastAsianRuby(FontVariantEastAsianRuby); |
| void setFontDescriptionKeywordSize(unsigned); |
| void setFontDescriptionVariantCommonLigatures(FontVariantLigatures); |
| void setFontDescriptionVariantDiscretionaryLigatures(FontVariantLigatures); |
| void setFontDescriptionVariantHistoricalLigatures(FontVariantLigatures); |
| void setFontDescriptionVariantContextualAlternates(FontVariantLigatures); |
| void setFontDescriptionVariantNumericFigure(FontVariantNumericFigure); |
| void setFontDescriptionVariantNumericSpacing(FontVariantNumericSpacing); |
| void setFontDescriptionVariantNumericFraction(FontVariantNumericFraction); |
| void setFontDescriptionVariantNumericOrdinal(FontVariantNumericOrdinal); |
| void setFontDescriptionVariantNumericSlashedZero(FontVariantNumericSlashedZero); |
| |
| void disableNativeAppearanceIfNeeded(CSSPropertyID, CascadeLevel); |
| |
| private: |
| // See the comment in maybeUpdateFontForLetterSpacing() about why this needs to be a friend. |
| friend void maybeUpdateFontForLetterSpacing(BuilderState&, CSSValue&); |
| friend class Builder; |
| |
| void adjustStyleForInterCharacterRuby(); |
| |
| void updateFont(); |
| #if ENABLE(TEXT_AUTOSIZING) |
| void updateFontForTextSizeAdjust(); |
| #endif |
| void updateFontForZoomChange(); |
| void updateFontForGenericFamilyChange(); |
| void updateFontForOrientationChange(); |
| |
| CSSToStyleMap m_styleMap; |
| |
| RenderStyle& m_style; |
| BuilderContext m_context; |
| |
| const CSSToLengthConversionData m_cssToLengthConversionData; |
| |
| HashSet<AtomString> m_appliedCustomProperties; |
| HashSet<AtomString> m_inProgressCustomProperties; |
| HashSet<AtomString> m_inCycleCustomProperties; |
| WTF::BitSet<cssPropertyIDEnumValueCount> m_inProgressProperties; |
| WTF::BitSet<cssPropertyIDEnumValueCount> m_invalidAtComputedValueTimeProperties; |
| |
| const PropertyCascade::Property* m_currentProperty { nullptr }; |
| SelectorChecker::LinkMatchMask m_linkMatch { }; |
| |
| bool m_fontDirty { false }; |
| Vector<AtomString> m_registeredContentAttributes; |
| |
| bool m_isBuildingKeyframeStyle { false }; |
| }; |
| |
| } // namespace Style |
| } // namespace WebCore |