2009-04-18 10:00:33 -07:00
|
|
|
/* Copyright (C) 2009 Wildfire Games.
|
|
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2003-11-03 08:22:45 -08:00
|
|
|
/*
|
|
|
|
|
GUI Inclusion file
|
|
|
|
|
|
|
|
|
|
--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
|
|
|
|
2007-05-07 09:33:24 -07:00
|
|
|
#ifndef INCLUDED_GUI
|
|
|
|
|
#define INCLUDED_GUI
|
2003-11-03 08:22:45 -08:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------
|
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/CStr.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"
|
2003-11-03 08:22:45 -08:00
|
|
|
|
2003-11-24 09:13:37 -08:00
|
|
|
#endif
|