mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-29 19:55:37 +00:00
0d52738239
e0f786c9b Fix parseStyle REVERT: d13d8e521 Refactoring REVERT: 4925c87a8 Update REVERT: 794c38591 Update REVERT: 49eee9643 Update REVERT: 914aee5ea Update REVERT: 3bb00ecee Fix ParserString string-view iterator cast in windows REVERT: fabea2008 Fix string-view iterator cast in windows REVERT: bbcf0d34f Update REVERT: 081df20f2 Update REVERT: fe3101f91 Refactoring REVERT: e9a41dc83 Refactoring git-subtree-dir: external/lunasvg git-subtree-split: e0f786c9be6fae1ffabddfe56fb1e0a1a7eb775d
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
#include "maskelement.h"
|
|
#include "parser.h"
|
|
#include "layoutcontext.h"
|
|
|
|
namespace lunasvg {
|
|
|
|
MaskElement::MaskElement()
|
|
: StyledElement(ElementId::Mask)
|
|
{
|
|
}
|
|
|
|
Length MaskElement::x() const
|
|
{
|
|
auto& value = get(PropertyId::X);
|
|
return Parser::parseLength(value, AllowNegativeLengths, Length::MinusTenPercent);
|
|
}
|
|
|
|
Length MaskElement::y() const
|
|
{
|
|
auto& value = get(PropertyId::Y);
|
|
return Parser::parseLength(value, AllowNegativeLengths, Length::MinusTenPercent);
|
|
}
|
|
|
|
Length MaskElement::width() const
|
|
{
|
|
auto& value = get(PropertyId::Width);
|
|
return Parser::parseLength(value, ForbidNegativeLengths, Length::OneTwentyPercent);
|
|
}
|
|
|
|
Length MaskElement::height() const
|
|
{
|
|
auto& value = get(PropertyId::Height);
|
|
return Parser::parseLength(value, ForbidNegativeLengths, Length::OneTwentyPercent);
|
|
}
|
|
|
|
Units MaskElement::maskUnits() const
|
|
{
|
|
auto& value = get(PropertyId::MaskUnits);
|
|
return Parser::parseUnits(value, Units::ObjectBoundingBox);
|
|
}
|
|
|
|
Units MaskElement::maskContentUnits() const
|
|
{
|
|
auto& value = get(PropertyId::MaskContentUnits);
|
|
return Parser::parseUnits(value, Units::UserSpaceOnUse);
|
|
}
|
|
|
|
std::unique_ptr<LayoutMask> MaskElement::getMasker(LayoutContext* context) const
|
|
{
|
|
auto w = this->width();
|
|
auto h = this->height();
|
|
if(w.isZero() || h.isZero() || context->hasReference(this))
|
|
return nullptr;
|
|
|
|
LayoutBreaker layoutBreaker(context, this);
|
|
auto masker = std::make_unique<LayoutMask>();
|
|
masker->units = maskUnits();
|
|
masker->contentUnits = maskContentUnits();
|
|
masker->opacity = opacity();
|
|
masker->clipper = context->getClipper(clip_path());
|
|
masker->masker = context->getMasker(mask());
|
|
|
|
LengthContext lengthContext(this, maskUnits());
|
|
masker->x = lengthContext.valueForLength(x(), LengthMode::Width);
|
|
masker->y = lengthContext.valueForLength(y(), LengthMode::Height);
|
|
masker->width = lengthContext.valueForLength(w, LengthMode::Width);
|
|
masker->height = lengthContext.valueForLength(h, LengthMode::Height);
|
|
layoutChildren(context, masker.get());
|
|
return masker;
|
|
}
|
|
|
|
std::unique_ptr<Node> MaskElement::clone() const
|
|
{
|
|
return cloneElement<MaskElement>();
|
|
}
|
|
|
|
} // namespace lunasvg
|