1
0
forked from 0ad/0ad
0ad/source/gui/GUI.h

46 lines
787 B
C
Raw Normal View History

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