aboutsummaryrefslogtreecommitdiffstats
path: root/ui/label.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:46:54 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:46:54 -0400
commit00f84e3b984904e36cbee502a470003ecd7d09cf (patch)
tree48836b7af6dc55724f789a75ebed4a7ce01be5fc /ui/label.hpp
parente6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff)
initial upload
Diffstat (limited to 'ui/label.hpp')
-rw-r--r--ui/label.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/ui/label.hpp b/ui/label.hpp
new file mode 100644
index 0000000..9524007
--- /dev/null
+++ b/ui/label.hpp
@@ -0,0 +1,32 @@
+#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<auto... Attr>
+struct label
+{
+ static constexpr auto point = find<position>(Attr...);
+ static constexpr auto text = find<const char *>(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
+