Grid stub

This commit is contained in:
Sasha Koshka
2023-04-05 02:12:17 -04:00
parent 8db8fab14a
commit 34b79ee30d
3 changed files with 137 additions and 1 deletions

View File

@@ -276,12 +276,13 @@ type FontSize int; const (
// about.
FontSizeSmall
)
// FontStyle specifies stylistic alterations to a font face.
type FontStyle int; const (
FontStyleRegular FontStyle = 0
FontStyleBold FontStyle = 1
FontStyleItalic FontStyle = 2
FontStyleMonospace FontStyle = 4
FontStyleBoldItalic FontStyle = 1 | 2
)