forked from AbleOS/ableos
20 lines
258 B
Plaintext
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,
|
||
|
}
|