Go to file
polypmer 1ec8f6b01c gofmt files 2016-09-07 07:52:52 -04:00
Compatibility.md Updated the compatibility document. 2015-12-17 16:17:03 -05:00
LICENSE Added license and README. 2014-02-17 18:38:50 -05:00
README.md Forgot the important part. 2016-06-05 18:56:15 -04:00
TODO.md More TODOs. 2016-01-06 20:43:32 -05:00
area.go gofmt files 2016-09-07 07:52:52 -04:00
areahandler.go gofmt files 2016-09-07 07:52:52 -04:00
bindTODO Added a TODO for binding support. 2016-04-14 17:13:41 -04:00
box.go gofmt files 2016-09-07 07:52:52 -04:00
button.go gofmt files 2016-09-07 07:52:52 -04:00
checkbox.go gofmt files 2016-09-07 07:52:52 -04:00
combobox.go gofmt files 2016-09-07 07:52:52 -04:00
control.go gofmt files 2016-09-07 07:52:52 -04:00
datetimepicker.go gofmt files 2016-09-07 07:52:52 -04:00
draw.go gofmt files 2016-09-07 07:52:52 -04:00
dummy_windows.cpp Set up the Windows builds. Almost working! 2016-06-05 18:49:53 -04:00
entry.go gofmt files 2016-09-07 07:52:52 -04:00
fontbutton.go More TODOs. 2016-04-20 14:18:56 -04:00
group.go gofmt files 2016-09-07 07:52:52 -04:00
label.go gofmt files 2016-09-07 07:52:52 -04:00
libui_darwin_amd64.a Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
libui_linux_386.a Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
libui_linux_amd64.a Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
libui_windows_386.a Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
libui_windows_386.res.o Set up the Windows builds. Almost working! 2016-06-05 18:49:53 -04:00
libui_windows_amd64.a Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
libui_windows_amd64.res.o Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
link_darwin_amd64.go Fixed Linux static linking. 2016-05-29 23:44:09 -04:00
link_linux_386.go Fixed Linux static linking. 2016-05-29 23:44:09 -04:00
link_linux_amd64.go Fixed Linux static linking. 2016-05-29 23:44:09 -04:00
link_windows_386.go Rename static_windows_*.o files to .syso 2016-06-19 18:14:23 +02:00
link_windows_amd64.go Rename static_windows_*.o files to .syso 2016-06-19 18:14:23 +02:00
main.go gofmt files 2016-09-07 07:52:52 -04:00
progressbar.go gofmt files 2016-09-07 07:52:52 -04:00
radiobuttons.go gofmt files 2016-09-07 07:52:52 -04:00
separator.go Added Separator. 2015-12-12 18:48:43 -05:00
slider.go gofmt files 2016-09-07 07:52:52 -04:00
spinbox.go gofmt files 2016-09-07 07:52:52 -04:00
static.manifest Set up the Windows builds. Almost working! 2016-06-05 18:49:53 -04:00
static.rc Set up the Windows builds. Almost working! 2016-06-05 18:49:53 -04:00
static_windows_386.syso Rename static_windows_*.o files to .syso 2016-06-19 18:14:23 +02:00
static_windows_amd64.syso Rename static_windows_*.o files to .syso 2016-06-19 18:14:23 +02:00
stddialogs.go Safer nil pointer handling in stddialogs 2016-06-10 17:07:15 +03:00
tab.go gofmt files 2016-09-07 07:52:52 -04:00
ui.h Updated everything to alpha3.1. 2016-06-05 18:11:26 -04:00
util.go gofmt files 2016-09-07 07:52:52 -04:00
window.go gofmt files 2016-09-07 07:52:52 -04:00
zy_page1_test.go Ported the test page 1 from libui. 2015-12-12 21:44:50 -05:00
zy_page2_test.go gofmt files 2016-09-07 07:52:52 -04:00
zz_test.go gofmt files 2016-09-07 07:52:52 -04:00

README.md

ui: platform-native GUI library for Go

Update 5 June 2016: You can FINALLY go get this package!

go get should work out of the box for the following configurations:

  • darwin/amd64
  • linux/386
  • linux/amd64
  • windows/386
  • windows/amd64

Everything is now fully static — no DLLs or shared objects anymore!

Note that these might not fully work right now, as the libui Alpha 3.1 API isn't fully implemented yet, and there might be residual binding problems. Hopefully none which require an Alpha 3.2...

New README

This is a library that aims to provide simple GUI software development in Go.

It is based on my libui, a simple cross-platform library that does the same thing, but written in C. You must include this library in your binary distributions.

It runs on/requires:

  • Windows: cgo, Windows Vista SP2 with Platform Update and newer
  • Mac OS X: cgo, Mac OS X 10.8 and newer
  • other Unixes: cgo, GTK+ 3.10 and newer

It also requires Go 1.6 or newer (due to various bugs in cgo that were fixed only starting with 1.6).

(this README needs some work)

Installation

Documentation

The in-code documentation needs improvement. I have written a tutorial in the Wiki.

Updates