forked from dennwc/inkview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.go
67 lines (55 loc) · 1.2 KB
/
text.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package ink
/*
#include "inkview.h"
#cgo CFLAGS: -pthread
#cgo LDFLAGS: -pthread -lpthread -linkview
*/
import "C"
import (
"image"
"image/color"
)
const (
DefaultFont = string(C.DEFAULTFONT)
DefaultFontBold = string(C.DEFAULTFONTB)
DefaultFontItalic = string(C.DEFAULTFONTI)
DefaultFontBoldItalic = string(C.DEFAULTFONTBI)
DefaultFontMono = string(C.DEFAULTFONTM)
)
func OpenFont(name string, size int, aa bool) *Font {
p := C.OpenFont(C.CString(name), C.int(size), cbool(aa))
if p == nil {
return nil
}
return &Font{p: p}
}
type Font struct {
p *C.ifont
}
func (f *Font) SetActive(cl color.Color) {
if f != nil && f.p != nil {
C.SetFont(f.p, C.int(colorToInt(cl)))
}
}
func (f *Font) Close() {
if f == nil || f.p == nil {
return
}
C.CloseFont(f.p)
f.p = nil
}
func DrawString(p image.Point, s string) {
C.DrawString(C.int(p.X), C.int(p.Y), C.CString(s))
}
func DrawStringR(p image.Point, s string) {
C.DrawStringR(C.int(p.X), C.int(p.Y), C.CString(s))
}
func CharWidth(c rune) int {
return int(C.CharWidth(C.ushort(c)))
}
func StringWidth(s string) int {
return int(C.StringWidth(C.CString(s)))
}
func SetTextStrength(n int) {
C.SetTextStrength(C.int(n))
}