From e806d41c8703ddc4bcaf2186d0c1701bd1e1ada3 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 22 Dec 2021 12:16:38 +0000 Subject: Initial commit with some basic UI --- ui/toolbar.cpp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ui/toolbar.cpp (limited to 'ui/toolbar.cpp') diff --git a/ui/toolbar.cpp b/ui/toolbar.cpp new file mode 100644 index 0000000..c8febce --- /dev/null +++ b/ui/toolbar.cpp @@ -0,0 +1,33 @@ +#include "toolbar.h" +#include "ui/iconButton.h" +#include "ui/uiComponent.h" +#include "uiComponentPlacer.h" +#include +#include + +Toolbar::Toolbar(const std::initializer_list & initInfo) : UIComponent {{{}, {}}} +{ + UIComponentPlacer placer {{10, 10}, 5, 1}; + for (const auto & ii : initInfo) { + icons.create(ii.first, placer.next(ICON_SIZE), ii.second); + } + this->position.size = placer.getLimit(); +} + +void +Toolbar::render(const UIShader & uiShader, const Position & parentPos) const +{ + const auto absPos = this->position + parentPos; + icons.apply(&UIComponent::render, uiShader, absPos); +} + +bool +Toolbar::handleInput(const SDL_Event & e, const Position & parentPos) +{ + const auto absPos = this->position + parentPos; + if (absPos & e.button) { + icons.applyOne(&UIComponent::handleInput, e, absPos); + return true; + } + return false; +} -- cgit v1.2.3