diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
commit | 00f84e3b984904e36cbee502a470003ecd7d09cf (patch) | |
tree | 48836b7af6dc55724f789a75ebed4a7ce01be5fc /main.cpp | |
parent | e6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff) |
initial upload
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..590f1ed --- /dev/null +++ b/main.cpp @@ -0,0 +1,26 @@ +#include "view.hpp" +#include "ui/button.hpp" +#include "ui/label.hpp" + +void drawButton(const mbuoy::position& pos, const mbuoy::dimensions& dim) +{ + std::printf("[%d, %d, %d, %d]: button\n", pos.x, pos.y, dim.width, dim.height); +} + +int main() +{ + auto test = mbuoy::view< + mbuoy::label< + mbuoy::string("Hey"), + mbuoy::position(10, 100)>{}, + mbuoy::label< + mbuoy::string("there"), + mbuoy::position(10, 120)>{}, + mbuoy::button< + mbuoy::position(10, 120), + mbuoy::dimensions(40, 40), + mbuoy::ondraw(drawButton)>{} + >; + test.render(); +} + |