summaryrefslogtreecommitdiffstats
path: root/hal/ui/widget/list_widget.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'hal/ui/widget/list_widget.hpp')
-rw-r--r--hal/ui/widget/list_widget.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/hal/ui/widget/list_widget.hpp b/hal/ui/widget/list_widget.hpp
new file mode 100644
index 0000000..27922f2
--- /dev/null
+++ b/hal/ui/widget/list_widget.hpp
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "base_widget.hpp"
+
+class ListWidget : private BaseWidget {
+ public:
+ ListWidget(Api *app_api, Geometry geometry);
+ void paint(bool invert_colors = false);
+};