86

Gio: Portable, Immediate Mode GUI in Go

 4 years ago
source link: https://www.tuicool.com/articles/FZNJNvU
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Gio

Gio implements portable immediate mode GUI programs in Go. Gio programs run on all the major platforms: iOS/tvOS, Android, Linux (Wayland), macOS, Windows and browsers (Webassembly/WebGL).

Gio includes an efficient vector renderer based on the Pathfinder project ( https://github.com/pcwalton/pathfinder ). Text and other shapes are rendered using only their outlines without baking them into texture images, to support efficient animations, transformed drawing and pixel resolution independence.

gioui.org?status.svg

Installation

Gio is designed to work with very few dependencies. It depends only on the platform libraries for window management, input and GPU drawing.

Running Gio programs

With Go 1.13 or newer,

$ export GO111MODULE=on
$ go run gioui.org/example/hello

should display a simple message in a window.

The command

$ go run gioui.org/example/gophers

runs a simple (nonsense) demo that displays Go contributors fetched from GitHub.

If you run into quota issues, supply a Github token with the -token flag:

$ go run gioui.org/example/gophers -token <github token>

Running on mobiles

For Android, iOS, tvOS the gogio tool can build and package a Gio program for you.

To build an Android .apk file from the gophers example:

$ go run gioui.org/cmd/gogio -target android gioui.org/example/gophers

The apk can be installed to a running emulator or attached device with adb:

$ adb install gophers.apk

The gogio tool passes command line arguments to os.Args at runtime:

$ go run gioui.org/cmd/gogio -target android gioui.org/example/gophers -token <github token>

The -appid flag specifies the iOS bundle id or Android package id. The flag is required for creating signed .ipa files for iOS and tvOS devices, because the bundle id must match an id previously provisioned in Xcode. For example,

$ go run gioui.org/cmd/gogio -target ios -appid <bundle-id> gioui.org/example/gophers

Use the Window->Devices and Simulators option in Xcode to install the ipa file to the device. If you have ideviceinstaller installed, you can install the app from the command line:

$ ideviceinstaller -i gophers.ipa

If you just want to run a program on the iOS simulator, use the -o flag to specify a .app directory:

$ go run gioui.org/cmd/gogio -o gophers.app -target ios gioui.org/example/gophers

Install the app to a running simulator with simctl:

$ xcrun simctl install booted gophers.app

Webassembly/WebGL

To run a Gio program in a compatible browser, the gogio tool can output a directory ready to serve. With the goxec tool you don't even need a web server:

$ go run gioui.org/cmd/gogio -target js gioui.org/example/gophers
$ go get github.com/shurcooL/goexec
$ goexec 'http.ListenAndServe(":8080", http.FileServer(http.Dir("gophers")))'

Open http://localhost:8080 in a browser to run the program.

Integration with existing projects

See theintegration guide for details on using Gio with existing projects.

Programs using Gio

  • Scatter , an implementation of the Signal protocol over email.

Resources

Issues

File bugs and TODOs through theissue tracker or send an email to ~eliasnaur/[email protected] . For general discussion, use the mailing list: ~eliasnaur/[email protected] .

Contributing

Post discussion and patches to themailing list. No Sourcehut account is required and you can post without being subscribed.

See thecontribution guide for more details.

License

Dual-licensed under UNLICENSE or the MIT.

Donations

Bitcoin donations are gladly accepted to bc1q8xw95urett00f4xs3v66p2l6xp2mfk5erpe5ug . Donations will go toward hosting expenses and for supporting the author's full time work on Gio.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK