Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

  1. Outdated egg!
  2. QobiScheme UI
    1. Commandline
    2. Graphical UI
    3. High-level UI
    4. Low-level UI
    5. Misc
    6. License

This page is maintained in the package's github repository.

QobiScheme UI

This egg is a port of the QobiScheme UI to Chicken. examples/define-application-example.scm provides an example of a UI. One minor incompatibility with QobiScheme is that abort is renamed to abort-gui to avoid a name clash with Chicken.

Commandline

[procedure] (define-command (function-name {arguments}) {expression}+)

Define a commandline application. The grammar for arguments and expressions is given below but it might be easier to look at the example instead. define-command produces error messages which print a usage line and explain why the input is incorrect.

define-command is slightly incompatible with QobiScheme's implementation. It expects arguments to be passed to it directly rather than through a list and it does not require the program name. It also fixes a bug where repeated arguments were provided in the wrong order.

 {arguments} ::= {keyword}* {required}* {optional}* [{rest}]
 {rest}     ::= (rest {defaulted-argument})
 {optional} ::= (optional {defaulted-argument})
 {required} ::= (required {defaulted-argument})
 {keyword} ::= (any-number {defaulted-keyword}*)
           |   (at-most-one {defaulted-keyword}*)
           |   (at-least-one {defaulted-keyword}+)
           |   (exactly-one {defaulted-keyword}+)
 {defaulted-keyword} ::= ({name} {supplied?} {defaulted-argument}*)
 {defaulted-argument} ::= ({variable} {doc} {type} {default})
 {type} ::= integer-argument | real-argument | string-argument

{name} and {doc} are strings. {doc} is only used for documentation. There can't be a {name} "usage" or "help". -usage and -help are created automatically. All of the {variable}s and {supplied?}s must be distinct. All of the {name}s must be distinct.

Note that any-number, at-least-one, rest, and required allow nondefaulted-keywords. This is to keep backward compatibility with QobiScheme but this version encourages using {defaulted-argument}s everywhere for simplicity.

You can define new {type}s as:

 (lambda (string) (if (ok? string) (string->value string) (usage {doc})))

An example that should make everything clear:

 (define-command
   (main (exactly-one ("file" file? (file "file" string-argument ""))
                      ("other-file" other-file?
                         (arg1 "pathname" string-argument "")
                         (arg2 "version" real-argument 0)))
         (at-most-one ("flag" flag?))
         (any-number ("more" more? (more "more" string-argument "")))
         (at-least-one ("alt" alt? (alt-arg "arg" string-argument "")))
         (required (needed "needed" string-argument ""))
         (optional (maybe "maybe" string-argument ""))
         (optional (another-maybe "another-maybe" string-argument ""))
         (rest (everything "everything" string-argument)))
   (pp (list file? file other-file? arg1 arg2 flag? more? more alt? alt-arg needed maybe another-maybe everything))(newline))
 (apply main command-line-arguments)

Without arguments, with incorrect arguments, with -usage, or -help this will print:

 usage: csi [-file file|-other-file pathname version] [-flag] [-more more]* [-alt arg]+ needed [maybe [another-maybe [everything]*]]

Graphical UI

[syntax] (define-application display-pane-width display-pane-height transcript-lines button-rows button-columns pre-initialize-procedure post-initialize-procedure finalize-procedure redraw-procedure listener-procedure)

The main way of defining GUI.

The GUI is composed of different regions: at the top we have buttons in the button pane, the main content of the application is displayed below in the display pane, below that are the transcript pane and echo pane which are used to output and input text, and at the bottom we have the status pane on the left and message pane on the right. Each pane is an X window embedded in the main X window of the application.

The display-pane-width and display-pane-height are in pixel units. When width is #f other arguments will determine the width of the application. The other panes automatically adjust their sizes. transcript-lines defines the number of lines in the transcript pane, can be #f. button-rows and button-columns set the size of the button grid in the button pane. Buttons will be automatically sized to take up the appropriate amount of space.

All the following procedures take no arguments. pre-initialize-procedure code to run before the application is ready. This is typically where you define UI elements. post-initialize-procedure code to run right after the UI is ready. finalize-procedure runs after the UI exists. redraw-procedure runs as needed to redraw the UI. listener-procedure runs when return is pressed in the transcript pane.

 (use qobischeme-ui)
 (define-application main #f 480 5 2 6
  (lambda ()
   (define-button 0 0 "Help" #f help-command)
   (define-button 5 0 "Quit" #f quit-gui)
   (define-radio-buttons *object* (lambda () #f)
    (1 0 line-segment "Line")
    (2 0 ellipse "Ellipse"))
   (define-toggle-button 0 1 "Flag" *flag?*
    (lambda () (say (format #f "Flag=~s" *flag?*))))
   (define-cycle-button 1 1 *mode*
    (lambda () (say (format #f "Mode=~s" *mode*)))
    (a "A")
    (b "B")
    (c "C"))
   (define-integer-range-buttons 2 1 3 1 *k* 0 9
    (lambda () (format #f "-K ~s" *k*))
    (lambda () (format #f "+K ~s" *k*))
    (lambda () (say (format #f "K=~s" *k*))))
   (define-key (list (control #\x) (control #\c)) "Quit" quit-gui)
   (define-key (control #\h) "Help" help-command))
  (lambda () #f)
  (lambda () #f)
  (lambda () #f))
 (main '())
[syntax] (define-display-pane-application display-pane-width display-pane-height pre-initialize-procedure post-initialize-procedure finalize-procedure redraw-procedure)

Define a stripped-down UI which will only show a display pane. See define-application for details.

High-level UI

[procedure] (xremove-expose-events)

It is generally a good idea to call this at the beginning of your redraw-procedure. It cleans up the X event queue.

[procedure] (say string)
[procedure] (status string)
[procedure] (message string)

Write to the transcript, status, and message panes.

[procedure] (redraw-buttons)
[procedure] (redraw-display-pane)
[procedure] (redraw-transcript-pane)
[procedure] (redraw-echo-pane)
[procedure] (redraw-status-pane)
[procedure] (redraw-message-pane)

Redraw one of the panes.

[procedure] (define-button-specific-region button state-mask state x y width height method)

Call method with an x y coordinate when the given X button is pressed masked by an X state mask.

[procedure] (define-button column row name bold?-procedure method)

Display a button in the button pane at the given column and row. name is either a string or a procedure which takes no arugments and returns a string. bold?-procedure is either #f or a procedure which takes no arguments and returns a boolean. method will be called with no arugments when the button is pressed.

[procedure] (define-sized-button x y size offset text-procedure bold?-procedure method)

Like define-button but takes a size and offset which are used to define buttons with non-standard sizes.

[syntax] (define-toggle-button column row name variable method)

Define a toggle button. A wrapper around define-button which you can look to for details. Will flip the truth value of the variable variable and call method with no arguments.

[syntax] (define-radio-buttons variable method (column row symbol string)+)

Display buttons which let you select the state of variable. Will call method with no arguments when the state changes. Any number of quads can be provided. Each quad defines a column and row for a button, the symbol to which to set variable, and the string to display as the text for that button.

[syntax] (define-cycle-button column row variable method (symblol text)+)

Display a button which cycles through a range of values for variable. method will be called with no arguments when the state changes. Any number of tuples can be provided. Each tuple consists of the symbol to which to set the variable to and the text to display on the button.

[syntax] (define-integer-range-buttons column1 row1 column2 row2 variable min max name1 name2 method)

Define two buttons, the first increments and the second decrements variable.

[procedure] (define-spinner-buttons row column name f-up f-down f-print)

Define two spinner buttons side-by-side on the same row.

[procedure] (quit-gui)
[procedure] (abort-gui)

Call the quit or abort handlers.

[procedure] (pnm->pixmap pnm)
[procedure] (free-pixmap pixmap)
[procedure] (draw-pixmap pixmap x y)

Convert a PNM to a pixmap, free a pixmap or draw a pixmap given coordinates for the top left hand corner of the image.

[procedure] (draw-clickable-pixmap-from-pnm pixmap pnm x y scale handler)

Draw a clickable pixmap which calls handler with the x and y position of the mouse click.

[procedure] (define-key character documentation command)

Define a shortcut for a given character. command is a function with no arugments that will be called when the keystroke is used. documentation will be displayed in the help overlay.

[procedure] (control character)
[procedure] (meta character)

Apply a modifier to a chacter.

[procedure] (define-region x y width height method)

Any mouse presses in the given region of the display pane will result in calls to method with the x and y coordinates of the mouse press. Note that regions are not permanent, they need to be reset every redraw.

[procedure] (tracking-pointer twice? press? tracker)

Track the position of the mouse calling tracker with the x and y coordinates of the mouse.

[record] (define-structure tree-node width height offset text bold? procedure daughters)
[procedure] (tree->tree-node tree)
[procedure] (draw-tree-node tree-node x y)
[procedure] (tree-height tree)
[procedure] (draw-tree tree x y)

Store, draw, and manipulate trees.

[record] (define-structure alist-node width height offset keys values)
[procedure] (alist->alist-node alist)
[procedure] (draw-alist-node alist-node x y)
[procedure] (alist-height alist)
[procedure] (draw-alist alist x y)

Store, draw, and manipulate alists.

[procedure] (help-command)

Show the help overlay. Will be automatically populated by all keybindings.

[procedure] (help-scroll-up-line-command)
[procedure] (help-scroll-down-line-command)
[procedure] (help-scroll-up-page-command)
[procedure] (help-scroll-down-page-command)
[procedure] (help-scroll-beginning-command)
[procedure] (help-scroll-end-command)

Scrolls the help overlay.

[procedure] (draw-ellipse display drawable gc ellipse)

Draw an ellipse with the given GC context.

[procedure] (draw-clickable-strings-with-scroll-bar first-line set-first-line! left middle right strings xmin xmax ymin ymax)
[procedure] (draw-clickable-strings-with-optional-scroll-bar first-line set-first-line! left middle right strings xmin xmax ymin ymax font font-gc-f)

Draw a list of strings to the UI with scroll bars or optional scroll balls. first-line is an index into a list of strings, set-first-list! is a procedure which is used to update the position in the list.

Low-level UI

[procedure] (set-background-task-enabler! procedure)
[procedure] (set-background-task-disabler! procedure)
[procedure] (pause)
[procedure] (set-pause! p)

Enable, disable, and pause background tasks.

[procedure] (process-events)

Process pending X events.

[procedure] (set-window-method! window event-type method)

Attach a method to a window. method will be called with a variable number of arguments depending on the event sent. event-type is a symbol.

[procedure] (send window event-type . &rest)

Send an event to a window. event-type is a symbol and rest contains arguments that will be passed to the handler method.

Misc

[procedure] (define stalin? #f)
[procedure] (char-alphanumeric? char)
[procedure] (beginning-of-word? string position)
[procedure] (end-of-word? string position)
[procedure] (string-backward-word string position)
[procedure] (string-kill-word string position)
[procedure] (string-forward-word string position)
[procedure] (string-backward-kill-word string position)
[procedure] (string-insert-character character)
[procedure] (string-beginning-of-line string position)
[procedure] (string-backward-char string position)
[procedure] (string-delete-char string position)
[procedure] (string-end-of-line string position)
[procedure] (string-forward-char string position)
[procedure] (string-kill-line string position)
[procedure] (string-backward-delete-char string position)

Miscellaneous functions. These probably belong elsewhere.

[procedure] (define *frame-rate* 30.0)
[procedure] (pnm-movie->pixmaps pnm-movie)
[procedure] (draw-pixmaps pixmaps x y)
[procedure] (free-pixmaps pixmaps)

Legacy. Use the ffmpeg-video egg instead.

[procedure] (echo-pane-command editor)
[procedure] (echo-pane-insert-character-command character)
[procedure] (echo-pane-beginning-of-line-command)
[procedure] (echo-pane-backward-char-command)
[procedure] (echo-pane-delete-char-command)
[procedure] (echo-pane-end-of-line-command)
[procedure] (echo-pane-forward-char-command)
[procedure] (echo-pane-kill-line-command)
[procedure] (echo-pane-backward-delete-char-command)
[procedure] (echo-pane-backward-word-command)
[procedure] (echo-pane-kill-word-command)
[procedure] (echo-pane-command string-kill-word)
[procedure] (echo-pane-forward-word-command)
[procedure] (echo-pane-backward-kill-word-command)

Modify the content of the echo pane. These are internal functions.

[procedure] (abort?)
[procedure] (character->pretty-name character)
[procedure] (prefix-string prefix)
[procedure] (region-handler x y button state)
[procedure] (define-structure region button state-mask state x y width height method)
[procedure] (allocate-color-cube! reds greens blues)
[procedure] (abort-command)
[procedure] (kill-application)
[procedure] (set-kill-application! procedure)

License

Written by Jeffrey Mark Siskind and part of QobiScheme.

Maintainer: Andrei Barbu, andrei@0xab.com

  Copyright 1993-1995 University of Toronto. All rights reserved.
  Copyright 1996 Technion. All rights reserved.
  Copyright 1996 and 1997 University of Vermont. All rights reserved.
  Copyright 1997-2001 NEC Research Institute, Inc. All rights reserved.
  Copyright 2002-2013 Purdue University. All rights reserved.
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Lesser General Public License for more details.
  You should have received a copy of the GNU Lesser General Public License
  along with this program.  If not, see http://www.gnu.org/licenses.