score-avnd-senior/Senior/SeniorUi.hpp

31 lines
535 B
C++

#pragma once
#include <Senior/SeniorModel.hpp>
#include <halp/layout.hpp>
namespace Ottobit
{
struct Senior::ui
{
using enum halp::colors;
using enum halp::layouts;
halp_meta(name, "Senior")
halp_meta(layout, vbox)
halp_meta(background, dark)
struct
{
halp_meta(layout, hbox)
halp::item<&ins::bits> bits;
halp::item<&ins::s_rate> s_rate;
} res;
struct
{
halp_meta(layout, hbox)
halp::item<&ins::depth> depth;
halp::item<&ins::freq> freq;
halp::item<&ins::am_fm> am_fm;
} mod;
};
}