v / vlib / gx / text.js.v
20 lines · 18 sloc · 380 bytes · 3ffc951cf555dc4818309a507ccb9d0da4de748f
Raw
1@[deprecated: 'module gx is deprecated, use import gg instead']
2@[deprecated_after: '2026-01-24']
3module gx
4
5@[deprecated: 'use gg.HorizontalAlign instead']
6@[deprecated_after: '2026-01-24']
7pub enum HorizontalAlign {
8 left
9 center
10 right
11}
12
13@[deprecated: 'use gg.VerticalAlign instead']
14@[deprecated_after: '2026-01-24']
15pub enum VerticalAlign {
16 top
17 middle
18 bottom
19 baseline
20}
21