22 lines
429 B
V
22 lines
429 B
V
module gx
|
|
|
|
// TODO: remove these, and use the enum everywhere
|
|
pub const (
|
|
align_left = HorizontalAlign.left
|
|
align_right = HorizontalAlign.right
|
|
)
|
|
|
|
[params]
|
|
pub struct TextCfg {
|
|
pub:
|
|
color Color = black
|
|
size int = 16
|
|
align HorizontalAlign = .left
|
|
vertical_align VerticalAlign = .top
|
|
max_width int
|
|
family string
|
|
bold bool
|
|
mono bool
|
|
italic bool
|
|
}
|