summaryrefslogtreecommitdiff
path: root/toolkit/andlabs/structs.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 /toolkit/andlabs/structs.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 'toolkit/andlabs/structs.go')
-rw-r--r--toolkit/andlabs/structs.go60
1 files changed, 0 insertions, 60 deletions
diff --git a/toolkit/andlabs/structs.go b/toolkit/andlabs/structs.go
deleted file mode 100644
index 9f20510..0000000
--- a/toolkit/andlabs/structs.go
+++ /dev/null
@@ -1,60 +0,0 @@
-package main
-
-// import "go.wit.com/gui/toolkit"
-
-import "github.com/andlabs/ui"
-import _ "github.com/andlabs/ui/winmanifest"
-
-// var andlabs map[int]*andlabsT
-// var callback func(int) bool
-// var callback chan toolkit.Action
-
-// It's probably a terrible idea to call this 'me'
-var me config
-
-type config struct {
- rootNode *node // the base of the binary tree. it should have id == 0
-}
-
-// stores the raw toolkit internals
-type guiWidget struct {
- Width int
- Height int
-
- // tw *toolkit.Widget
- parent *guiWidget
- children []*guiWidget
-
- // used to track if a tab has a child widget yet
- child bool
-
- uiControl ui.Control
-
- uiBox *ui.Box
- uiButton *ui.Button
- uiCombobox *ui.Combobox
- uiCheckbox *ui.Checkbox
- uiEntry *ui.Entry
- uiGroup *ui.Group
- uiLabel *ui.Label
- uiSlider *ui.Slider
- uiSpinbox *ui.Spinbox
- uiTab *ui.Tab
- uiWindow *ui.Window
- uiMultilineEntry *ui.MultilineEntry
- uiEditableCombobox *ui.EditableCombobox
- uiImage *ui.Image
-
- uiGrid *ui.Grid
- gridX int
- gridY int
-
- // used as a counter to work around limitations of widgets like combobox
- // this is probably fucked up and in many ways wrong because of unsafe goroutine threading
- // but it's working for now due to the need for need for a correct interaction layer betten toolkits
- c int
- val map[int]string
-
- // andlabs/ui only accesses widget id numbers
- boxC int // how many things on in a box or how many tabs
-}