#pragma once #include #include #include "SpiralDisplay.hpp" namespace Amuencha { struct Analyser::ui { using enum halp::colors; using enum halp::layouts; halp_meta(name, "Amuencha") halp_meta(layout, hbox) halp_meta(background, dark) struct { halp_meta(layout, vbox) halp::item<&ins::min> min; halp::item<&ins::max> max; } controls; struct { halp_meta(layout, halp::layouts::vbox) halp_meta(background, halp::colors::mid) halp_meta(width, 400) halp_meta(height, 400) halp::custom_actions_item widget{.x = 0, .y = 0}; } spiral; }; }