Experimenting with Go GTK+
 
 
Go to file
Noah fb0a73bbfa README update 2020-10-28 19:01:37 -07:00
ui More Pinephone tweaks 2020-07-06 21:33:27 -07:00
README.md README update 2020-10-28 19:01:37 -07:00
main.go Initial commit 2020-07-01 15:40:38 -07:00
main.py More Pinephone tweaks 2020-07-06 21:33:27 -07:00
requirements.txt Python version 2020-07-06 20:58:19 -07:00
screenshot.png Python version 2020-07-06 20:58:19 -07:00

README.md

glade-test

Some experimentation with GTK+ 3.0 / Glade GUIs in Go and Python, particularly for a mobile app UI with multiple screens.

Screenshot

Some features exercised:

  • A single-window app with multiple screens ("About" button slides to the About screen, Menu->Home button transitions back to main screen, etc.)
  • Dynamically added buttons to a Gtk.Box defined in the Glade file. The buttons click into a "Detail" screen updated with the label of the button clicked.
  • Menu->Open builds a dynamic Open File dialog.
  • Menu->New shows a custom New File dialog defined in the Glade file.

Python Setup

# Install dependencies (Fedora)
sudo dnf install python3-devel kernel-headers glibc-devel gobject-introspection-devel

# Install dependencies (Alpine Linux/postmarketOS)
sudo apk add python3-dev linux-headers musl-dev gobject-introspection-dev

# Python dependencies
pip install -r requirements.txt

# Run it
python main.py