GRINGO 3.0.0
============



What is GringoSh
----------------

Gringo is an attempt to achieve two goals.
1) Creating a powerfull tool to use in shell scripts.
2) Creating a libraries for curses programming.



How to run gringosh
-------------------

1) cat example.gringosh | gringosh
2) gringosh -f example.gringosh



Language
--------

The [xxx] mean an optional parameter that can be left blank


# Create a window
WINDOW,   x, y, w, h, Title

# Create a label
LABEL,    x, y, [w], Caption

# Create an edit box
EDIT,     x, y, [w], [Text], Widget Name

# Create a button
BUTTON,   x, y, [w], Caption, Widget Name

# Create a checkbox
CHECKBOX, x, y, value, Caption, Widget Name

# Create an empty listbox
LISTBOX,  x, y, w, h, Widget Name

# Add en element to the listbox
LISTITEM, Text







Author: Antonio Gallo