mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
style: Use rust types for background-size.
Hopefully straight-forward. Differential Revision: https://phabricator.services.mozilla.com/D19625
This commit is contained in:
parent
1e6338e1ee
commit
07cb325402
6 changed files with 27 additions and 137 deletions
|
@ -83,6 +83,7 @@ include = [
|
||||||
"MaxSize",
|
"MaxSize",
|
||||||
"FlexBasis",
|
"FlexBasis",
|
||||||
"Position",
|
"Position",
|
||||||
|
"BackgroundSize",
|
||||||
]
|
]
|
||||||
item_types = ["enums", "structs", "typedefs"]
|
item_types = ["enums", "structs", "typedefs"]
|
||||||
|
|
||||||
|
@ -157,6 +158,10 @@ item_types = ["enums", "structs", "typedefs"]
|
||||||
static inline StyleGenericPosition FromPercentage(float);
|
static inline StyleGenericPosition FromPercentage(float);
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
"GenericBackgroundSize" = """
|
||||||
|
bool IsInitialValue() const;
|
||||||
|
"""
|
||||||
|
|
||||||
"Rect" = """
|
"Rect" = """
|
||||||
// Defined in nsStyleCoord.h
|
// Defined in nsStyleCoord.h
|
||||||
template<typename Predicate> inline bool All(Predicate) const;
|
template<typename Predicate> inline bool All(Predicate) const;
|
||||||
|
|
|
@ -23,13 +23,10 @@ use crate::values::computed::url::ComputedImageUrl;
|
||||||
use crate::values::computed::{Angle, Gradient, Image};
|
use crate::values::computed::{Angle, Gradient, Image};
|
||||||
use crate::values::computed::{Integer, LengthPercentage};
|
use crate::values::computed::{Integer, LengthPercentage};
|
||||||
use crate::values::computed::{Length, Percentage, TextAlign};
|
use crate::values::computed::{Length, Percentage, TextAlign};
|
||||||
use crate::values::computed::{LengthPercentageOrAuto, NonNegativeLengthPercentageOrAuto};
|
|
||||||
use crate::values::generics::box_::VerticalAlign;
|
use crate::values::generics::box_::VerticalAlign;
|
||||||
use crate::values::generics::grid::{TrackListValue, TrackSize};
|
use crate::values::generics::grid::{TrackListValue, TrackSize};
|
||||||
use crate::values::generics::image::{CompatMode, GradientItem, Image as GenericImage};
|
use crate::values::generics::image::{CompatMode, GradientItem, Image as GenericImage};
|
||||||
use crate::values::generics::length::LengthPercentageOrAuto as GenericLengthPercentageOrAuto;
|
|
||||||
use crate::values::generics::rect::Rect;
|
use crate::values::generics::rect::Rect;
|
||||||
use crate::values::generics::NonNegative;
|
|
||||||
use app_units::Au;
|
use app_units::Au;
|
||||||
use std::f32::consts::PI;
|
use std::f32::consts::PI;
|
||||||
use style_traits::values::specified::AllowedNumericType;
|
use style_traits::values::specified::AllowedNumericType;
|
||||||
|
@ -62,42 +59,6 @@ impl From<nsStyleCoord_CalcValue> for LengthPercentage {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl NonNegativeLengthPercentageOrAuto {
|
|
||||||
/// Convert this value in an appropriate `nsStyleCoord::CalcValue`.
|
|
||||||
pub fn to_calc_value(&self) -> Option<nsStyleCoord_CalcValue> {
|
|
||||||
match *self {
|
|
||||||
GenericLengthPercentageOrAuto::LengthPercentage(ref len) => Some(From::from(len.0)),
|
|
||||||
GenericLengthPercentageOrAuto::Auto => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<nsStyleCoord_CalcValue> for LengthPercentageOrAuto {
|
|
||||||
fn from(other: nsStyleCoord_CalcValue) -> LengthPercentageOrAuto {
|
|
||||||
GenericLengthPercentageOrAuto::LengthPercentage(LengthPercentage::from(other))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// FIXME(emilio): A lot of these impl From should probably become explicit or
|
|
||||||
// disappear as we move more stuff to cbindgen.
|
|
||||||
impl From<nsStyleCoord_CalcValue> for NonNegativeLengthPercentageOrAuto {
|
|
||||||
fn from(other: nsStyleCoord_CalcValue) -> Self {
|
|
||||||
GenericLengthPercentageOrAuto::LengthPercentage(NonNegative(
|
|
||||||
LengthPercentage::with_clamping_mode(
|
|
||||||
Au(other.mLength).into(),
|
|
||||||
if other.mHasPercent {
|
|
||||||
Some(Percentage(other.mPercent))
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
},
|
|
||||||
AllowedNumericType::NonNegative,
|
|
||||||
/* was_calc = */ true,
|
|
||||||
),
|
|
||||||
))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<Angle> for CoordDataValue {
|
impl From<Angle> for CoordDataValue {
|
||||||
fn from(reference: Angle) -> Self {
|
fn from(reference: Angle) -> Self {
|
||||||
CoordDataValue::Degree(reference.degrees())
|
CoordDataValue::Degree(reference.degrees())
|
||||||
|
|
|
@ -3797,80 +3797,12 @@ fn static_assert() {
|
||||||
% endfor
|
% endfor
|
||||||
|
|
||||||
<%self:simple_image_array_property name="size" shorthand="${shorthand}" field_name="mSize">
|
<%self:simple_image_array_property name="size" shorthand="${shorthand}" field_name="mSize">
|
||||||
use crate::gecko_bindings::structs::nsStyleImageLayers_Size_Dimension;
|
servo
|
||||||
use crate::gecko_bindings::structs::nsStyleImageLayers_Size_DimensionType;
|
|
||||||
use crate::gecko_bindings::structs::{nsStyleCoord_CalcValue, nsStyleImageLayers_Size};
|
|
||||||
use crate::values::generics::background::BackgroundSize;
|
|
||||||
|
|
||||||
let mut width = nsStyleCoord_CalcValue::new();
|
|
||||||
let mut height = nsStyleCoord_CalcValue::new();
|
|
||||||
|
|
||||||
let (w_type, h_type) = match servo {
|
|
||||||
BackgroundSize::Explicit { width: explicit_width, height: explicit_height } => {
|
|
||||||
let mut w_type = nsStyleImageLayers_Size_DimensionType::eAuto;
|
|
||||||
let mut h_type = nsStyleImageLayers_Size_DimensionType::eAuto;
|
|
||||||
if let Some(w) = explicit_width.to_calc_value() {
|
|
||||||
width = w;
|
|
||||||
w_type = nsStyleImageLayers_Size_DimensionType::eLengthPercentage;
|
|
||||||
}
|
|
||||||
if let Some(h) = explicit_height.to_calc_value() {
|
|
||||||
height = h;
|
|
||||||
h_type = nsStyleImageLayers_Size_DimensionType::eLengthPercentage;
|
|
||||||
}
|
|
||||||
(w_type, h_type)
|
|
||||||
}
|
|
||||||
BackgroundSize::Cover => {
|
|
||||||
(
|
|
||||||
nsStyleImageLayers_Size_DimensionType::eCover,
|
|
||||||
nsStyleImageLayers_Size_DimensionType::eCover,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
BackgroundSize::Contain => {
|
|
||||||
(
|
|
||||||
nsStyleImageLayers_Size_DimensionType::eContain,
|
|
||||||
nsStyleImageLayers_Size_DimensionType::eContain,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
nsStyleImageLayers_Size {
|
|
||||||
mWidth: nsStyleImageLayers_Size_Dimension { _base: width },
|
|
||||||
mHeight: nsStyleImageLayers_Size_Dimension { _base: height },
|
|
||||||
mWidthType: w_type as u8,
|
|
||||||
mHeightType: h_type as u8,
|
|
||||||
}
|
|
||||||
</%self:simple_image_array_property>
|
</%self:simple_image_array_property>
|
||||||
|
|
||||||
pub fn clone_${shorthand}_size(&self) -> longhands::${shorthand}_size::computed_value::T {
|
pub fn clone_${shorthand}_size(&self) -> longhands::${shorthand}_size::computed_value::T {
|
||||||
use crate::gecko_bindings::structs::nsStyleCoord_CalcValue as CalcValue;
|
|
||||||
use crate::gecko_bindings::structs::nsStyleImageLayers_Size_DimensionType as DimensionType;
|
|
||||||
use crate::values::computed::NonNegativeLengthPercentageOrAuto;
|
|
||||||
use crate::values::generics::background::BackgroundSize;
|
|
||||||
|
|
||||||
fn to_servo(value: CalcValue, ty: u8) -> NonNegativeLengthPercentageOrAuto {
|
|
||||||
if ty == DimensionType::eAuto as u8 {
|
|
||||||
NonNegativeLengthPercentageOrAuto::auto()
|
|
||||||
} else {
|
|
||||||
debug_assert_eq!(ty, DimensionType::eLengthPercentage as u8);
|
|
||||||
value.into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
longhands::${shorthand}_size::computed_value::List(
|
longhands::${shorthand}_size::computed_value::List(
|
||||||
self.gecko.${image_layers_field}.mLayers.iter().map(|ref layer| {
|
self.gecko.${image_layers_field}.mLayers.iter().map(|layer| layer.mSize).collect()
|
||||||
if DimensionType::eCover as u8 == layer.mSize.mWidthType {
|
|
||||||
debug_assert_eq!(layer.mSize.mHeightType, DimensionType::eCover as u8);
|
|
||||||
return BackgroundSize::Cover
|
|
||||||
}
|
|
||||||
if DimensionType::eContain as u8 == layer.mSize.mWidthType {
|
|
||||||
debug_assert_eq!(layer.mSize.mHeightType, DimensionType::eContain as u8);
|
|
||||||
return BackgroundSize::Contain
|
|
||||||
}
|
|
||||||
BackgroundSize::Explicit {
|
|
||||||
width: to_servo(layer.mSize.mWidth._base, layer.mSize.mWidthType),
|
|
||||||
height: to_servo(layer.mSize.mHeight._base, layer.mSize.mHeightType),
|
|
||||||
}
|
|
||||||
}).collect()
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,19 +6,8 @@
|
||||||
|
|
||||||
use crate::values::computed::length::NonNegativeLengthPercentage;
|
use crate::values::computed::length::NonNegativeLengthPercentage;
|
||||||
use crate::values::generics::background::BackgroundSize as GenericBackgroundSize;
|
use crate::values::generics::background::BackgroundSize as GenericBackgroundSize;
|
||||||
use crate::values::generics::length::LengthPercentageOrAuto;
|
|
||||||
|
|
||||||
pub use crate::values::specified::background::BackgroundRepeat;
|
pub use crate::values::specified::background::BackgroundRepeat;
|
||||||
|
|
||||||
/// A computed value for the `background-size` property.
|
/// A computed value for the `background-size` property.
|
||||||
pub type BackgroundSize = GenericBackgroundSize<NonNegativeLengthPercentage>;
|
pub type BackgroundSize = GenericBackgroundSize<NonNegativeLengthPercentage>;
|
||||||
|
|
||||||
impl BackgroundSize {
|
|
||||||
/// Returns `auto auto`.
|
|
||||||
pub fn auto() -> Self {
|
|
||||||
GenericBackgroundSize::Explicit {
|
|
||||||
width: LengthPercentageOrAuto::auto(),
|
|
||||||
height: LengthPercentageOrAuto::auto(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
//! Generic types for CSS values related to backgrounds.
|
//! Generic types for CSS values related to backgrounds.
|
||||||
|
|
||||||
use crate::values::generics::length::LengthPercentageOrAuto;
|
use crate::values::generics::length::{LengthPercentageOrAuto, GenericLengthPercentageOrAuto};
|
||||||
use std::fmt::{self, Write};
|
use std::fmt::{self, Write};
|
||||||
use style_traits::{CssWriter, ToCss};
|
use style_traits::{CssWriter, ToCss};
|
||||||
|
|
||||||
|
@ -22,13 +22,14 @@ use style_traits::{CssWriter, ToCss};
|
||||||
ToAnimatedZero,
|
ToAnimatedZero,
|
||||||
ToComputedValue,
|
ToComputedValue,
|
||||||
)]
|
)]
|
||||||
pub enum BackgroundSize<LengthPercentage> {
|
#[repr(C, u8)]
|
||||||
|
pub enum GenericBackgroundSize<LengthPercent> {
|
||||||
/// `<width> <height>`
|
/// `<width> <height>`
|
||||||
Explicit {
|
ExplicitSize {
|
||||||
/// Explicit width.
|
/// Explicit width.
|
||||||
width: LengthPercentageOrAuto<LengthPercentage>,
|
width: GenericLengthPercentageOrAuto<LengthPercent>,
|
||||||
/// Explicit height.
|
/// Explicit height.
|
||||||
height: LengthPercentageOrAuto<LengthPercentage>,
|
height: GenericLengthPercentageOrAuto<LengthPercent>,
|
||||||
},
|
},
|
||||||
/// `cover`
|
/// `cover`
|
||||||
#[animation(error)]
|
#[animation(error)]
|
||||||
|
@ -38,6 +39,8 @@ pub enum BackgroundSize<LengthPercentage> {
|
||||||
Contain,
|
Contain,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub use self::GenericBackgroundSize as BackgroundSize;
|
||||||
|
|
||||||
impl<LengthPercentage> ToCss for BackgroundSize<LengthPercentage>
|
impl<LengthPercentage> ToCss for BackgroundSize<LengthPercentage>
|
||||||
where
|
where
|
||||||
LengthPercentage: ToCss,
|
LengthPercentage: ToCss,
|
||||||
|
@ -47,7 +50,7 @@ where
|
||||||
W: Write,
|
W: Write,
|
||||||
{
|
{
|
||||||
match self {
|
match self {
|
||||||
BackgroundSize::Explicit { width, height } => {
|
BackgroundSize::ExplicitSize { width, height } => {
|
||||||
width.to_css(dest)?;
|
width.to_css(dest)?;
|
||||||
// NOTE(emilio): We should probably simplify all these in case
|
// NOTE(emilio): We should probably simplify all these in case
|
||||||
// `width == `height`, but all other browsers agree on only
|
// `width == `height`, but all other browsers agree on only
|
||||||
|
@ -63,3 +66,13 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<LengthPercentage> BackgroundSize<LengthPercentage> {
|
||||||
|
/// Returns `auto auto`.
|
||||||
|
pub fn auto() -> Self {
|
||||||
|
GenericBackgroundSize::ExplicitSize {
|
||||||
|
width: LengthPercentageOrAuto::Auto,
|
||||||
|
height: LengthPercentageOrAuto::Auto,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ impl Parse for BackgroundSize {
|
||||||
let height = input
|
let height = input
|
||||||
.try(|i| NonNegativeLengthPercentageOrAuto::parse(context, i))
|
.try(|i| NonNegativeLengthPercentageOrAuto::parse(context, i))
|
||||||
.unwrap_or(NonNegativeLengthPercentageOrAuto::auto());
|
.unwrap_or(NonNegativeLengthPercentageOrAuto::auto());
|
||||||
return Ok(GenericBackgroundSize::Explicit { width, height });
|
return Ok(GenericBackgroundSize::ExplicitSize { width, height });
|
||||||
}
|
}
|
||||||
Ok(try_match_ident_ignore_ascii_case! { input,
|
Ok(try_match_ident_ignore_ascii_case! { input,
|
||||||
"cover" => GenericBackgroundSize::Cover,
|
"cover" => GenericBackgroundSize::Cover,
|
||||||
|
@ -35,16 +35,6 @@ impl Parse for BackgroundSize {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl BackgroundSize {
|
|
||||||
/// Returns `auto auto`.
|
|
||||||
pub fn auto() -> Self {
|
|
||||||
GenericBackgroundSize::Explicit {
|
|
||||||
width: NonNegativeLengthPercentageOrAuto::auto(),
|
|
||||||
height: NonNegativeLengthPercentageOrAuto::auto(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// One of the keywords for `background-repeat`.
|
/// One of the keywords for `background-repeat`.
|
||||||
#[derive(
|
#[derive(
|
||||||
Clone,
|
Clone,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue