EasyGUI
gui_widgets.h
1 
6 /*
7  * Copyright (c) 2019 Tilen MAJERLE
8  *
9  * Permission is hereby granted, free of charge, to any person
10  * obtaining a copy of this software and associated documentation
11  * files (the "Software"), to deal in the Software without restriction,
12  * including without limitation the rights to use, copy, modify, merge,
13  * publish, distribute, sublicense, and/or sell copies of the Software,
14  * and to permit persons to whom the Software is furnished to do so,
15  * subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
23  * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27  * OTHER DEALINGS IN THE SOFTWARE.
28  *
29  * This file is part of EasyGUI library.
30  *
31  * Author: Tilen Majerle <tilen@majerle.eu>
32  */
33 #ifndef GUI_HDR_WIDGETS_H
34 #define GUI_HDR_WIDGETS_H
35 
36 /* C++ detection */
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 /* Widget include */
42 #include "widget/gui_widget.h"
43 
44 /* List of all widgets */
45 #include "widget/gui_button.h"
46 #include "widget/gui_checkbox.h"
47 #include "widget/gui_container.h"
48 #include "widget/gui_debugbox.h"
49 #include "widget/gui_dialog.h"
50 #include "widget/gui_dropdown.h"
51 #include "widget/gui_edittext.h"
52 #include "widget/gui_graph.h"
53 #include "widget/gui_image.h"
54 #include "widget/gui_led.h"
55 #include "widget/gui_list_container.h"
56 #include "widget/gui_listbox.h"
57 #include "widget/gui_listview.h"
58 #include "widget/gui_progbar.h"
59 #include "widget/gui_radio.h"
60 #include "widget/gui_slider.h"
61 #include "widget/gui_textview.h"
62 #include "widget/gui_window.h"
63 
64 /* C++ detection */
65 #ifdef __cplusplus
66 }
67 #endif
68 
69 #endif /* GUI_HDR_WIDGETS_H */