• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

CHANGESH A D03-Apr-20073 KiB7456

COPYINGH A D03-Apr-2007120 42

GUI.cppH A D03-Apr-20073.8 KiB200150

GUI.hH A D03-Apr-20071.8 KiB7326

GUI_C.cppH A D03-Apr-20071.2 KiB5833

GUI_C.hH A D03-Apr-20071.8 KiB7432

GUI_area.cppH A D03-Apr-20072.5 KiB11486

GUI_area.hH A D03-Apr-2007994 4822

GUI_button.cppH A D03-Apr-20077.7 KiB365318

GUI_button.hH A D03-Apr-20072.8 KiB10850

GUI_font.cppH A D06-Apr-20002.1 KiB10788

GUI_font.hH A D06-Apr-20001.3 KiB6028

GUI_generic.cppH A D03-Apr-20071.4 KiB8871

GUI_generic.hH A D03-Apr-2007955 4318

GUI_image.cppH A D03-Apr-2007960 4831

GUI_image.hH A D03-Apr-2007668 3514

GUI_loadimage.cppH A D06-Apr-20001.4 KiB5131

GUI_loadimage.hH A D03-Apr-2007929 3414

GUI_menu.cppH A D06-Apr-20005.7 KiB235188

GUI_menu.hH A D16-Jul-20072.9 KiB11766

GUI_output.cppH A D06-Apr-20009.4 KiB369265

GUI_output.hH A D03-Apr-20072.9 KiB8026

GUI_scroll.hH A D03-Apr-2007734 3314

GUI_scrollbar.cppH A D03-Apr-20073.9 KiB175124

GUI_scrollbar.hH A D03-Apr-20072.1 KiB8236

GUI_status.hH A D03-Apr-2007590 2715

GUI_termwin.cppH A D03-Apr-20075 KiB268212

GUI_termwin.hH A D03-Apr-20072.2 KiB8540

GUI_types.hH A D06-Apr-2000435 2712

GUI_widget.cppH A D03-Apr-20074.6 KiB254203

GUI_widget.hH A D03-Apr-20073.4 KiB13460

GUI_widgets.hH A D03-Apr-2007375 1910

MPWmake.sea.hqxH A D06-Apr-200027.2 KiB431429

Makefile.amH A D28-Dec-20071.3 KiB7162

Makefile.inH A D03-May-202225.7 KiB764677

READMEH A D06-Apr-20001.2 KiB3025

acinclude.m4H A D01-May-2006231.9 KiB6,5925,921

aclocal.m4H A D15-Jul-200737.6 KiB1,022884

autogen.shH A D01-May-2006145 94

cancel_img.hH A D06-Apr-200023.1 KiB103102

config.guessH A D15-Jul-200742.9 KiB1,4801,269

config.subH A D15-Jul-200731.5 KiB1,6071,464

configureH A D28-Dec-2007656.2 KiB20,20016,013

configure.inH A D15-Jul-20071.4 KiB6955

depcompH A D01-May-200615.5 KiB530329

genimage.cH A D10-Jul-20071.6 KiB6856

hello.cppH A D10-Jul-20073.5 KiB160120

hello_C.cH A D10-Jul-20073.2 KiB142107

install-shH A D06-Apr-20005.5 KiB252153

keyboard.cppH A D10-Jul-20072.5 KiB11382

ltmain.shH A D01-May-2006191.9 KiB6,8655,416

missingH A D06-Apr-20006.1 KiB191154

mkinstalldirsH A D06-Apr-2000722 4123

okay.cH A D10-Jul-2007753 3623

okay_img.hH A D06-Apr-200023.1 KiB103102

the_checker.hH A D06-Apr-20005.9 KiB8180

the_font.hH A D06-Apr-2000113.6 KiB215214

README

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