blob: 81e2a8b4ed4be57fccdbaab5da6b81048cccb9ee (
plain)
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
|
/*
A Labeled label:
-----------------------------
| | |
| Food: | Apple |
| | |
-----------------------------
*/
package gadgets
import (
"go.wit.com/log"
"go.wit.com/gui/gui"
)
type OneLiner struct {
p *gui.Node // parent widget
l *gui.Node // label widget
v *gui.Node // value widget
Custom func()
}
func (n *OneLiner) String() string {
return n.v.String()
}
func (n *OneLiner) SetText(s string) *OneLiner {
log.Log(INFO, "OneLiner.Set() =", s)
n.v.SetText(s)
return n
}
func (n *OneLiner) SetLabel(value string) *OneLiner {
log.Log(INFO, "OneLiner.SetLabel() =", value)
if (n.l != nil) {
n.l.Set(value)
}
return n
}
func (n *OneLiner) Enable() {
log.Log(INFO, "OneLiner.Enable()")
if (n.v != nil) {
n.v.Show()
}
}
func (n *OneLiner) Disable() {
log.Log(INFO, "OneLiner.Disable()")
if (n.v != nil) {
n.v.Hide()
}
}
func NewOneLiner(n *gui.Node, label string) *OneLiner {
d := OneLiner {
p: n,
}
// various timeout settings
d.l = n.NewLabel(label)
d.v = n.NewLabel("")
d.v.Custom = func() {
log.Log(INFO, "OneLiner.Custom() user changed value to =", d.v.String())
}
return &d
}
|