/* * Copyright (c) 2021, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::CSS { class Screen final : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(Screen, Bindings::PlatformObject); public: using AllowOwnPtr = TrueType; static JS::NonnullGCPtr create(HTML::Window&); 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; } private: explicit Screen(HTML::Window&); virtual void visit_edges(Cell::Visitor&) override; HTML::Window const& window() const { return *m_window; } Gfx::IntRect screen_rect() const; JS::NonnullGCPtr m_window; }; } WRAPPER_HACK(Screen, Web::CSS)