Crazy Eddies GUI System  0.6.2
CEGUIForwardRefs.h
1 /***********************************************************************
2  filename: CEGUIForwardRefs.h
3  created: 21/2/2004
4  author: Paul D Turner
5 
6  purpose: Forward declares all core system classes
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 _CEGUIForwardRefs_h_
31 #define _CEGUIForwardRefs_h_
32 
33 // Start of CEGUI namespace section
34 namespace CEGUI
35 {
36 
37 /*************************************************************************
38  Forward reference declarations of all core GUI system classes
39 *************************************************************************/
40 class String;
41 class Vector3;
42 class Size;
43 class Exception;
44 class Rect;
45 class ColourRect;
46 class colour;
47 class Texture;
48 class Renderer;
49 class Image;
50 class Imageset;
51 class ImagesetManager;
52 class MouseCursor;
53 class Font;
54 class FontManager;
55 class EventArgs;
56 class Event;
57 class EventSet;
58 class Property;
59 class PropertySet;
60 class Window;
61 class WindowFactory;
62 class WindowManager;
63 class Scheme;
64 class SchemeManager;
65 class ScriptWindowHelper;
66 class System;
67 class FactoryModule;
68 class ScriptModule;
69 class ResourceProvider;
70 class DefaultResourceProvider;
71 class DynamicModule;
72 class PropertyReceiver;
73 class GlobalEventSet;
74 class XMLAttributes;
75 class XMLHandler;
76 class XMLParser;
77 class WindowRenderer;
78 class WindowRendererManager;
79 
80 /*************************************************************************
81  Forward reference declarations for GUI element base classes
82 *************************************************************************/
83 class ButtonBase;
84 class RadioButton;
85 class Checkbox;
86 class PushButton;
87 class Titlebar;
88 class FrameWindow;
89 class Editbox;
90 class Listbox;
91 class Combobox;
92 class ListHeaderSegment;
93 class ListHeader;
94 class MultiColumnList;
95 class ProgressBar;
96 class Thumb;
97 class Scrollbar;
98 class Slider;
99 class ListboxItem;
100 class ListboxTextItem;
101 class ComboDropList;
102 class MultiLineEditbox;
103 class Spinner;
104 class GUISheet;
105 class DragContainer;
106 class ScrollablePane;
107 class ScrolledContainer;
108 class Tooltip;
109 class ItemEntry;
110 class MenuItem;
111 class ItemListBase;
112 class MenuBase;
113 class Menubar;
114 class PopupMenu;
115 class ScrolledItemListBase;
116 class ItemListbox;
117 class TabButton;
118 class TabControl;
119 class Tree;
120 
121 } // End of CEGUI namespace section
122 
123 #endif // end of guard _CEGUIForwardRefs_h_