├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── button.go ├── command.go ├── container.go ├── context.go ├── debugui.go ├── debugui_test.go ├── draw.go ├── dropdown.go ├── event.go ├── example.png ├── example ├── gallery │ ├── gophers.jpg │ ├── main.go │ └── ui.go └── simple │ └── main.go ├── export_test.go ├── go.mod ├── go.sum ├── header.go ├── icon ├── check.png ├── collapsed.png ├── down.png ├── expanded.png └── up.png ├── id.go ├── input.go ├── internal └── vettool │ └── main.go ├── layout.go ├── panel.go ├── scrollbar.go ├── slider.go ├── style.go ├── text.go ├── textfield.go └── widget.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/README.md -------------------------------------------------------------------------------- /button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/button.go -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/command.go -------------------------------------------------------------------------------- /container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/container.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/context.go -------------------------------------------------------------------------------- /debugui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/debugui.go -------------------------------------------------------------------------------- /debugui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/debugui_test.go -------------------------------------------------------------------------------- /draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/draw.go -------------------------------------------------------------------------------- /dropdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/dropdown.go -------------------------------------------------------------------------------- /event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/event.go -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/example.png -------------------------------------------------------------------------------- /example/gallery/gophers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/example/gallery/gophers.jpg -------------------------------------------------------------------------------- /example/gallery/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/example/gallery/main.go -------------------------------------------------------------------------------- /example/gallery/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/example/gallery/ui.go -------------------------------------------------------------------------------- /example/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/example/simple/main.go -------------------------------------------------------------------------------- /export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/export_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/go.sum -------------------------------------------------------------------------------- /header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/header.go -------------------------------------------------------------------------------- /icon/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/icon/check.png -------------------------------------------------------------------------------- /icon/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/icon/collapsed.png -------------------------------------------------------------------------------- /icon/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/icon/down.png -------------------------------------------------------------------------------- /icon/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/icon/expanded.png -------------------------------------------------------------------------------- /icon/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/icon/up.png -------------------------------------------------------------------------------- /id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/id.go -------------------------------------------------------------------------------- /input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/input.go -------------------------------------------------------------------------------- /internal/vettool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/internal/vettool/main.go -------------------------------------------------------------------------------- /layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/layout.go -------------------------------------------------------------------------------- /panel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/panel.go -------------------------------------------------------------------------------- /scrollbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/scrollbar.go -------------------------------------------------------------------------------- /slider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/slider.go -------------------------------------------------------------------------------- /style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/style.go -------------------------------------------------------------------------------- /text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/text.go -------------------------------------------------------------------------------- /textfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/textfield.go -------------------------------------------------------------------------------- /widget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebitengine/debugui/HEAD/widget.go --------------------------------------------------------------------------------