summaryrefslogtreecommitdiff
path: root/basicDropdown.go
blob: fbc5137bb0ed3f73b982521c8dae5ddd1ae01745 (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
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
/*
	A Labeled Dropdown widget:

	-----------------------------
	|            |              |
	|   Food:    |  <dropdown>  |
	|            |              |
	-----------------------------

	This being a 'Basic Dropdown', the dropdown names must be unique
*/
package gadgets

import 	(
	"go.wit.com/log"
	"go.wit.com/gui/gui"
)

type BasicDropdown struct {
	ready	bool
	name	string

	parent	*gui.Node	// parent widget
	l	*gui.Node	// label widget
	d	*gui.Node	// dropdown widget

	value	string
	label	string

	Custom func()
}

/*
func (d *BasicDropdown) Get() string {
	if ! d.Ready() {return ""}
	return d.d.GetText()
}
*/

// Returns true if the status is valid
func (d *BasicDropdown) Ready() bool {
	if d == nil {return false}
	return d.ready
}

func (d *BasicDropdown) AddText(s string) {
	if ! d.Ready() {return}
	log.Log(INFO, "BasicDropdown.AddText() =", s)
	d.d.AddText(s)
	return
}

func (d *BasicDropdown) SetText(s string) {
	if ! d.Ready() {return}
	log.Log(INFO, "BasicDropdown.SetText() =", s)
	d.d.SetText(s)
	return
}

func (d *BasicDropdown) String() string {
	if ! d.Ready() {return ""}
	log.Log(INFO, "BasicDropdown.String()", d.d.String())
	return d.d.String()
}

func (d *BasicDropdown) SetLabel(value string) bool {
	if ! d.Ready() {return false}
	log.Log(INFO, "BasicDropdown.SetLabel() =", value)
	d.l.SetText(value)
	return true
}
/*
func (d *BasicDropdown) Set(value string) bool {
	if ! d.Ready() {return false}
	log.Log(INFO, "BasicDropdown.Set() =", value)
	d.d.SetText(value)
	d.value = value
	return true
}
*/

func NewBasicDropdown(p *gui.Node, name string) *BasicDropdown {
	d := BasicDropdown {
		parent: p,
		name: name,
		ready: false,
	}

	// various timeout settings
	d.l = p.NewLabel(name)
	d.d = p.NewDropdown()
	d.d.Custom = func() {
		d.value = d.d.String()
		log.Log(INFO, "BasicDropdown.Custom() user changed value to =", d.value)
		if d.Custom != nil {
			d.Custom()
		}
	}

	d.ready = true
	return &d
}