summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Screen.h
blob: d76a5c0620128433fae05e10108ef423e6d8c434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/RefCountForwarder.h>
#include <LibGfx/Rect.h>
#include <LibWeb/Bindings/Wrappable.h>
#include <LibWeb/DOM/Window.h>
#include <LibWeb/Forward.h>

namespace Web::CSS {

class Screen final
    : public RefCountForwarder<DOM::Window>
    , public Bindings::Wrappable {

public:
    using WrapperType = Bindings::ScreenWrapper;
    using AllowOwnPtr = TrueType;

    static NonnullOwnPtr<Screen> create(Badge<DOM::Window>, DOM::Window& window)
    {
        return adopt_own(*new Screen(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(DOM::Window&);

    DOM::Window const& window() const { return ref_count_target(); }

    Gfx::IntRect screen_rect() const;
};

}