зеркало из https://github.com/mozilla/gecko-dev.git
337 строки
17 KiB
C
337 строки
17 KiB
C
/* -*- 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/. */
|
|
|
|
/* a list of all Servo binding functions */
|
|
|
|
/* This file contains the list of all Servo binding functions. Each
|
|
* entry is defined as a SERVO_BINDING_FUNC macro with the following
|
|
* parameters:
|
|
* - 'name_' the name of the binding function
|
|
* - 'return_' the return type of the binding function
|
|
* and the parameter list of the function.
|
|
*
|
|
* Users of this list should define a macro
|
|
* SERVO_BINDING_FUNC(name_, return_, ...)
|
|
* before including this file.
|
|
*/
|
|
|
|
// Element data
|
|
SERVO_BINDING_FUNC(Servo_Element_ClearData, void, RawGeckoElementBorrowed node)
|
|
|
|
// Styleset and Stylesheet management
|
|
SERVO_BINDING_FUNC(Servo_StyleSheet_Empty, RawServoStyleSheetStrong,
|
|
mozilla::css::SheetParsingMode parsing_mode)
|
|
SERVO_BINDING_FUNC(Servo_StyleSheet_FromUTF8Bytes, RawServoStyleSheetStrong,
|
|
mozilla::css::Loader* loader,
|
|
mozilla::ServoStyleSheet* gecko_stylesheet,
|
|
const nsACString* data,
|
|
mozilla::css::SheetParsingMode parsing_mode,
|
|
const nsACString* base_url,
|
|
ThreadSafeURIHolder* base,
|
|
ThreadSafeURIHolder* referrer,
|
|
ThreadSafePrincipalHolder* principal)
|
|
SERVO_BINDING_FUNC(Servo_ImportRule_GetSheet,
|
|
RawServoStyleSheetStrong,
|
|
const RawServoImportRuleBorrowed import_rule)
|
|
SERVO_BINDING_FUNC(Servo_StyleSheet_ClearAndUpdate,
|
|
void,
|
|
RawServoStyleSheetBorrowed stylesheet,
|
|
mozilla::css::Loader* loader,
|
|
mozilla::ServoStyleSheet* gecko_stylesheet,
|
|
const nsACString* data,
|
|
ThreadSafeURIHolder* base,
|
|
ThreadSafeURIHolder* referrer,
|
|
ThreadSafePrincipalHolder* principal)
|
|
SERVO_BINDING_FUNC(Servo_StyleSheet_HasRules, bool,
|
|
RawServoStyleSheetBorrowed sheet)
|
|
SERVO_BINDING_FUNC(Servo_StyleSheet_GetRules, ServoCssRulesStrong,
|
|
RawServoStyleSheetBorrowed sheet)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_Init, RawServoStyleSetOwned, RawGeckoPresContextOwned pres_context)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_RebuildData, void,
|
|
RawServoStyleSetBorrowed set)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_Drop, void, RawServoStyleSetOwned set)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_AppendStyleSheet, void,
|
|
RawServoStyleSetBorrowed set, RawServoStyleSheetBorrowed sheet, bool flush)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_PrependStyleSheet, void,
|
|
RawServoStyleSetBorrowed set, RawServoStyleSheetBorrowed sheet, bool flush)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_RemoveStyleSheet, void,
|
|
RawServoStyleSetBorrowed set, RawServoStyleSheetBorrowed sheet, bool flush)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_InsertStyleSheetBefore, void,
|
|
RawServoStyleSetBorrowed set, RawServoStyleSheetBorrowed sheet,
|
|
RawServoStyleSheetBorrowed reference, bool flush)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_FlushStyleSheets, void, RawServoStyleSetBorrowed set)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_NoteStyleSheetsChanged, void,
|
|
RawServoStyleSetBorrowed set)
|
|
SERVO_BINDING_FUNC(Servo_StyleSet_FillKeyframesForName, bool,
|
|
RawServoStyleSetBorrowed set,
|
|
const nsACString* property,
|
|
nsTimingFunctionBorrowed timing_function,
|
|
ServoComputedValuesBorrowed computed_values,
|
|
RawGeckoKeyframeListBorrowedMut keyframe_list)
|
|
|
|
// CSSRuleList
|
|
SERVO_BINDING_FUNC(Servo_CssRules_ListTypes, void,
|
|
ServoCssRulesBorrowed rules,
|
|
nsTArrayBorrowed_uintptr_t result)
|
|
SERVO_BINDING_FUNC(Servo_CssRules_InsertRule, nsresult,
|
|
ServoCssRulesBorrowed rules,
|
|
RawServoStyleSheetBorrowed sheet, const nsACString* rule,
|
|
uint32_t index, bool nested, uint16_t* rule_type)
|
|
SERVO_BINDING_FUNC(Servo_CssRules_DeleteRule, nsresult,
|
|
ServoCssRulesBorrowed rules, uint32_t index)
|
|
|
|
// CSS Rules
|
|
#define BASIC_RULE_FUNCS(type_) \
|
|
SERVO_BINDING_FUNC(Servo_CssRules_Get##type_##RuleAt, \
|
|
RawServo##type_##RuleStrong, \
|
|
ServoCssRulesBorrowed rules, uint32_t index) \
|
|
SERVO_BINDING_FUNC(Servo_##type_##Rule_Debug, void, \
|
|
RawServo##type_##RuleBorrowed rule, nsACString* result) \
|
|
SERVO_BINDING_FUNC(Servo_##type_##Rule_GetCssText, void, \
|
|
RawServo##type_##RuleBorrowed rule, nsAString* result)
|
|
BASIC_RULE_FUNCS(Style)
|
|
BASIC_RULE_FUNCS(Media)
|
|
BASIC_RULE_FUNCS(Namespace)
|
|
#undef BASIC_RULE_FUNCS
|
|
SERVO_BINDING_FUNC(Servo_CssRules_GetFontFaceRuleAt, nsCSSFontFaceRule*,
|
|
ServoCssRulesBorrowed rules, uint32_t index)
|
|
SERVO_BINDING_FUNC(Servo_StyleRule_GetStyle, RawServoDeclarationBlockStrong,
|
|
RawServoStyleRuleBorrowed rule)
|
|
SERVO_BINDING_FUNC(Servo_StyleRule_SetStyle, void,
|
|
RawServoStyleRuleBorrowed rule,
|
|
RawServoDeclarationBlockBorrowed declarations)
|
|
SERVO_BINDING_FUNC(Servo_StyleRule_GetSelectorText, void,
|
|
RawServoStyleRuleBorrowed rule, nsAString* result)
|
|
SERVO_BINDING_FUNC(Servo_MediaRule_GetMedia, RawServoMediaListStrong,
|
|
RawServoMediaRuleBorrowed rule)
|
|
SERVO_BINDING_FUNC(Servo_MediaRule_GetRules, ServoCssRulesStrong,
|
|
RawServoMediaRuleBorrowed rule)
|
|
SERVO_BINDING_FUNC(Servo_NamespaceRule_GetPrefix, nsIAtom*,
|
|
RawServoNamespaceRuleBorrowed rule)
|
|
SERVO_BINDING_FUNC(Servo_NamespaceRule_GetURI, nsIAtom*,
|
|
RawServoNamespaceRuleBorrowed rule)
|
|
|
|
// Animations API
|
|
SERVO_BINDING_FUNC(Servo_ParseProperty,
|
|
RawServoDeclarationBlockStrong,
|
|
const nsACString* property, const nsACString* value,
|
|
const nsACString* base,
|
|
const GeckoParserExtraData* data)
|
|
SERVO_BINDING_FUNC(Servo_ParseEasing, bool,
|
|
const nsAString* easing,
|
|
const nsACString* base,
|
|
const GeckoParserExtraData* data,
|
|
nsTimingFunctionBorrowedMut output)
|
|
SERVO_BINDING_FUNC(Servo_GetComputedKeyframeValues, void,
|
|
RawGeckoKeyframeListBorrowed keyframes,
|
|
ServoComputedValuesBorrowed style,
|
|
ServoComputedValuesBorrowedOrNull parent_style,
|
|
RawServoStyleSetBorrowed set,
|
|
RawGeckoComputedKeyframeValuesListBorrowedMut result)
|
|
SERVO_BINDING_FUNC(Servo_AnimationValueMap_Push, void,
|
|
RawServoAnimationValueMapBorrowed,
|
|
nsCSSPropertyID property,
|
|
RawServoAnimationValueBorrowed value)
|
|
|
|
// AnimationValues handling
|
|
SERVO_BINDING_FUNC(Servo_AnimationValues_Interpolate,
|
|
RawServoAnimationValueStrong,
|
|
RawServoAnimationValueBorrowed from,
|
|
RawServoAnimationValueBorrowed to,
|
|
double progress)
|
|
SERVO_BINDING_FUNC(Servo_AnimationValue_Serialize, void,
|
|
RawServoAnimationValueBorrowed value,
|
|
nsCSSPropertyID property,
|
|
nsAString* buffer)
|
|
SERVO_BINDING_FUNC(Servo_AnimationValue_GetOpacity, float,
|
|
RawServoAnimationValueBorrowed value)
|
|
SERVO_BINDING_FUNC(Servo_AnimationValue_GetTransform, void,
|
|
RawServoAnimationValueBorrowed value,
|
|
RefPtr<nsCSSValueSharedList>* list)
|
|
SERVO_BINDING_FUNC(Servo_AnimationValue_DeepEqual, bool,
|
|
RawServoAnimationValueBorrowed,
|
|
RawServoAnimationValueBorrowed)
|
|
|
|
// Style attribute
|
|
SERVO_BINDING_FUNC(Servo_ParseStyleAttribute, RawServoDeclarationBlockStrong,
|
|
const nsACString* data,
|
|
const nsACString* base,
|
|
const GeckoParserExtraData* extraData)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_CreateEmpty,
|
|
RawServoDeclarationBlockStrong)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_Clone, RawServoDeclarationBlockStrong,
|
|
RawServoDeclarationBlockBorrowed declarations)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_Equals, bool,
|
|
RawServoDeclarationBlockBorrowed a,
|
|
RawServoDeclarationBlockBorrowed b)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_GetCssText, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsAString* result)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SerializeOneValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property, nsAString* buffer)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_Count, uint32_t,
|
|
RawServoDeclarationBlockBorrowed declarations)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_GetNthProperty, bool,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
uint32_t index, nsAString* result)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_GetPropertyValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
const nsACString* property, nsAString* value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_GetPropertyValueById, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property, nsAString* value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_GetPropertyIsImportant, bool,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
const nsACString* property)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetProperty, bool,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
const nsACString* property,
|
|
const nsACString* value, bool is_important,
|
|
const nsACString* base,
|
|
const GeckoParserExtraData* data)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetPropertyById, bool,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
const nsACString* value, bool is_important,
|
|
const nsACString* base,
|
|
const GeckoParserExtraData* data)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_RemoveProperty, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
const nsACString* property)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_RemovePropertyById, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property)
|
|
|
|
// presentation attributes
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_PropertyIsSet, bool,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetIdentStringValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
nsIAtom* value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetKeywordValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
int32_t value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetIntValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
int32_t value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetPixelValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
float value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetPercentValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
float value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetAutoValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetCurrentColor, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetColorValue, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
nsCSSPropertyID property,
|
|
nscolor value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetFontFamily, void,
|
|
RawServoDeclarationBlockBorrowed declarations,
|
|
const nsAString& value)
|
|
SERVO_BINDING_FUNC(Servo_DeclarationBlock_SetTextDecorationColorOverride, void,
|
|
RawServoDeclarationBlockBorrowed declarations)
|
|
|
|
// MediaList
|
|
SERVO_BINDING_FUNC(Servo_MediaList_GetText, void,
|
|
RawServoMediaListBorrowed list, nsAString* result)
|
|
SERVO_BINDING_FUNC(Servo_MediaList_SetText, void,
|
|
RawServoMediaListBorrowed list, const nsACString* text)
|
|
SERVO_BINDING_FUNC(Servo_MediaList_GetLength, uint32_t,
|
|
RawServoMediaListBorrowed list)
|
|
SERVO_BINDING_FUNC(Servo_MediaList_GetMediumAt, bool,
|
|
RawServoMediaListBorrowed list, uint32_t index,
|
|
nsAString* result)
|
|
SERVO_BINDING_FUNC(Servo_MediaList_AppendMedium, void,
|
|
RawServoMediaListBorrowed list, const nsACString* new_medium)
|
|
SERVO_BINDING_FUNC(Servo_MediaList_DeleteMedium, bool,
|
|
RawServoMediaListBorrowed list, const nsACString* old_medium)
|
|
|
|
// CSS supports()
|
|
SERVO_BINDING_FUNC(Servo_CSSSupports2, bool,
|
|
const nsACString* name, const nsACString* value)
|
|
SERVO_BINDING_FUNC(Servo_CSSSupports, bool,
|
|
const nsACString* cond)
|
|
|
|
// Computed style data
|
|
SERVO_BINDING_FUNC(Servo_ComputedValues_GetForAnonymousBox,
|
|
ServoComputedValuesStrong,
|
|
ServoComputedValuesBorrowedOrNull parent_style_or_null,
|
|
nsIAtom* pseudoTag, bool skip_display_fixup,
|
|
RawServoStyleSetBorrowed set)
|
|
SERVO_BINDING_FUNC(Servo_ComputedValues_Inherit, ServoComputedValuesStrong,
|
|
RawServoStyleSetBorrowed set,
|
|
ServoComputedValuesBorrowedOrNull parent_style)
|
|
|
|
// Initialize Servo components. Should be called exactly once at startup.
|
|
SERVO_BINDING_FUNC(Servo_Initialize, void)
|
|
// Shut down Servo components. Should be called exactly once at shutdown.
|
|
SERVO_BINDING_FUNC(Servo_Shutdown, void)
|
|
|
|
// Gets the snapshot for the element. This will return null if the element
|
|
// has never been styled, since snapshotting in that case is wasted work.
|
|
SERVO_BINDING_FUNC(Servo_Element_GetSnapshot, ServoElementSnapshot*,
|
|
RawGeckoElementBorrowed element)
|
|
|
|
// Restyle and change hints.
|
|
SERVO_BINDING_FUNC(Servo_NoteExplicitHints, void, RawGeckoElementBorrowed element,
|
|
nsRestyleHint restyle_hint, nsChangeHint change_hint)
|
|
SERVO_BINDING_FUNC(Servo_TakeChangeHint, nsChangeHint, RawGeckoElementBorrowed element)
|
|
SERVO_BINDING_FUNC(Servo_ResolveStyle, ServoComputedValuesStrong,
|
|
RawGeckoElementBorrowed element,
|
|
RawServoStyleSetBorrowed set,
|
|
bool allow_stale)
|
|
SERVO_BINDING_FUNC(Servo_ResolvePseudoStyle, ServoComputedValuesStrong,
|
|
RawGeckoElementBorrowed element, nsIAtom* pseudo_tag,
|
|
bool is_probe, RawServoStyleSetBorrowed set)
|
|
|
|
// Resolves style for an element or pseudo-element without processing pending
|
|
// restyles first. The Element and its ancestors may be unstyled, have pending
|
|
// restyles, or be in a display:none subtree. Styles are cached when possible,
|
|
// though caching is not possible within display:none subtrees, and the styles
|
|
// may be invalidated by already-scheduled restyles.
|
|
//
|
|
// The tree must be in a consistent state such that a normal traversal could be
|
|
// performed, and this function maintains that invariant.
|
|
SERVO_BINDING_FUNC(Servo_ResolveStyleLazily, ServoComputedValuesStrong,
|
|
RawGeckoElementBorrowed element, nsIAtom* pseudo_tag,
|
|
RawServoStyleSetBorrowed set)
|
|
|
|
// Use ServoStyleSet::PrepareAndTraverseSubtree instead of calling this
|
|
// directly
|
|
SERVO_BINDING_FUNC(Servo_TraverseSubtree, bool,
|
|
RawGeckoElementBorrowed root, RawServoStyleSetBorrowed set,
|
|
mozilla::TraversalRootBehavior root_behavior)
|
|
|
|
// Assert that the tree has no pending or unconsumed restyles.
|
|
SERVO_BINDING_FUNC(Servo_AssertTreeIsClean, void, RawGeckoElementBorrowed root)
|
|
|
|
// Style-struct management.
|
|
#define STYLE_STRUCT(name, checkdata_cb) \
|
|
struct nsStyle##name; \
|
|
SERVO_BINDING_FUNC(Servo_GetStyle##name, const nsStyle##name*, \
|
|
ServoComputedValuesBorrowedOrNull computed_values)
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
|
|
// AddRef / Release functions
|
|
#define SERVO_ARC_TYPE(name_, type_) \
|
|
SERVO_BINDING_FUNC(Servo_##name_##_AddRef, void, type_##Borrowed) \
|
|
SERVO_BINDING_FUNC(Servo_##name_##_Release, void, type_##Borrowed)
|
|
#include "mozilla/ServoArcTypeList.h"
|
|
#undef SERVO_ARC_TYPE
|