summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Layout.h
blob: b194e9dfa959f3f5077a99abc65f080331486d84 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/OwnPtr.h>
#include <AK/Vector.h>
#include <AK/WeakPtr.h>
#include <LibCore/Object.h>
#include <LibGUI/Forward.h>
#include <LibGUI/Margins.h>
#include <LibGUI/UIDimensions.h>
#include <LibGfx/Forward.h>

namespace Core {
namespace Registration {
extern Core::ObjectClassRegistration registration_Layout;
}
}

#define REGISTER_LAYOUT(namespace_, class_name)                                                                                                       \
    namespace Core {                                                                                                                                  \
    namespace Registration {                                                                                                                          \
    Core::ObjectClassRegistration registration_##class_name(                                                                                          \
        #namespace_ "::" #class_name##sv, []() { return static_ptr_cast<Core::Object>(namespace_::class_name::construct()); }, &registration_Layout); \
    }                                                                                                                                                 \
    }

namespace GUI {

class Layout : public Core::Object {
    C_OBJECT_ABSTRACT(Layout);

public:
    virtual ~Layout();

    void add_widget(Widget&);
    void insert_widget_before(Widget& widget, Widget& before_widget);
    void add_layout(OwnPtr<Layout>&&);
    void add_spacer();

    ErrorOr<void> try_add_widget(Widget&);
    ErrorOr<void> try_insert_widget_before(Widget& widget, Widget& before_widget);
    ErrorOr<void> try_add_spacer();

    void remove_widget(Widget&);

    virtual void run(Widget&) = 0;
    virtual UISize preferred_size() const = 0;
    virtual UISize min_size() const = 0;

    void notify_adopted(Badge<Widget>, Widget&);
    void notify_disowned(Badge<Widget>, Widget&);

    Margins const& margins() const { return m_margins; }
    void set_margins(Margins const&);

    int spacing() const { return m_spacing; }
    void set_spacing(int);

protected:
    Layout();

    struct Entry {
        enum class Type {
            Invalid = 0,
            Widget,
            Layout,
            Spacer,
        };

        Type type { Type::Invalid };
        WeakPtr<Widget> widget {};
        OwnPtr<Layout> layout {};
    };
    void add_entry(Entry&&);
    ErrorOr<void> try_add_entry(Entry&&);

    WeakPtr<Widget> m_owner;
    Vector<Entry> m_entries;

    Margins m_margins;
    int m_spacing { 3 };
};

}