2003-11-03 08:22:45 -08:00
|
|
|
/*
|
|
|
|
|
GUI Inclusion file
|
|
|
|
|
by Gustav Larsson
|
|
|
|
|
gee@pyro.nu
|
|
|
|
|
|
|
|
|
|
--Overview--
|
|
|
|
|
|
2004-08-30 19:09:58 -07:00
|
|
|
Include this file and it will include the whole GUI.
|
2003-11-03 08:22:45 -08:00
|
|
|
|
|
|
|
|
--More info--
|
|
|
|
|
|
2004-08-30 19:09:58 -07:00
|
|
|
Check TDD for GUI Engine Documentation
|
2003-11-03 08:22:45 -08:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2003-11-22 07:07:22 -08:00
|
|
|
|
2003-11-03 08:22:45 -08:00
|
|
|
#ifndef GUI_H
|
|
|
|
|
#define GUI_H
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------
|
2003-11-05 14:34:38 -08:00
|
|
|
// Includes
|
2003-11-03 08:22:45 -08:00
|
|
|
//--------------------------------------------------------
|
|
|
|
|
#include <map>
|
2003-11-04 14:28:54 -08:00
|
|
|
#include <string>
|
2003-11-24 09:13:37 -08:00
|
|
|
#include <vector>
|
2003-11-03 08:22:45 -08:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
2006-06-01 19:10:27 -07:00
|
|
|
#include "ps/Pyrogenesis.h"
|
|
|
|
|
#include "ps/CStr.h"
|
2005-02-26 07:13:15 -08:00
|
|
|
#include "lib/types.h"
|
2006-06-01 19:10:27 -07:00
|
|
|
#include "lib/ogl.h"
|
2003-11-03 08:22:45 -08:00
|
|
|
|
2003-11-05 14:34:38 -08:00
|
|
|
#include "GUIbase.h"
|
|
|
|
|
#include "GUIutil.h"
|
2004-05-28 21:06:50 -07:00
|
|
|
#include "GUItext.h"
|
2005-04-23 16:20:50 -07:00
|
|
|
#include "CGUIList.h"
|
2003-11-23 18:18:41 -08:00
|
|
|
#include "IGUIObject.h"
|
|
|
|
|
#include "IGUIButtonBehavior.h"
|
2003-12-26 22:26:03 -08:00
|
|
|
#include "IGUIScrollBarOwner.h"
|
2004-05-28 21:06:50 -07:00
|
|
|
#include "IGUITextOwner.h"
|
2003-12-26 22:26:03 -08:00
|
|
|
#include "IGUIScrollBar.h"
|
|
|
|
|
#include "CGUIScrollBarVertical.h"
|
2003-11-03 08:22:45 -08:00
|
|
|
#include "CGUI.h"
|
|
|
|
|
|
2003-11-24 09:13:37 -08:00
|
|
|
#endif
|