Sources/Include/UICore/ui.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** 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
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 #include "UI/Controller/window_controller.h"
32 #include "UI/Controller/window_manager.h"
33 #include "UI/Events/activation_change_event.h"
34 #include "UI/Events/close_event.h"
35 #include "UI/Events/event.h"
36 #include "UI/Events/focus_change_event.h"
37 #include "UI/Events/key_event.h"
38 #include "UI/Events/pointer_event.h"
39 #include "UI/Events/resize_event.h"
40 #include "UI/StandardViews/button_view.h"
41 #include "UI/StandardViews/image_view.h"
42 #include "UI/StandardViews/label_view.h"
43 #include "UI/StandardViews/progress_view.h"
44 #include "UI/StandardViews/scroll_view.h"
45 #include "UI/StandardViews/scrollbar_view.h"
46 #include "UI/StandardViews/slider_view.h"
47 #include "UI/StandardViews/text_block_view.h"
48 #include "UI/StandardViews/text_field_view.h"
49 #include "UI/StandardViews/text_area_view.h"
50 #include "UI/StandardViews/checkbox_view.h"
51 #include "UI/StandardViews/radiobutton_view.h"
52 #include "UI/StandardViews/spin_view.h"
53 #include "UI/StandardViews/listbox_view.h"
54 #include "UI/StandardViews/layout_views.h"
55 #include "UI/Image/image_source.h"
56 #include "UI/Style/style.h"
57 #include "UI/Style/style_cascade.h"
58 #include "UI/Style/style_dimension.h"
59 #include "UI/Style/style_get_value.h"
60 #include "UI/Style/style_property_parser.h"
61 #include "UI/Style/style_set_image.h"
62 #include "UI/Style/style_set_value.h"
63 #include "UI/Style/style_token.h"
64 #include "UI/Style/style_tokenizer.h"
65 #include "UI/Style/style_value_type.h"
66 #include "UI/SystemDialogs/open_file_dialog.h"
67 #include "UI/SystemDialogs/save_file_dialog.h"
68 #include "UI/SystemDialogs/folder_browse_dialog.h"
69 #include "UI/TopLevel/top_level_window.h"
70 #include "UI/TopLevel/texture_window.h"
71 #include "UI/TopLevel/view_tree.h"
72 #include "UI/View/focus_policy.h"
73 #include "UI/View/view.h"
74 #include "UI/View/view_geometry.h"
75 #include "UI/View/view_action.h"
76 #include "UI/UIThread/ui_thread.h"