mirror of
https://github.com/servo/servo.git
synced 2025-06-25 01:24:37 +01:00
586 lines
25 KiB
Rust
586 lines
25 KiB
Rust
/* 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/. */
|
|
|
|
//! This module contains conversion helpers between Servo and Gecko types
|
|
//! Ideally, it would be in geckolib itself, but coherence
|
|
//! forces us to keep the traits and implementations here
|
|
|
|
#![allow(unsafe_code)]
|
|
|
|
use app_units::Au;
|
|
use gecko::values::{convert_rgba_to_nscolor, GeckoStyleCoordConvertible};
|
|
use gecko_bindings::bindings::{Gecko_CreateGradient, Gecko_SetGradientImageValue, Gecko_SetLayerImageImageValue};
|
|
use gecko_bindings::bindings::{Gecko_InitializeImageCropRect, Gecko_SetImageElement};
|
|
use gecko_bindings::structs::{nsCSSUnit, nsStyleCoord_CalcValue, nsStyleImage};
|
|
use gecko_bindings::structs::{nsresult, SheetType};
|
|
use gecko_bindings::sugar::ns_style_coord::{CoordDataValue, CoordDataMut};
|
|
use stylesheets::{Origin, RulesMutateError};
|
|
use values::computed::{Angle, CalcLengthOrPercentage, Gradient, Image};
|
|
use values::computed::{LengthOrPercentage, LengthOrPercentageOrAuto};
|
|
use values::generics::image::{CompatMode, Image as GenericImage, GradientItem};
|
|
use values::specified::length::Percentage;
|
|
|
|
impl From<CalcLengthOrPercentage> for nsStyleCoord_CalcValue {
|
|
fn from(other: CalcLengthOrPercentage) -> nsStyleCoord_CalcValue {
|
|
let has_percentage = other.percentage.is_some();
|
|
nsStyleCoord_CalcValue {
|
|
mLength: other.unclamped_length().0,
|
|
mPercent: other.percentage.map_or(0., |p| p.0),
|
|
mHasPercent: has_percentage,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<nsStyleCoord_CalcValue> for CalcLengthOrPercentage {
|
|
fn from(other: nsStyleCoord_CalcValue) -> CalcLengthOrPercentage {
|
|
let percentage = if other.mHasPercent {
|
|
Some(Percentage(other.mPercent))
|
|
} else {
|
|
None
|
|
};
|
|
Self::new(Au(other.mLength), percentage)
|
|
}
|
|
}
|
|
|
|
impl From<LengthOrPercentage> for nsStyleCoord_CalcValue {
|
|
fn from(other: LengthOrPercentage) -> nsStyleCoord_CalcValue {
|
|
match other {
|
|
LengthOrPercentage::Length(au) => {
|
|
nsStyleCoord_CalcValue {
|
|
mLength: au.0,
|
|
mPercent: 0.0,
|
|
mHasPercent: false,
|
|
}
|
|
},
|
|
LengthOrPercentage::Percentage(pc) => {
|
|
nsStyleCoord_CalcValue {
|
|
mLength: 0,
|
|
mPercent: pc.0,
|
|
mHasPercent: true,
|
|
}
|
|
},
|
|
LengthOrPercentage::Calc(calc) => calc.into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl LengthOrPercentageOrAuto {
|
|
/// Convert this value in an appropriate `nsStyleCoord::CalcValue`.
|
|
pub fn to_calc_value(&self) -> Option<nsStyleCoord_CalcValue> {
|
|
match *self {
|
|
LengthOrPercentageOrAuto::Length(au) => {
|
|
Some(nsStyleCoord_CalcValue {
|
|
mLength: au.0,
|
|
mPercent: 0.0,
|
|
mHasPercent: false,
|
|
})
|
|
},
|
|
LengthOrPercentageOrAuto::Percentage(pc) => {
|
|
Some(nsStyleCoord_CalcValue {
|
|
mLength: 0,
|
|
mPercent: pc.0,
|
|
mHasPercent: true,
|
|
})
|
|
},
|
|
LengthOrPercentageOrAuto::Calc(calc) => Some(calc.into()),
|
|
LengthOrPercentageOrAuto::Auto => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<nsStyleCoord_CalcValue> for LengthOrPercentage {
|
|
fn from(other: nsStyleCoord_CalcValue) -> LengthOrPercentage {
|
|
match (other.mHasPercent, other.mLength) {
|
|
(false, _) => LengthOrPercentage::Length(Au(other.mLength)),
|
|
(true, 0) => LengthOrPercentage::Percentage(Percentage(other.mPercent)),
|
|
_ => LengthOrPercentage::Calc(other.into()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Angle> for CoordDataValue {
|
|
fn from(reference: Angle) -> Self {
|
|
match reference {
|
|
Angle::Degree(val) => CoordDataValue::Degree(val),
|
|
Angle::Gradian(val) => CoordDataValue::Grad(val),
|
|
Angle::Radian(val) => CoordDataValue::Radian(val),
|
|
Angle::Turn(val) => CoordDataValue::Turn(val),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Angle {
|
|
/// Converts Angle struct into (value, unit) pair.
|
|
pub fn to_gecko_values(&self) -> (f32, nsCSSUnit) {
|
|
match *self {
|
|
Angle::Degree(val) => (val, nsCSSUnit::eCSSUnit_Degree),
|
|
Angle::Gradian(val) => (val, nsCSSUnit::eCSSUnit_Grad),
|
|
Angle::Radian(val) => (val, nsCSSUnit::eCSSUnit_Radian),
|
|
Angle::Turn(val) => (val, nsCSSUnit::eCSSUnit_Turn),
|
|
}
|
|
}
|
|
|
|
/// Converts gecko (value, unit) pair into Angle struct
|
|
pub fn from_gecko_values(value: f32, unit: nsCSSUnit) -> Angle {
|
|
match unit {
|
|
nsCSSUnit::eCSSUnit_Degree => Angle::Degree(value),
|
|
nsCSSUnit::eCSSUnit_Grad => Angle::Gradian(value),
|
|
nsCSSUnit::eCSSUnit_Radian => Angle::Radian(value),
|
|
nsCSSUnit::eCSSUnit_Turn => Angle::Turn(value),
|
|
_ => panic!("Unexpected unit {:?} for angle", unit),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl nsStyleImage {
|
|
/// Set a given Servo `Image` value into this `nsStyleImage`.
|
|
pub fn set(&mut self, image: Image, cacheable: &mut bool) {
|
|
match image {
|
|
GenericImage::Gradient(gradient) => {
|
|
self.set_gradient(gradient)
|
|
},
|
|
GenericImage::Url(ref url) => {
|
|
unsafe {
|
|
Gecko_SetLayerImageImageValue(self, url.image_value.clone().unwrap().get());
|
|
// We unfortunately must make any url() value uncacheable, since
|
|
// the applicable declarations cache is not per document, but
|
|
// global, and the imgRequestProxy objects we store in the style
|
|
// structs don't like to be tracked by more than one document.
|
|
//
|
|
// FIXME(emilio): With the scoped TLS thing this is no longer
|
|
// true, remove this line in a follow-up!
|
|
*cacheable = false;
|
|
}
|
|
},
|
|
GenericImage::Rect(ref image_rect) => {
|
|
unsafe {
|
|
Gecko_SetLayerImageImageValue(self, image_rect.url.image_value.clone().unwrap().get());
|
|
Gecko_InitializeImageCropRect(self);
|
|
|
|
// We unfortunately must make any url() value uncacheable, since
|
|
// the applicable declarations cache is not per document, but
|
|
// global, and the imgRequestProxy objects we store in the style
|
|
// structs don't like to be tracked by more than one document.
|
|
//
|
|
// FIXME(emilio): With the scoped TLS thing this is no longer
|
|
// true, remove this line in a follow-up!
|
|
*cacheable = false;
|
|
|
|
// Set CropRect
|
|
let ref mut rect = *self.mCropRect.mPtr;
|
|
image_rect.top.to_gecko_style_coord(&mut rect.data_at_mut(0));
|
|
image_rect.right.to_gecko_style_coord(&mut rect.data_at_mut(1));
|
|
image_rect.bottom.to_gecko_style_coord(&mut rect.data_at_mut(2));
|
|
image_rect.left.to_gecko_style_coord(&mut rect.data_at_mut(3));
|
|
}
|
|
}
|
|
GenericImage::Element(ref element) => {
|
|
unsafe {
|
|
Gecko_SetImageElement(self, element.as_ptr());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn set_gradient(&mut self, gradient: Gradient) {
|
|
use gecko_bindings::structs::{NS_STYLE_GRADIENT_SHAPE_CIRCULAR, NS_STYLE_GRADIENT_SHAPE_ELLIPTICAL};
|
|
use gecko_bindings::structs::{NS_STYLE_GRADIENT_SHAPE_LINEAR, NS_STYLE_GRADIENT_SIZE_CLOSEST_CORNER};
|
|
use gecko_bindings::structs::{NS_STYLE_GRADIENT_SIZE_CLOSEST_SIDE, NS_STYLE_GRADIENT_SIZE_EXPLICIT_SIZE};
|
|
use gecko_bindings::structs::{NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER, NS_STYLE_GRADIENT_SIZE_FARTHEST_SIDE};
|
|
use gecko_bindings::structs::nsStyleCoord;
|
|
use values::computed::image::LineDirection;
|
|
use values::generics::image::{Circle, Ellipse, EndingShape, GradientKind, ShapeExtent};
|
|
use values::specified::position::{X, Y};
|
|
|
|
let stop_count = gradient.items.len();
|
|
if stop_count >= ::std::u32::MAX as usize {
|
|
warn!("stylo: Prevented overflow due to too many gradient stops");
|
|
return;
|
|
}
|
|
|
|
let gecko_gradient = match gradient.kind {
|
|
GradientKind::Linear(direction) => {
|
|
let gecko_gradient = unsafe {
|
|
Gecko_CreateGradient(NS_STYLE_GRADIENT_SHAPE_LINEAR as u8,
|
|
NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER as u8,
|
|
gradient.repeating,
|
|
gradient.compat_mode != CompatMode::Modern,
|
|
gradient.compat_mode == CompatMode::Moz,
|
|
stop_count as u32)
|
|
};
|
|
|
|
match direction {
|
|
LineDirection::Angle(angle) => {
|
|
unsafe {
|
|
(*gecko_gradient).mAngle.set(angle);
|
|
(*gecko_gradient).mBgPosX.set_value(CoordDataValue::None);
|
|
(*gecko_gradient).mBgPosY.set_value(CoordDataValue::None);
|
|
}
|
|
},
|
|
LineDirection::Corner(horiz, vert) => {
|
|
let percent_x = match horiz {
|
|
X::Left => 0.0,
|
|
X::Right => 1.0,
|
|
};
|
|
let percent_y = match vert {
|
|
Y::Top => 0.0,
|
|
Y::Bottom => 1.0,
|
|
};
|
|
|
|
unsafe {
|
|
(*gecko_gradient).mAngle.set_value(CoordDataValue::None);
|
|
(*gecko_gradient).mBgPosX
|
|
.set_value(CoordDataValue::Percent(percent_x));
|
|
(*gecko_gradient).mBgPosY
|
|
.set_value(CoordDataValue::Percent(percent_y));
|
|
}
|
|
},
|
|
#[cfg(feature = "gecko")]
|
|
LineDirection::MozPosition(position, angle) => {
|
|
unsafe {
|
|
if let Some(position) = position {
|
|
(*gecko_gradient).mBgPosX.set(position.horizontal);
|
|
(*gecko_gradient).mBgPosY.set(position.vertical);
|
|
} else {
|
|
(*gecko_gradient).mBgPosX.set_value(CoordDataValue::None);
|
|
(*gecko_gradient).mBgPosY.set_value(CoordDataValue::None);
|
|
}
|
|
if let Some(angle) = angle {
|
|
(*gecko_gradient).mAngle.set(angle);
|
|
} else {
|
|
(*gecko_gradient).mAngle.set_value(CoordDataValue::None);
|
|
}
|
|
}
|
|
},
|
|
}
|
|
gecko_gradient
|
|
},
|
|
GradientKind::Radial(shape, position, angle) => {
|
|
let keyword_to_gecko_size = |keyword| {
|
|
match keyword {
|
|
ShapeExtent::ClosestSide => NS_STYLE_GRADIENT_SIZE_CLOSEST_SIDE,
|
|
ShapeExtent::FarthestSide => NS_STYLE_GRADIENT_SIZE_FARTHEST_SIDE,
|
|
ShapeExtent::ClosestCorner => NS_STYLE_GRADIENT_SIZE_CLOSEST_CORNER,
|
|
ShapeExtent::FarthestCorner => NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER,
|
|
ShapeExtent::Contain => NS_STYLE_GRADIENT_SIZE_CLOSEST_SIDE,
|
|
ShapeExtent::Cover => NS_STYLE_GRADIENT_SIZE_FARTHEST_CORNER,
|
|
}
|
|
};
|
|
let (gecko_shape, gecko_size) = match shape {
|
|
EndingShape::Circle(ref circle) => {
|
|
let size = match *circle {
|
|
Circle::Extent(extent) => {
|
|
keyword_to_gecko_size(extent)
|
|
},
|
|
_ => NS_STYLE_GRADIENT_SIZE_EXPLICIT_SIZE,
|
|
};
|
|
(NS_STYLE_GRADIENT_SHAPE_CIRCULAR as u8, size as u8)
|
|
},
|
|
EndingShape::Ellipse(ref ellipse) => {
|
|
let size = match *ellipse {
|
|
Ellipse::Extent(extent) => {
|
|
keyword_to_gecko_size(extent)
|
|
},
|
|
_ => NS_STYLE_GRADIENT_SIZE_EXPLICIT_SIZE,
|
|
};
|
|
(NS_STYLE_GRADIENT_SHAPE_ELLIPTICAL as u8, size as u8)
|
|
}
|
|
};
|
|
|
|
let gecko_gradient = unsafe {
|
|
Gecko_CreateGradient(gecko_shape,
|
|
gecko_size,
|
|
gradient.repeating,
|
|
gradient.compat_mode != CompatMode::Modern,
|
|
gradient.compat_mode == CompatMode::Moz,
|
|
stop_count as u32)
|
|
};
|
|
|
|
// Clear mBgPos field and set mAngle if angle is set. Otherwise clear it.
|
|
unsafe {
|
|
if let Some(angle) = angle {
|
|
(*gecko_gradient).mAngle.set(angle);
|
|
} else {
|
|
(*gecko_gradient).mAngle.set_value(CoordDataValue::None);
|
|
}
|
|
|
|
(*gecko_gradient).mBgPosX.set_value(CoordDataValue::None);
|
|
(*gecko_gradient).mBgPosY.set_value(CoordDataValue::None);
|
|
}
|
|
|
|
// Setting radius values depending shape
|
|
match shape {
|
|
EndingShape::Circle(Circle::Radius(length)) => {
|
|
unsafe {
|
|
(*gecko_gradient).mRadiusX.set_value(CoordDataValue::Coord(length.0));
|
|
(*gecko_gradient).mRadiusY.set_value(CoordDataValue::Coord(length.0));
|
|
}
|
|
},
|
|
EndingShape::Ellipse(Ellipse::Radii(x, y)) => {
|
|
unsafe {
|
|
(*gecko_gradient).mRadiusX.set(x);
|
|
(*gecko_gradient).mRadiusY.set(y);
|
|
}
|
|
},
|
|
_ => {},
|
|
}
|
|
unsafe {
|
|
(*gecko_gradient).mBgPosX.set(position.horizontal);
|
|
(*gecko_gradient).mBgPosY.set(position.vertical);
|
|
}
|
|
|
|
gecko_gradient
|
|
},
|
|
};
|
|
|
|
for (index, item) in gradient.items.iter().enumerate() {
|
|
// NB: stops are guaranteed to be none in the gecko side by
|
|
// default.
|
|
|
|
let mut gecko_stop = unsafe {
|
|
&mut (*gecko_gradient).mStops[index]
|
|
};
|
|
let mut coord = nsStyleCoord::null();
|
|
|
|
match *item {
|
|
GradientItem::ColorStop(ref stop) => {
|
|
gecko_stop.mColor = convert_rgba_to_nscolor(&stop.color);
|
|
gecko_stop.mIsInterpolationHint = false;
|
|
coord.set(stop.position);
|
|
},
|
|
GradientItem::InterpolationHint(hint) => {
|
|
gecko_stop.mIsInterpolationHint = true;
|
|
coord.set(Some(hint));
|
|
}
|
|
}
|
|
|
|
gecko_stop.mLocation.move_from(coord);
|
|
}
|
|
|
|
unsafe {
|
|
Gecko_SetGradientImageValue(self, gecko_gradient);
|
|
}
|
|
}
|
|
}
|
|
|
|
pub mod basic_shape {
|
|
//! Conversions from and to CSS shape representations.
|
|
|
|
use gecko::values::GeckoStyleCoordConvertible;
|
|
use gecko_bindings::structs;
|
|
use gecko_bindings::structs::{StyleBasicShape, StyleBasicShapeType, StyleFillRule};
|
|
use gecko_bindings::structs::{nsStyleCoord, nsStyleCorners};
|
|
use gecko_bindings::structs::StyleGeometryBox;
|
|
use gecko_bindings::sugar::ns_style_coord::{CoordDataMut, CoordDataValue};
|
|
use std::borrow::Borrow;
|
|
use values::computed::basic_shape::{BasicShape, ShapeRadius};
|
|
use values::computed::border::{BorderCornerRadius, BorderRadius};
|
|
use values::computed::length::LengthOrPercentage;
|
|
use values::computed::position;
|
|
use values::generics::basic_shape::{BasicShape as GenericBasicShape, InsetRect, Polygon};
|
|
use values::generics::basic_shape::{Circle, Ellipse, FillRule};
|
|
use values::generics::basic_shape::{GeometryBox, ShapeBox};
|
|
use values::generics::border::BorderRadius as GenericBorderRadius;
|
|
use values::generics::rect::Rect;
|
|
|
|
// using Borrow so that we can have a non-moving .into()
|
|
impl<T: Borrow<StyleBasicShape>> From<T> for BasicShape {
|
|
fn from(other: T) -> Self {
|
|
let other = other.borrow();
|
|
match other.mType {
|
|
StyleBasicShapeType::Inset => {
|
|
let t = LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[0]);
|
|
let r = LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[1]);
|
|
let b = LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[2]);
|
|
let l = LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[3]);
|
|
let round = (&other.mRadius).into();
|
|
let rect = Rect::new(
|
|
t.expect("inset() offset should be a length, percentage, or calc value"),
|
|
r.expect("inset() offset should be a length, percentage, or calc value"),
|
|
b.expect("inset() offset should be a length, percentage, or calc value"),
|
|
l.expect("inset() offset should be a length, percentage, or calc value"),
|
|
);
|
|
GenericBasicShape::Inset(InsetRect {
|
|
rect: rect,
|
|
round: Some(round),
|
|
})
|
|
}
|
|
StyleBasicShapeType::Circle => {
|
|
GenericBasicShape::Circle(Circle {
|
|
radius: (&other.mCoordinates[0]).into(),
|
|
position: (&other.mPosition).into()
|
|
})
|
|
}
|
|
StyleBasicShapeType::Ellipse => {
|
|
GenericBasicShape::Ellipse(Ellipse {
|
|
semiaxis_x: (&other.mCoordinates[0]).into(),
|
|
semiaxis_y: (&other.mCoordinates[1]).into(),
|
|
position: (&other.mPosition).into()
|
|
})
|
|
}
|
|
StyleBasicShapeType::Polygon => {
|
|
let fill_rule = if other.mFillRule == StyleFillRule::Evenodd {
|
|
FillRule::EvenOdd
|
|
} else {
|
|
FillRule::NonZero
|
|
};
|
|
let mut coords = Vec::with_capacity(other.mCoordinates.len() / 2);
|
|
for i in 0..(other.mCoordinates.len() / 2) {
|
|
let x = 2 * i;
|
|
let y = x + 1;
|
|
coords.push((LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[x])
|
|
.expect("polygon() coordinate should be a length, percentage, or calc value"),
|
|
LengthOrPercentage::from_gecko_style_coord(&other.mCoordinates[y])
|
|
.expect("polygon() coordinate should be a length, percentage, or calc value")
|
|
))
|
|
}
|
|
GenericBasicShape::Polygon(Polygon {
|
|
fill: fill_rule,
|
|
coordinates: coords,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Borrow<nsStyleCorners>> From<T> for BorderRadius {
|
|
fn from(other: T) -> Self {
|
|
let other = other.borrow();
|
|
let get_corner = |index| {
|
|
BorderCornerRadius::new(
|
|
LengthOrPercentage::from_gecko_style_coord(&other.data_at(index))
|
|
.expect("<border-radius> should be a length, percentage, or calc value"),
|
|
LengthOrPercentage::from_gecko_style_coord(&other.data_at(index + 1))
|
|
.expect("<border-radius> should be a length, percentage, or calc value"))
|
|
};
|
|
|
|
GenericBorderRadius {
|
|
top_left: get_corner(0),
|
|
top_right: get_corner(2),
|
|
bottom_right: get_corner(4),
|
|
bottom_left: get_corner(6),
|
|
}
|
|
}
|
|
}
|
|
|
|
// Can't be a From impl since we need to set an existing
|
|
// nsStyleCorners, not create a new one
|
|
impl BorderRadius {
|
|
/// Set this `BorderRadius` into a given `nsStyleCoord`.
|
|
pub fn set_corners(&self, other: &mut nsStyleCorners) {
|
|
let mut set_corner = |field: &BorderCornerRadius, index| {
|
|
field.0.width.to_gecko_style_coord(&mut other.data_at_mut(index));
|
|
field.0.height.to_gecko_style_coord(&mut other.data_at_mut(index + 1));
|
|
};
|
|
set_corner(&self.top_left, 0);
|
|
set_corner(&self.top_right, 2);
|
|
set_corner(&self.bottom_right, 4);
|
|
set_corner(&self.bottom_left, 6);
|
|
}
|
|
}
|
|
|
|
/// We use None for a nonexistant radius, but Gecko uses (0 0 0 0 / 0 0 0 0)
|
|
pub fn set_corners_from_radius(radius: Option<BorderRadius>, other: &mut nsStyleCorners) {
|
|
if let Some(radius) = radius {
|
|
radius.set_corners(other);
|
|
} else {
|
|
for i in 0..8 {
|
|
other.data_at_mut(i).set_value(CoordDataValue::Coord(0));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Can't be a From impl since we need to set an existing
|
|
// Position, not create a new one
|
|
impl From<position::Position> for structs::Position {
|
|
fn from(other: position::Position) -> Self {
|
|
structs::Position {
|
|
mXPosition: other.horizontal.into(),
|
|
mYPosition: other.vertical.into()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Borrow<nsStyleCoord>> From<T> for ShapeRadius {
|
|
fn from(other: T) -> Self {
|
|
let other = other.borrow();
|
|
ShapeRadius::from_gecko_style_coord(other)
|
|
.expect("<shape-radius> should be a length, percentage, calc, or keyword value")
|
|
}
|
|
}
|
|
|
|
impl<T: Borrow<structs::Position>> From<T> for position::Position {
|
|
fn from(other: T) -> Self {
|
|
let other = other.borrow();
|
|
position::Position {
|
|
horizontal: other.mXPosition.into(),
|
|
vertical: other.mYPosition.into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<ShapeBox> for StyleGeometryBox {
|
|
fn from(reference: ShapeBox) -> Self {
|
|
use gecko_bindings::structs::StyleGeometryBox::*;
|
|
match reference {
|
|
ShapeBox::ContentBox => ContentBox,
|
|
ShapeBox::PaddingBox => PaddingBox,
|
|
ShapeBox::BorderBox => BorderBox,
|
|
ShapeBox::MarginBox => MarginBox,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<GeometryBox> for StyleGeometryBox {
|
|
fn from(reference: GeometryBox) -> Self {
|
|
use gecko_bindings::structs::StyleGeometryBox::*;
|
|
match reference {
|
|
GeometryBox::ShapeBox(shape_box) => From::from(shape_box),
|
|
GeometryBox::FillBox => FillBox,
|
|
GeometryBox::StrokeBox => StrokeBox,
|
|
GeometryBox::ViewBox => ViewBox,
|
|
}
|
|
}
|
|
}
|
|
|
|
// Will panic on NoBox
|
|
// Ideally these would be implemented on Option<T>,
|
|
// but coherence doesn't like that and TryFrom isn't stable
|
|
impl From<StyleGeometryBox> for GeometryBox {
|
|
fn from(reference: StyleGeometryBox) -> Self {
|
|
use gecko_bindings::structs::StyleGeometryBox::*;
|
|
match reference {
|
|
ContentBox => GeometryBox::ShapeBox(ShapeBox::ContentBox),
|
|
PaddingBox => GeometryBox::ShapeBox(ShapeBox::PaddingBox),
|
|
BorderBox => GeometryBox::ShapeBox(ShapeBox::BorderBox),
|
|
MarginBox => GeometryBox::ShapeBox(ShapeBox::MarginBox),
|
|
FillBox => GeometryBox::FillBox,
|
|
StrokeBox => GeometryBox::StrokeBox,
|
|
ViewBox => GeometryBox::ViewBox,
|
|
other => panic!("Unexpected StyleGeometryBox::{:?} while converting to GeometryBox", other),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<RulesMutateError> for nsresult {
|
|
fn from(other: RulesMutateError) -> Self {
|
|
match other {
|
|
RulesMutateError::Syntax => nsresult::NS_ERROR_DOM_SYNTAX_ERR,
|
|
RulesMutateError::IndexSize => nsresult::NS_ERROR_DOM_INDEX_SIZE_ERR,
|
|
RulesMutateError::HierarchyRequest => nsresult::NS_ERROR_DOM_HIERARCHY_REQUEST_ERR,
|
|
RulesMutateError::InvalidState => nsresult::NS_ERROR_DOM_INVALID_STATE_ERR,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Origin> for SheetType {
|
|
fn from(other: Origin) -> Self {
|
|
match other {
|
|
Origin::UserAgent => SheetType::Agent,
|
|
Origin::Author => SheetType::Doc,
|
|
Origin::User => SheetType::User,
|
|
}
|
|
}
|
|
}
|