SVGLineElement.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Bindings/Intrinsics.h>
  7. #include <LibWeb/SVG/AttributeNames.h>
  8. #include <LibWeb/SVG/AttributeParser.h>
  9. #include <LibWeb/SVG/SVGLineElement.h>
  10. namespace Web::SVG {
  11. SVGLineElement::SVGLineElement(DOM::Document& document, DOM::QualifiedName qualified_name)
  12. : SVGGeometryElement(document, qualified_name)
  13. {
  14. }
  15. JS::ThrowCompletionOr<void> SVGLineElement::initialize(JS::Realm& realm)
  16. {
  17. MUST_OR_THROW_OOM(Base::initialize(realm));
  18. set_prototype(&Bindings::ensure_web_prototype<Bindings::SVGLineElementPrototype>(realm, "SVGLineElement"));
  19. return {};
  20. }
  21. void SVGLineElement::parse_attribute(DeprecatedFlyString const& name, DeprecatedString const& value)
  22. {
  23. SVGGeometryElement::parse_attribute(name, value);
  24. if (name == SVG::AttributeNames::x1) {
  25. m_x1 = AttributeParser::parse_coordinate(value);
  26. m_path.clear();
  27. } else if (name == SVG::AttributeNames::y1) {
  28. m_y1 = AttributeParser::parse_coordinate(value);
  29. m_path.clear();
  30. } else if (name == SVG::AttributeNames::x2) {
  31. m_x2 = AttributeParser::parse_coordinate(value);
  32. m_path.clear();
  33. } else if (name == SVG::AttributeNames::y2) {
  34. m_y2 = AttributeParser::parse_coordinate(value);
  35. m_path.clear();
  36. }
  37. }
  38. Gfx::Path& SVGLineElement::get_path()
  39. {
  40. if (m_path.has_value())
  41. return m_path.value();
  42. Gfx::Path path;
  43. float x1 = m_x1.value_or(0);
  44. float y1 = m_y1.value_or(0);
  45. float x2 = m_x2.value_or(0);
  46. float y2 = m_y2.value_or(0);
  47. // 1. perform an absolute moveto operation to absolute location (x1,y1)
  48. path.move_to({ x1, y1 });
  49. // 2. perform an absolute lineto operation to absolute location (x2,y2)
  50. path.line_to({ x2, y2 });
  51. m_path = move(path);
  52. return m_path.value();
  53. }
  54. // https://www.w3.org/TR/SVG11/shapes.html#LineElementX1Attribute
  55. JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::x1() const
  56. {
  57. // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
  58. // FIXME: Create a proper animated value when animations are supported.
  59. auto base_length = SVGLength::create(realm(), 0, m_x1.value_or(0)).release_value_but_fixme_should_propagate_errors();
  60. auto anim_length = SVGLength::create(realm(), 0, m_x1.value_or(0)).release_value_but_fixme_should_propagate_errors();
  61. return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)).release_value_but_fixme_should_propagate_errors();
  62. }
  63. // https://www.w3.org/TR/SVG11/shapes.html#LineElementY1Attribute
  64. JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::y1() const
  65. {
  66. // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
  67. // FIXME: Create a proper animated value when animations are supported.
  68. auto base_length = SVGLength::create(realm(), 0, m_y1.value_or(0)).release_value_but_fixme_should_propagate_errors();
  69. auto anim_length = SVGLength::create(realm(), 0, m_y1.value_or(0)).release_value_but_fixme_should_propagate_errors();
  70. return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)).release_value_but_fixme_should_propagate_errors();
  71. }
  72. // https://www.w3.org/TR/SVG11/shapes.html#LineElementX2Attribute
  73. JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::x2() const
  74. {
  75. // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
  76. // FIXME: Create a proper animated value when animations are supported.
  77. auto base_length = SVGLength::create(realm(), 0, m_x2.value_or(0)).release_value_but_fixme_should_propagate_errors();
  78. auto anim_length = SVGLength::create(realm(), 0, m_x2.value_or(0)).release_value_but_fixme_should_propagate_errors();
  79. return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)).release_value_but_fixme_should_propagate_errors();
  80. }
  81. // https://www.w3.org/TR/SVG11/shapes.html#LineElementY2Attribute
  82. JS::NonnullGCPtr<SVGAnimatedLength> SVGLineElement::y2() const
  83. {
  84. // FIXME: Populate the unit type when it is parsed (0 here is "unknown").
  85. // FIXME: Create a proper animated value when animations are supported.
  86. auto base_length = SVGLength::create(realm(), 0, m_y2.value_or(0)).release_value_but_fixme_should_propagate_errors();
  87. auto anim_length = SVGLength::create(realm(), 0, m_y2.value_or(0)).release_value_but_fixme_should_propagate_errors();
  88. return SVGAnimatedLength::create(realm(), move(base_length), move(anim_length)).release_value_but_fixme_should_propagate_errors();
  89. }
  90. }