1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 22:15:07 +00:00

LibWeb: Make TextMetrics GC-allocated

This commit is contained in:
Andreas Kling 2022-09-02 23:58:31 +02:00
parent 2704bcdaaa
commit 6b7a1d13e9
7 changed files with 28 additions and 18 deletions

View file

@ -6,18 +6,17 @@
#pragma once
#include <LibJS/Heap/Handle.h>
#include <LibWeb/Bindings/Wrappable.h>
#include <LibWeb/Bindings/PlatformObject.h>
namespace Web::HTML {
class TextMetrics
: public RefCounted<TextMetrics>
, public Bindings::Wrappable {
public:
using WrapperType = Bindings::TextMetricsWrapper;
class TextMetrics : public Bindings::PlatformObject {
WEB_PLATFORM_OBJECT(TextMetrics, Bindings::PlatformObject);
static RefPtr<TextMetrics> create();
public:
static JS::NonnullGCPtr<TextMetrics> create(HTML::Window&);
virtual ~TextMetrics() override;
double width() const { return m_width; }
double actual_bounding_box_left() const { return m_actual_bounding_box_left; }
@ -46,7 +45,7 @@ public:
void set_ideographic_baseline(double baseline) { m_ideographic_baseline = baseline; }
private:
explicit TextMetrics() = default;
explicit TextMetrics(HTML::Window&);
double m_width { 0 };
double m_actual_bounding_box_left { 0 };
@ -64,3 +63,5 @@ private:
};
}
WRAPPER_HACK(TextMetrics, Web::HTML)