appcui/system/theme/macros.rs
1#[macro_export]
2macro_rules! controlattr {
3 ($normal: literal, $focused: literal, $hovered: literal, $inactive: literal, $pressed: literal) => {
4 ControlCharAttributesState {
5 normal: charattr!($normal),
6 focused: charattr!($focused),
7 hovered: charattr!($hovered),
8 inactive: charattr!($inactive),
9 pressed_or_selectd: charattr!($pressed),
10 }
11 };
12}