/* * Copyright (c) 2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::SVG { // https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPositioningElement class SVGTextPositioningElement : public SVGTextContentElement { WEB_PLATFORM_OBJECT(SVGTextPositioningElement, SVGTextContentElement); public: virtual void attribute_changed(FlyString const& name, Optional const& old_value, Optional const& value) override; Gfx::FloatPoint get_offset(CSSPixelSize const& viewport_size) const; JS::NonnullGCPtr x() const; JS::NonnullGCPtr y() const; JS::NonnullGCPtr dx() const; JS::NonnullGCPtr dy() const; protected: SVGTextPositioningElement(DOM::Document&, DOM::QualifiedName); virtual void initialize(JS::Realm&) override; private: Optional m_x; Optional m_y; Optional m_dx; Optional m_dy; }; }