summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GToolBar.h
blob: bff3f9a49ebf4068463e5396a6e0da34cfeaa616 (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
#pragma once

#include <LibGUI/GWidget.h>

class GAction;

class GToolBar : public GWidget {
public:
    explicit GToolBar(GWidget* parent);
    virtual ~GToolBar() override;

    void add_action(GAction&);
    void add_separator();

    bool has_frame() const { return m_has_frame; }
    void set_has_frame(bool has_frame) { m_has_frame = has_frame; }

    virtual const char* class_name() const override { return "GToolBar"; }

private:
    virtual void paint_event(GPaintEvent&) override;

    struct Item {
        enum Type {
            Invalid,
            Separator,
            Action
        };
        Type type { Invalid };
        RefPtr<GAction> action;
    };
    Vector<OwnPtr<Item>> m_items;
    bool m_has_frame { true };
};