summaryrefslogtreecommitdiff
path: root/gadgets/basicDropdown.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
committerJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
commit4e7bbd89900a733593f0848778103c1cf1a7145d (patch)
tree22cd22124dd3ecba7c2a866b882d39aaf790d670 /gadgets/basicDropdown.go
parent53ce3a8252090d5fb75d7fc1e3cd75a72c1415c6 (diff)
reorg to final resting place at go.wit.com/gui/guiv0.9.5
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gadgets/basicDropdown.go')
-rw-r--r--gadgets/basicDropdown.go79
1 files changed, 0 insertions, 79 deletions
diff --git a/gadgets/basicDropdown.go b/gadgets/basicDropdown.go
deleted file mode 100644
index d64aed7..0000000
--- a/gadgets/basicDropdown.go
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- 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"
-)
-
-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) Add(value string) {
- if ! d.Ready() {return}
- log.Println("BasicDropdown.Set() =", value)
- d.d.AddDropdownName(value)
- return
-}
-
-func (d *BasicDropdown) Set(value string) bool {
- if ! d.Ready() {return false}
- log.Println("BasicDropdown.Set() =", value)
- d.l.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.Get()
- log.Println("BasicDropdown.Custom() user changed value to =", d.value)
- if d.Custom != nil {
- d.Custom()
- }
- }
-
- d.ready = true
- return &d
-}