This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
label.go
105 lines (86 loc) · 1.96 KB
/
label.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package tui
import (
"image"
"strings"
wordwrap "github.com/mitchellh/go-wordwrap"
)
var _ Widget = &Label{}
// Label is a widget to display read-only text.
type Label struct {
WidgetBase
text string
wordWrap bool
// cache the result of SizeHint() (see #14)
cacheSizeHint *image.Point
styleName string
}
// NewLabel returns a new Label.
func NewLabel(text string) *Label {
return &Label{
text: text,
}
}
// Resize changes the size of the Widget.
func (l *Label) Resize(size image.Point) {
if l.Size() != size {
l.cacheSizeHint = nil
}
l.WidgetBase.Resize(size)
}
// Draw draws the label.
func (l *Label) Draw(p *Painter) {
lines := l.lines()
style := "label"
if l.styleName != "" {
style += "." + l.styleName
}
p.WithStyle(style, func(p *Painter) {
for i, line := range lines {
p.DrawText(0, i, line)
}
})
}
// MinSizeHint returns the minimum size the widget is allowed to be.
func (l *Label) MinSizeHint() image.Point {
return image.Point{1, 1}
}
// SizeHint returns the recommended size for the label.
func (l *Label) SizeHint() image.Point {
if l.cacheSizeHint != nil {
return *l.cacheSizeHint
}
var max int
lines := l.lines()
for _, line := range lines {
if w := stringWidth(line); w > max {
max = w
}
}
sizeHint := image.Point{max, len(lines)}
l.cacheSizeHint = &sizeHint
return sizeHint
}
func (l *Label) lines() []string {
txt := l.text
if l.wordWrap {
txt = wordwrap.WrapString(l.text, uint(l.Size().X))
}
return strings.Split(txt, "\n")
}
// Text returns the text content of the label.
func (l *Label) Text() string {
return l.text
}
// SetText sets the text content of the label.
func (l *Label) SetText(text string) {
l.cacheSizeHint = nil
l.text = text
}
// SetWordWrap sets whether text content should be wrapped.
func (l *Label) SetWordWrap(enabled bool) {
l.wordWrap = enabled
}
// SetStyleName sets the identifier used for custom styling.
func (l *Label) SetStyleName(style string) {
l.styleName = style
}