Fabian Harfert 9358e84b0f Make title optional for all functions. | 8 years ago | |
---|---|---|
examples | 8 years ago | |
.gitignore | 8 years ago | |
LICENSE | 8 years ago | |
Makefile | 8 years ago | |
README.md | 8 years ago | |
guile-zenity.png | 8 years ago | |
zenity.scm | 8 years ago |
Version: 0.1
Zenity is a command line tool that displays simple dialog boxes.
This library creates scheme procedures that build up a zenity command line, call it then parse the result and return it as scheme data.
To use this you need to install the zenity
program.
After than you need to move the zenity.scm
file of this repo into your GUILE_LOAD_PATH
.
To test that it's working try this:
$ guile
scheme@(guile-user)> (use-modules (zenity))
scheme@(guile-user)> (zenity-info "Hello world!")
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
$1 = #t
the warning can be ignored.
There are two examples programs:
guile -l birthday.scm
: This programs asks your date of birth and sometimes wishes a happy birthday.guile -l list-example.scm
: This program demonstrates using the list dialog (since it is a bit more complex to call than others).guile -l forms-example.scm
: Shows how to use the forms dialog.guile -l egg-timer.scm
: Demonstrates the progress-bar feature - select a length of time then wait that long.guile -l guix-helper.scm
: A sample program that helps build a guix package definition from forms filled in.If you get an error like this:
ERROR: In procedure scm-error:
ERROR: no code for module (zenity)
try running it this way:
GUILE_LOAD_PATH=`pwd` guile -l examples/egg-timer.scm
that should help guile find the library.
All functions accept at least the following arguments:
#:title
: Title of the displayed window#:icon
: Window icon#:width
and #:height
: Window geometry#:timeout
: Number of seconds after which the window is hidden(zenity-calendar message)
Shows a calendar for the user to pick a date from. The return value will be #f on Cancel, and an assoc list with fields day
, month
, year
on success.
(zenity-color-selection #:key (color #f) (show-palette #f))
This opens a color picker, it returns strings of the form "rgb(0,1,2)". You can preset the color by name e.g. #:color "blue"
. By default it is a HSV color picker but you can change it to a palette by passing #:show-palette #t
.
(zenity-file-selection title #:key (multiple #f) (directory #f) (save #f) (filename #f))
This opens up a dialog for choosing a file. There are keyword options to allow selecting multiple files, restricting it to directories only or making a new filename to save data to. A new keyword filename added to let you preset which directory the file might be chosen from.
Warning: A limitation of the way zenity outputs the file list (separated by the | character) is that this gives bad output on files with | in the name.
(zenity-forms title text layout)
This produces a form built out of 'layout', layout is an assoc list of (<type> . <name>)
pairs. The form field types are: entry
, password
, calendar
. The field names are just strings.
The return value is a list: each piece of data entered by the user.
Warning: A limitation of the way zenity outputs data (separated by the , character) is that this will error if any data inputted contains the , character.
(zenity-list message columns rows)
(zenity-checklist message columns rows)
Pass in list of columns and then a list of rows to let display and let an item be chosen from a list.
The return value of zenity-list is the selected row. The return value of zenity-checklist is a list of the string versions of the first column of the selected items.
(zenity-error message)
(zenity-info message)
(zenity-question message)
(zenity-warning message)
Display a simple informational dialog box. The -question and -warning variants return a boolean for whether OK or Cancel was pressed.
(zenity-scale message #:key (value #f) (minimum #f) (maximum #f) (step #f) (hide-value #f))
This dialog gives a slider to enable picking a number in a range.
(zenity-password message)
(zenity-entry message)
Asks the user for some input, the return value is #f on Cancel or the text that was inputted.
(zenity-pulsate message #:key (auto-close #f) (no-cancel #f) )
(zenity-progress message #:key (value #f) (auto-close #f) (no-cancel #f))
These display a progress bar and return a new procedure while the dialog is still open.