Zenity dialogs for Golang, Windows, macOS Fork of https://github.com/ncruces/zenity
Find a file
2020-01-12 23:16:00 +00:00
cmd/zenity File selection tweaks, options, API (windows). 2020-01-12 03:37:01 +00:00
internal File selection improvements (macos). 2020-01-12 23:16:00 +00:00
.gitignore WIP: zenity command (macos). 2020-01-07 00:57:50 +00:00
file.go Improved file selection (windows). 2020-01-09 17:06:12 +00:00
file_darwin.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00
file_test.go File selection tweaks, options, API (windows). 2020-01-12 03:37:01 +00:00
file_unix.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00
file_windows.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00
go.mod WIP: zenity command. 2020-01-09 03:00:22 +00:00
go.sum WIP: zenity command. 2020-01-09 03:00:22 +00:00
init_windows.go Folder selection improvements, refactoring (windows). 2020-01-12 18:55:10 +00:00
init_windows_test.go File API, windows fixes. 2020-01-03 01:44:23 +00:00
LICENSE Initial commit 2019-12-10 10:51:21 +00:00
msg_darwin.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00
msg_test.go Documentation. 2020-01-10 12:35:41 +00:00
msg_unix.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00
msg_windows.go Folder selection improvements, refactoring (windows). 2020-01-12 18:55:10 +00:00
README.md Update README.md 2020-01-11 12:10:09 +00:00
zenity.go File selection improvements (macos). 2020-01-12 23:16:00 +00:00

Zenity dialogs for Golang, Windows and macOS

GoDoc

This repo includes both a cross-platform Go package providing Zenity-like dialogs, as well as a “port” of the zenity command to both Windows and macOS based on that library.

This is a work in progress.

Lots of things are missing. For now, these are the only implemented dialogs:

  • message (error, info, question, warning)
  • file selection

Behavior on Windows, macOS and other UNIXes might differ slightly. Some of that is intended (reflecting platform differences), other bits are unfortunate limitations, others still are open to be fixed.

Why?

There are a bunch of other dialog packages for Go.
Why reinvent this particular wheel?

Requirements:

  • no cgo (see benefits, mostly cross-compilation)
  • no main loop (or other threading requirements)
  • no initialization
  • on Windows:
    • no additional dependencies
      • Explorer shell not required
      • works in Server Core
    • Unicode support
  • on macOS:
    • only dependency is osascript (with JXA)
      JavaScript is easier to template (with html/template)
  • on other UNIXes:
    • wraps either one of qarma, zenity, matedialog,
      in that order of preference