gadgets/oneLiner.go

65 lines
1.1 KiB
Go
Raw Normal View History

2024-01-01 16:19:40 -06:00
/*
A Labeled label:
2024-01-01 16:19:40 -06:00
-----------------------------
| | |
| Food: | Apple |
| | |
-----------------------------
2024-01-01 16:19:40 -06:00
*/
package gadgets
import (
"go.wit.com/gui"
2024-01-01 16:19:40 -06:00
"go.wit.com/log"
)
type OneLiner struct {
p *gui.Node // parent widget
l *gui.Node // label widget
v *gui.Node // value widget
2024-01-01 16:19:40 -06:00
Custom func()
}
func (n *OneLiner) String() string {
return n.v.String()
2024-01-01 16:19:40 -06:00
}
func (n *OneLiner) SetValue(s string) *OneLiner {
log.Warn("OneLiner.Set() =", s)
n.v.SetLabel(s)
2024-01-01 16:19:40 -06:00
return n
}
func (n *OneLiner) SetLabel(value string) *OneLiner {
log.Log(INFO, "OneLiner.SetLabel() =", value)
n.l.SetLabel(value)
return n
}
func (n *OneLiner) Enable() {
log.Log(INFO, "OneLiner.Enable()")
n.v.Show()
}
func (n *OneLiner) Disable() {
log.Log(INFO, "OneLiner.Disable()")
n.v.Hide()
}
func NewOneLiner(n *gui.Node, label string) *OneLiner {
d := OneLiner{
2024-01-01 16:19:40 -06:00
p: n,
}
// various timeout settings
d.l = n.NewLabel(label)
2024-01-01 16:19:40 -06:00
d.v = n.NewLabel("")
d.v.Custom = func() {
log.Log(INFO, "OneLiner.Custom() user changed value to =", d.v.String())
2024-01-01 16:19:40 -06:00
}
return &d
}