zntg/ui/font.go
Sander Schobers c83a6d5aad Added FontStyle on ControlBase.
Forced putting text on integer coordinates.
2019-03-12 19:43:52 +01:00

19 lines
233 B
Go

package ui
import (
"image/color"
"opslag.de/schobers/geom"
)
type Font interface {
Height() float32
Measure(t string) geom.RectangleF32
WidthOf(t string) float32
}
type FontStyle struct {
Name string
Color color.Color
}