Crazy Eddies GUI System  0.6.0
CEGUI.h
1 /***********************************************************************
2  filename: CEGUI.h
3  created: 21/2/2004
4  author: Paul D Turner
5 
6  purpose: Main system include for client code
7 *************************************************************************/
8 /***************************************************************************
9  * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining
12  * a copy of this software and associated documentation files (the
13  * "Software"), to deal in the Software without restriction, including
14  * without limitation the rights to use, copy, modify, merge, publish,
15  * distribute, sublicense, and/or sell copies of the Software, and to
16  * permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  *
19  * The above copyright notice and this permission notice shall be
20  * included in all copies or substantial portions of the Software.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28  * OTHER DEALINGS IN THE SOFTWARE.
29  ***************************************************************************/
30 #ifndef _CEGUI_h_
31 #define _CEGUI_h_
32 
33 // base stuff
34 #include "CEGUIBase.h"
35 #include "CEGUIString.h"
36 #include "CEGUIRect.h"
37 #include "CEGUIExceptions.h"
38 #include "CEGUITexture.h"
39 #include "CEGUIRenderer.h"
40 #include "CEGUIImageset.h"
41 #include "CEGUIImagesetManager.h"
42 #include "CEGUILogger.h"
43 #include "CEGUIMouseCursor.h"
44 #include "CEGUIFont.h"
45 #include "CEGUIFontManager.h"
46 #include "CEGUIEventArgs.h"
47 #include "CEGUIEvent.h"
48 #include "CEGUIEventSet.h"
49 #include "CEGUIGlobalEventSet.h"
50 #include "CEGUIProperty.h"
51 #include "CEGUIPropertySet.h"
52 #include "CEGUIWindow.h"
53 #include "CEGUIWindowFactory.h"
54 #include "CEGUIWindowFactoryManager.h"
55 #include "CEGUIWindowManager.h"
56 #include "CEGUIWindowRenderer.h"
57 #include "CEGUIWindowRendererManager.h"
58 #include "CEGUIScheme.h"
59 #include "CEGUISchemeManager.h"
60 #include "CEGUIScriptWindowHelper.h"
61 #include "CEGUISystem.h"
62 #include "CEGUIScriptModule.h"
63 #include "CEGUICoordConverter.h"
64 #include "CEGUIPropertyHelper.h"
65 
66 // Falagard core system include
67 #include "falagard/CEGUIFalWidgetLookManager.h"
68 
69 // gui elements
70 #include "elements/CEGUIButtonBase.h"
71 #include "elements/CEGUIPushButton.h"
72 #include "elements/CEGUICheckbox.h"
73 #include "elements/CEGUIRadioButton.h"
74 #include "elements/CEGUITitlebar.h"
75 #include "elements/CEGUIFrameWindow.h"
76 #include "elements/CEGUIProgressBar.h"
77 #include "elements/CEGUIEditbox.h"
78 #include "elements/CEGUIThumb.h"
79 #include "elements/CEGUISlider.h"
80 #include "elements/CEGUIScrollbar.h"
81 #include "elements/CEGUIListbox.h"
82 #include "elements/CEGUICombobox.h"
83 #include "elements/CEGUIListHeader.h"
84 #include "elements/CEGUIMultiColumnList.h"
85 #include "elements/CEGUIGUISheet.h"
86 #include "elements/CEGUIListboxTextItem.h"
87 #include "elements/CEGUIComboDropList.h"
88 #include "elements/CEGUIMultiLineEditbox.h"
89 #include "elements/CEGUITabButton.h"
90 #include "elements/CEGUITabControl.h"
91 #include "elements/CEGUISpinner.h"
92 #include "elements/CEGUIDragContainer.h"
93 #include "elements/CEGUIScrolledContainer.h"
94 #include "elements/CEGUIScrollablePane.h"
95 #include "elements/CEGUITooltip.h"
96 #include "elements/CEGUIItemEntry.h"
97 #include "elements/CEGUIMenuItem.h"
98 #include "elements/CEGUIItemListBase.h"
99 #include "elements/CEGUIMenuBase.h"
100 #include "elements/CEGUIMenubar.h"
101 #include "elements/CEGUIPopupMenu.h"
102 #include "elements/CEGUIScrolledItemListBase.h"
103 #include "elements/CEGUIItemListbox.h"
104 #include "elements/CEGUITree.h"
105 #include "elements/CEGUITreeItem.h"
106 #include "elements/CEGUIGroupBox.h"
107 
108 #endif // end of guard _CEGUI_h_