2021-09-27 01:55:13 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-10-08 23:59:15 +03:00
|
|
|
#include <LibWeb/Geometry/DOMRectReadOnly.h>
|
2021-09-27 01:55:13 +03:00
|
|
|
|
|
|
|
namespace Web::Geometry {
|
|
|
|
|
|
|
|
// https://drafts.fxtf.org/geometry/#DOMRect
|
2022-09-04 02:59:58 +03:00
|
|
|
class DOMRect final : public DOMRectReadOnly {
|
|
|
|
WEB_PLATFORM_OBJECT(DOMRect, DOMRectReadOnly);
|
2021-09-27 01:55:13 +03:00
|
|
|
|
2022-09-04 02:59:58 +03:00
|
|
|
public:
|
2023-02-19 20:21:27 +03:00
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMRect>> construct_impl(JS::Realm&, double x = 0, double y = 0, double width = 0, double height = 0);
|
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMRect>> create(JS::Realm&, Gfx::FloatRect const&);
|
2021-09-27 01:55:13 +03:00
|
|
|
|
2022-09-04 02:59:58 +03:00
|
|
|
virtual ~DOMRect() override;
|
2021-09-27 01:55:13 +03:00
|
|
|
|
|
|
|
double x() const { return m_rect.x(); }
|
|
|
|
double y() const { return m_rect.y(); }
|
|
|
|
double width() const { return m_rect.width(); }
|
|
|
|
double height() const { return m_rect.height(); }
|
|
|
|
|
2021-10-08 23:59:15 +03:00
|
|
|
void set_x(double x) { m_rect.set_x(x); }
|
|
|
|
void set_y(double y) { m_rect.set_y(y); }
|
|
|
|
void set_width(double width) { m_rect.set_width(width); }
|
|
|
|
void set_height(double height) { m_rect.set_height(height); }
|
2021-09-27 01:55:13 +03:00
|
|
|
|
|
|
|
private:
|
2022-09-26 03:03:02 +03:00
|
|
|
DOMRect(JS::Realm&, double x, double y, double width, double height);
|
2023-01-10 14:28:20 +03:00
|
|
|
|
2023-01-28 20:33:35 +03:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2021-09-27 01:55:13 +03:00
|
|
|
};
|
2022-09-04 02:59:58 +03:00
|
|
|
|
2021-09-27 01:55:13 +03:00
|
|
|
}
|