mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
20 lines
214 B
V
20 lines
214 B
V
module gx
|
|
|
|
pub const (
|
|
align_left = 1
|
|
align_right = 4
|
|
)
|
|
|
|
pub struct TextCfg {
|
|
pub:
|
|
color Color
|
|
size int
|
|
align int
|
|
max_width int
|
|
family string
|
|
bold bool
|
|
mono bool
|
|
italic bool
|
|
|
|
}
|