aboutsummaryrefslogtreecommitdiff
path: root/include/gui/LineSeparator.hpp
blob: 79960716265f5093e178cc4594b342a0eb073d25 (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
#pragma once

#include "Widget.hpp"

namespace gsr {
    class LineSeparator : public Widget {
    public:
        enum class Orientation {
            HORIZONTAL
        };

        LineSeparator(Orientation orientation, float width);
        LineSeparator(const LineSeparator&) = delete;
        LineSeparator& operator=(const LineSeparator&) = delete;

        bool on_event(mgl::Event &event, mgl::Window &window, mgl::vec2f offset) override;
        void draw(mgl::Window &window, mgl::vec2f offset) override;

        mgl::vec2f get_size() override;
    private:
        Orientation orientation;
        float width;
    };
}