1
2This is a very simple GUI framework, for use with SDL.
3It is very flexible, but is by no means a complete windowing system.
4Feel free to improve it!! :)
5
6It contains a C++ GUI class with a very rudimentary C interface,
7and a set of useful widget classes.
8
9File:		Contents:
10--------------- ----------------------------------------------------
11GUI.h		The C++ GUI container class
12GUI_C.h		The C interface to the GUI objects
13GUI_status.h	Type definitions shared between C and C++
14GUI_widget.h	The widget base class
15GUI_generic.h	The most generic widget, for use with C interface
16GUI_area.h	A simple colored rectangle widget
17GUI_image.h	A simple static image widget
18GUI_button.h	A simple image button widget
19GUI_scrollbar.h	A simple scrollbar/scrollbutton widget
20GUI_termwin.h	A simple dumb terminal widget
21GUI_widgets.h	A header to get all of the library widgets
22GUI_output.h	Some simple C functions for popup messages
23GUI_loadimage.h	Functions to load C image headers for GUI programs
24genimage.c	A program to generate a C image from a BMP file
25
26keyboard.cc	A simple program to test keyboard layouts under SDL
27hello.cc	An example of using the C++ GUI library
28hello_C.c	An example of using the C interface and GUI_output.h
29okay.c		An program to pop up quick "OK" message boxes
30