37 lines
760 B
C++
37 lines
760 B
C++
/*
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGfx/Rect.h>
|
|
#include <LibWeb/CSS/Screen.h>
|
|
#include <LibWeb/DOM/Document.h>
|
|
#include <LibWeb/Page/Page.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
JS::NonnullGCPtr<Screen> Screen::create(HTML::Window& window)
|
|
{
|
|
return *window.heap().allocate<Screen>(window.realm(), window);
|
|
}
|
|
|
|
Screen::Screen(HTML::Window& window)
|
|
: PlatformObject(window.realm())
|
|
, m_window(window)
|
|
{
|
|
set_prototype(&window.cached_web_prototype("Screen"));
|
|
}
|
|
|
|
void Screen::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_window.ptr());
|
|
}
|
|
|
|
Gfx::IntRect Screen::screen_rect() const
|
|
{
|
|
return window().page()->screen_rect();
|
|
}
|
|
|
|
}
|