aboutsummaryrefslogtreecommitdiff
path: root/include/gui/LineSeparator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/LineSeparator.hpp')
-rw-r--r--include/gui/LineSeparator.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/gui/LineSeparator.hpp b/include/gui/LineSeparator.hpp
new file mode 100644
index 0000000..8c39114
--- /dev/null
+++ b/include/gui/LineSeparator.hpp
@@ -0,0 +1,24 @@
+#pragma once
+
+#include "Widget.hpp"
+
+namespace gsr {
+ class LineSeparator : public Widget {
+ public:
+ enum class Type {
+ HORIZONTAL
+ };
+
+ LineSeparator(Type type, 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:
+ Type type;
+ float width;
+ };
+} \ No newline at end of file