ableos/sysdata/libraries/horizon_api/src/widgets.hb
2024-10-13 22:34:33 -05:00

20 lines
258 B
Plaintext

// Widget types
// End types
LayoutChildHorizontalFirst := 0
LayoutChildVerticalFirst := 1
Size := struct {
min_width: int,
max_width: int,
min_height: int,
max_height: int,
}
Widget := struct {
size: Size,
clickable: bool,
layout: u8,
a: bool,
}