2021-04-04 00:14:39 +02:00
|
|
|
/*
|
2021-04-22 22:51:19 +02:00
|
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
2021-04-04 00:14:39 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-04 00:14:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibGfx/Rect.h>
|
2022-08-31 18:52:54 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2024-04-05 18:15:43 +02:00
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
2021-04-04 00:14:39 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
2022-03-07 23:08:26 +01:00
|
|
|
#include <LibWeb/HTML/Window.h>
|
2021-04-04 00:14:39 +02:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2024-04-05 18:15:43 +02:00
|
|
|
class Screen final : public DOM::EventTarget {
|
|
|
|
WEB_PLATFORM_OBJECT(Screen, DOM::EventTarget);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(Screen);
|
2021-04-04 00:14:39 +02:00
|
|
|
|
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
[[nodiscard]] static GC::Ref<Screen> create(HTML::Window&);
|
2021-04-04 00:14:39 +02:00
|
|
|
|
|
|
|
i32 width() const { return screen_rect().width(); }
|
|
|
|
i32 height() const { return screen_rect().height(); }
|
|
|
|
i32 avail_width() const { return screen_rect().width(); }
|
|
|
|
i32 avail_height() const { return screen_rect().height(); }
|
|
|
|
u32 color_depth() const { return 24; }
|
|
|
|
u32 pixel_depth() const { return 24; }
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<ScreenOrientation> orientation();
|
2021-04-04 00:14:39 +02:00
|
|
|
|
2024-04-05 18:15:43 +02:00
|
|
|
bool is_extended() const;
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
void set_onchange(GC::Ptr<WebIDL::CallbackType> event_handler);
|
|
|
|
GC::Ptr<WebIDL::CallbackType> onchange();
|
2024-04-05 18:15:43 +02:00
|
|
|
|
2021-04-04 00:14:39 +02:00
|
|
|
private:
|
2022-03-07 23:08:26 +01:00
|
|
|
explicit Screen(HTML::Window&);
|
2021-04-04 00:14:39 +02:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2022-08-31 18:52:54 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
HTML::Window const& window() const { return *m_window; }
|
2021-04-04 00:14:39 +02:00
|
|
|
|
2021-12-09 15:47:48 +01:00
|
|
|
Gfx::IntRect screen_rect() const;
|
2022-08-28 13:42:07 +02:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<HTML::Window> m_window;
|
|
|
|
GC::Ptr<ScreenOrientation> m_orientation;
|
2021-04-04 00:14:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|