From cd96a31b3ea11edf26512c33ca599258601c31a0 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 10 Aug 2024 10:50:47 -0400 Subject: move library to a folder --- ui/button.hpp | 37 ------------------------------------- ui/label.hpp | 32 -------------------------------- 2 files changed, 69 deletions(-) delete mode 100644 ui/button.hpp delete mode 100644 ui/label.hpp (limited to 'ui') diff --git a/ui/button.hpp b/ui/button.hpp deleted file mode 100644 index 4a0a9f5..0000000 --- a/ui/button.hpp +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef MBUOY_UI_BUTTON_HPP -#define MBUOY_UI_BUTTON_HPP - -#include "attr/dimensions.hpp" -#include "attr/ondraw.hpp" -#include "attr/position.hpp" -#include "attr/string.hpp" -#include "find.hpp" -#include "port.hpp" - -namespace mbuoy { - -template -struct button -{ - static constexpr auto point = find(Attr...); - static constexpr auto dims = find(Attr...); - static constexpr auto text = find(Attr...); - static constexpr auto draw = find(Attr...); - - static consteval void init(unsigned char *(&ptr)) { - *ptr++ = 0; // pressed? - } - - static void render() { - (*draw)(*point, *dims); - } - - static consteval int size() { - return 1; - } -}; - -} // namespace mbuoy - -#endif // MBUOY_UI_BUTTON_HPP - diff --git a/ui/label.hpp b/ui/label.hpp deleted file mode 100644 index 9524007..0000000 --- a/ui/label.hpp +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef MBUOY_UI_LABEL_HPP -#define MBUOY_UI_LABEL_HPP - -#include "attr/position.hpp" -#include "attr/string.hpp" -#include "find.hpp" -#include "port.hpp" - -namespace mbuoy { - -template -struct label -{ - static constexpr auto point = find(Attr...); - static constexpr auto text = find(Attr...); - - static consteval void init(unsigned char *(&ptr)) { - } - - static void render() { - port::puts(point->x, point->y, *text); - } - - static consteval int size() { - return 0; - } -}; - -} // namespace mbuoy - -#endif // MBUOY_UI_LABEL_HPP - -- cgit v1.2.3