0ad/source/gui/GUI.h

54 lines
1 KiB
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 07:07:22 -08:00
#ifndef GUI_H
#define GUI_H
//--------------------------------------------------------
// Compiler specific
//--------------------------------------------------------
// Important that we do this before <map> is included
#ifdef _MSC_VER
# pragma warning(disable:4786)
#endif
//--------------------------------------------------------
// Includes
//--------------------------------------------------------
#include <map>
2003-11-04 14:28:54 -08:00
#include <string>
2003-11-24 09:13:37 -08:00
#include <vector>
#include <stddef.h>
#include "Pyrogenesis.h"
2003-11-30 23:06:55 -08:00
#include "CStr.h"
#include "types.h"
#include "ogl.h"
#include "GUIbase.h"
#include "GUIutil.h"
2004-05-28 21:06:50 -07:00
#include "GUItext.h"
2003-11-23 18:18:41 -08:00
#include "IGUIObject.h"
#include "IGUIButtonBehavior.h"
#include "IGUIScrollBarOwner.h"
2004-05-28 21:06:50 -07:00
#include "IGUITextOwner.h"
#include "IGUIScrollBar.h"
#include "CGUIScrollBarVertical.h"
#include "CGUISprite.h"
#include "CGUI.h"
2003-11-24 09:13:37 -08:00
#endif