summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/BoxLayout.h
blob: 2232ef678277204f7b19a429f165d9b9daa6172c (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
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibGUI/Forward.h>
#include <LibGUI/Layout.h>
#include <LibGfx/Orientation.h>

namespace GUI {

class BoxLayout : public Layout {
    C_OBJECT(BoxLayout);

public:
    virtual ~BoxLayout() override = default;

    Gfx::Orientation orientation() const { return m_orientation; }

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

protected:
    explicit BoxLayout(Gfx::Orientation);

private:
    Gfx::Orientation m_orientation;
};

class VerticalBoxLayout final : public BoxLayout {
    C_OBJECT(VerticalBoxLayout);

private:
    explicit VerticalBoxLayout()
        : BoxLayout(Gfx::Orientation::Vertical)
    {
    }
    virtual ~VerticalBoxLayout() override = default;
};

class HorizontalBoxLayout final : public BoxLayout {
    C_OBJECT(HorizontalBoxLayout);

private:
    explicit HorizontalBoxLayout()
        : BoxLayout(Gfx::Orientation::Horizontal)
    {
    }
    virtual ~HorizontalBoxLayout() override = default;
};

}