A GO GUI package
Go to file
Jeff Carr 2c470f86c9 REFACTOR: moving around things in the rabbit hole
Signed-off-by: Jeff Carr <jcarr@wit.com>
2021-10-27 16:31:54 -05:00
gui-example REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00
.gitignore EXAMPLE: provide a clean example 2021-10-06 10:59:22 -05:00
LICENSE.md more cleanups 2019-05-31 09:01:46 -07:00
Makefile EXAMPLE: further improvements to the example 2021-10-06 11:17:43 -05:00
README.md more cleanups 2019-05-31 09:01:46 -07:00
area.go ready to implement Destroy() 2019-06-13 14:17:05 -07:00
box.go NODE: it builds, runs and doesn't crash 2021-10-24 09:01:51 -05:00
button.go DEBUG: add DumpMap() 2021-10-05 10:37:53 -05:00
color.go reimplement the color button 2019-06-05 10:01:36 -07:00
debug-window.go REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00
debug.go REORG: move find() functions into find.go 2021-10-25 06:46:49 -05:00
demo-window-andlabs-ui.go REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00
demo-window.go REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00
entry.go NODE: going down a rabbit hole 2021-10-09 01:51:15 -05:00
find.go REORG: move more find() functions into find.go 2021-10-25 06:50:27 -05:00
go.mod BUILD: suck it up and try to use go.mod 2021-10-06 05:14:24 -05:00
go.sum BUILD: suck it up and try to use go.mod 2021-10-06 05:14:24 -05:00
gui.go CLEAN: clean up labels 2021-10-25 05:41:12 -05:00
main.go NODE: more rabbits 2021-10-25 09:07:23 -05:00
new-structs.go REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00
structs.go NODE: TODO: refactor InitWindow to use NewWindow() 2021-10-25 07:18:17 -05:00
table.go NODE: remove lots of deprecated code 2021-10-25 08:12:31 -05:00
tableCallbacks.go NODE: it builds, runs and doesn't crash 2021-10-24 09:01:51 -05:00
window.go REFACTOR: moving around things in the rabbit hole 2021-10-27 16:31:54 -05:00

README.md

This is an abstraction layer around the excellent cross platform UI toolkit from andlabs/ui

This abstraction layer makes it easier to write simple interfaces for like our cloud control panel

The cross platform UI has 'quirks' due to it being cross platform. Some of the abstraction layer here attemps to obfuscate the ui objects so that it is more difficult to trigger inconsistancies.

In this regard, this is an attempt to restrict all andlabs/ui (and andlabs/libui) interaction to the calls within this library.