
PROGRAMMERS GUIDE
*****************

You can pass the source file to gringosh in two ways:
    1) cat sourcefile | gringosh
    2) gringosh  -f  sourcefile
    
Available commands:

#!/usr/local/bin/gringosh
#This is a comment
@WINDOW, <Window Name>, y, x, w, h, Window Title
@LABEL,  y, x, w, Label Caption
@BUTTON, <Button Name>, y, x, w, Button Caption
@GET,    <Edit Box Name>, y, x, w, Default Text

Using 0 as width for Label, Buttons and Get implies autosize of the widget
to the lenght of the caption string.



The output is in the form:

    GRINGOSH=0|1
	(0) The user pressed ESCape
	(1) The user pressed or activate a widget

    EDITBOXNAME="Default Text"
	( ) Output the current text

    BUTTONNAME=0|1
	(0) Unclicked
	(1) The user clicked this button
