78 lines
2.9 KiB
C++
78 lines
2.9 KiB
C++
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// TGUI - Texus' Graphical User Interface
|
|
// Copyright (C) 2012-2017 Bruno Van de Velde (vdv_b@tgui.eu)
|
|
//
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
//
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
// subject to the following restrictions:
|
|
//
|
|
// 1. The origin of this software must not be misrepresented;
|
|
// you must not claim that you wrote the original software.
|
|
// If you use this software in a product, an acknowledgment
|
|
// in the product documentation would be appreciated but is not required.
|
|
//
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
// and must not be misrepresented as being the original software.
|
|
//
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TGUI_TGUI_HPP
|
|
#define TGUI_TGUI_HPP
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <TGUI/Clipboard.hpp>
|
|
#include <TGUI/Animation.hpp>
|
|
#include <TGUI/Widget.hpp>
|
|
#include <TGUI/ToolTip.hpp>
|
|
#include <TGUI/Container.hpp>
|
|
#include <TGUI/Gui.hpp>
|
|
|
|
#include <TGUI/Loading/Deserializer.hpp>
|
|
#include <TGUI/Loading/Serializer.hpp>
|
|
#include <TGUI/Loading/Theme.hpp>
|
|
#include <TGUI/Loading/WidgetLoader.hpp>
|
|
#include <TGUI/Loading/WidgetSaver.hpp>
|
|
|
|
#include <TGUI/Widgets/Button.hpp>
|
|
#include <TGUI/Widgets/Canvas.hpp>
|
|
#include <TGUI/Widgets/ChatBox.hpp>
|
|
#include <TGUI/Widgets/CheckBox.hpp>
|
|
#include <TGUI/Widgets/ChildWindow.hpp>
|
|
#include <TGUI/Widgets/ClickableWidget.hpp>
|
|
#include <TGUI/Widgets/ComboBox.hpp>
|
|
#include <TGUI/Widgets/EditBox.hpp>
|
|
#include <TGUI/Widgets/Group.hpp>
|
|
#include <TGUI/Widgets/Grid.hpp>
|
|
#include <TGUI/Widgets/HorizontalLayout.hpp>
|
|
#include <TGUI/Widgets/HorizontalWrap.hpp>
|
|
#include <TGUI/Widgets/Knob.hpp>
|
|
#include <TGUI/Widgets/Label.hpp>
|
|
#include <TGUI/Widgets/ListBox.hpp>
|
|
#include <TGUI/Widgets/MenuBar.hpp>
|
|
#include <TGUI/Widgets/MessageBox.hpp>
|
|
#include <TGUI/Widgets/Panel.hpp>
|
|
#include <TGUI/Widgets/Picture.hpp>
|
|
#include <TGUI/Widgets/ProgressBar.hpp>
|
|
#include <TGUI/Widgets/RadioButton.hpp>
|
|
#include <TGUI/Widgets/RadioButtonGroup.hpp>
|
|
#include <TGUI/Widgets/Scrollbar.hpp>
|
|
#include <TGUI/Widgets/Slider.hpp>
|
|
#include <TGUI/Widgets/SpinButton.hpp>
|
|
#include <TGUI/Widgets/Tabs.hpp>
|
|
#include <TGUI/Widgets/TextBox.hpp>
|
|
#include <TGUI/Widgets/VerticalLayout.hpp>
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // TGUI_TGUI_HPP
|
|
|