1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
$Id: gui.h,v 1.33 2002/01/08 10:17:25 sphair Exp $
------------------------------------------------------------------------
ClanLib, the platform independent game SDK.
This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
version 2. See COPYING for details.
For a total list of contributers see CREDITS.
See http://www.clanlib.org
------------------------------------------------------------------------
*/
//: <p>Graphical User Interface API. Provides a themeable and very flexible GUI
//: framework.</p>
//! Global=GUI
#ifndef header_gui
#define header_gui
#ifdef WIN32
#pragma warning( disable : 4786)
#endif
// Framework
#include "GUI/component.h"
#include "GUI/component_manager.h"
#include "GUI/component_move_handler.h"
#include "GUI/component_options.h"
#include "GUI/component_resize_handler.h"
#include "GUI/component_style.h"
#include "GUI/component_type.h"
#include "GUI/gui_file_parser.h"
#include "GUI/gui_manager.h"
#include "GUI/layout_manager.h"
#include "GUI/setupgui.h"
#include "GUI/stylemanager.h"
#include "GUI/stylemanager_default.h"
// Components
#include "GUI/button.h"
#include "GUI/checkbox.h"
#include "GUI/combobox.h"
#include "GUI/frame.h"
#include "GUI/image.h"
#include "GUI/inputbox.h"
#include "GUI/listbox.h"
#include "GUI/listbox_item.h"
#include "GUI/label.h"
#include "GUI/progressbar.h"
#include "GUI/scrollbar.h"
#include "GUI/treeview.h"
#include "GUI/treeview_item.h"
#include "GUI/treeview_node.h"
#include "GUI/window.h"
// Dialogs
#include "GUI/messagebox.h"
#include "GUI/filedialog.h"
#endif
|