TGUI  v0.6.10
TGUI.hpp
1 //
3 // TGUI - Texus's Graphical User Interface
4 // Copyright (C) 2012-2015 Bruno Van de Velde (vdv_b@tgui.eu)
5 //
6 // This software is provided 'as-is', without any express or implied warranty.
7 // In no event will the authors be held liable for any damages arising from the use of this software.
8 //
9 // Permission is granted to anyone to use this software for any purpose,
10 // including commercial applications, and to alter it and redistribute it freely,
11 // subject to the following restrictions:
12 //
13 // 1. The origin of this software must not be misrepresented;
14 // you must not claim that you wrote the original software.
15 // If you use this software in a product, an acknowledgment
16 // in the product documentation would be appreciated but is not required.
17 //
18 // 2. Altered source versions must be plainly marked as such,
19 // and must not be misrepresented as being the original software.
20 //
21 // 3. This notice may not be removed or altered from any source distribution.
22 //
24 
25 #ifndef TGUI_TGUI_HPP
26 #define TGUI_TGUI_HPP
27 
29 
30 #include <TGUI/Widget.hpp>
31 #include <TGUI/ClickableWidget.hpp>
32 #include <TGUI/Clipboard.hpp>
33 #include <TGUI/Label.hpp>
34 #include <TGUI/Picture.hpp>
35 #include <TGUI/Button.hpp>
36 #include <TGUI/Checkbox.hpp>
37 #include <TGUI/RadioButton.hpp>
38 #include <TGUI/EditBox.hpp>
39 #include <TGUI/Slider.hpp>
40 #include <TGUI/Scrollbar.hpp>
41 #include <TGUI/ListBox.hpp>
42 #include <TGUI/LoadingBar.hpp>
43 #include <TGUI/ComboBox.hpp>
44 #include <TGUI/TextBox.hpp>
45 #include <TGUI/SpriteSheet.hpp>
46 #include <TGUI/AnimatedPicture.hpp>
47 #include <TGUI/SpinButton.hpp>
48 #include <TGUI/Slider2d.hpp>
49 #include <TGUI/Tab.hpp>
50 #include <TGUI/MenuBar.hpp>
51 #include <TGUI/ChatBox.hpp>
52 #include <TGUI/Knob.hpp>
53 
54 #include <TGUI/Canvas.hpp>
55 #include <TGUI/Container.hpp>
56 #include <TGUI/Panel.hpp>
57 #include <TGUI/ChildWindow.hpp>
58 #include <TGUI/MessageBox.hpp>
59 #include <TGUI/Grid.hpp>
60 #include <TGUI/Gui.hpp>
61 
62 #include <TGUI/SharedWidgetPtr.inl>
63 
64 
66 
67 #endif // TGUI_TGUI_HPP
68