Clarify the action propagation behaviour in custom control development guide
[platform/core/uifw/dali-toolkit.git] / doc / dali-toolkit-doc.h
1 #ifndef __DALI_TOOLKIT_DOC_H__
2 #define __DALI_TOOLKIT_DOC_H__
3
4 /*
5  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 /**
22  * @defgroup dali DALi
23  * @ingroup CAPI_UI_FRAMEWORK
24  *
25  * @brief DALi is a cross-platform 3D UI Toolkit for embedded systems.
26  *
27  * @section dali-overview Overview
28  *
29  * DALi's 3D user interface engine enables you to create rich and high-performance
30  * UI applications. DALi is based on OpenGL ES 2.0, but provides a clean
31  * cross-platform C++ framework.
32  * This means that you can use high-level DALi APIs instead of accessing
33  * low-level OpenGL APIs directly.
34  *
35  * DALi consists of the following modules:
36  * <table>
37  * <tr>
38  *    <th>Module</th>
39  *    <th>Description</th>
40  * </tr>
41  * <tr>
42  *    <td>@ref dali_core</td>
43  *    <td>DALi Core provides core functionalities such as scene graph-based rendering, animation, and event handling.</td>
44  * </tr>
45  * <tr>
46  *    <td>@ref dali_adaptor</td>
47  *    <td>DALi Adaptor is a platform adaptation layer.</td>
48  * </tr>
49  * <tr>
50  *    <td>@ref dali_toolkit</td>
51  *    <td>DALi Toolkit provides UI components and various effects on top of the DALi Core.</td>
52  * </tr>
53  * </table>
54  *
55  * The layer diagram for DALi modules is shown below:
56  * @image html dali-modules.png "Figure: DALi modules"
57  *
58  * @defgroup dali_toolkit DALi Toolkit
59  *
60  * @brief DALi Toolkit provides UI components and various effects on top of the DALi Core.
61  *
62  * @section dali_core_overview Overview
63  *
64  * DALi Toolkit consists of the following groups of API:
65  *
66  * <table>
67  * <tr>
68  *    <th>API Group</th>
69  *    <th>Description</th>
70  * </tr>
71  * <tr>
72  *    <td>@ref dali_toolkit_controls</td>
73  *    <td>Controls are interactive components for layouting the user interface.</td>
74  * </tr>
75  * <tr>
76  *    <td style="padding-left:1em">@ref dali_toolkit_controls_alignment</td>
77  *    <td>Alignment is a container which provides an easy way to align other actors inside its boundary.</td>
78  * </tr>
79  * <tr>
80  *    <td style="padding-left:1em">@ref dali_toolkit_controls_buttons</td>
81  *    <td>Button is a small object on UI that you can press.</td>
82  * </tr>
83  * <tr>
84  *    <td style="padding-left:1em">@ref dali_toolkit_controls_gaussian_blur_view</td>
85  *    <td>GaussianBlurView provides a render process that blurs an image.</td>
86  * </tr>
87  * <tr>
88  *    <td style="padding-left:1em">@ref dali_toolkit_controls_image_view</td>
89  *    <td>ImageView is a control displying an image.</td>
90  * </tr>
91  * <tr>
92  *    <td style="padding-left:1em">@ref dali_toolkit_controls_scroll_bar</td>
93  *    <td>ScrollBar control.</td>
94  * </tr>
95  * <tr>
96  *    <td style="padding-left:1em">@ref dali_toolkit_controls_scrollable</td>
97  *    <td>Scrollable container controls.</td>
98  * </tr>
99  * <tr>
100  *    <td style="padding-left:2em">@ref dali_toolkit_controls_item_view</td>
101  *    <td>ItemView class is a scrollable container that can contain many items.</td>
102  * </tr>
103  * <tr>
104  *    <td style="padding-left:2em">@ref dali_toolkit_controls_scroll_view</td>
105  *    <td>ScrollView class provides scrollable view which contains actors and can be scrolled automatically or manually by panning.</td>
106  * </tr>
107  * <tr>
108  *    <td style="padding-left:1em">@ref dali_toolkit_controls_table_view</td>
109  *    <td>TableView class is a layout container for aligning child actors in a grid like layout.</td>
110  * </tr>
111  * <tr>
112  *    <td style="padding-left:1em">@ref dali_toolkit_controls_text_controls</td>
113  *    <td>Controls for displaying text or text input.</td>
114  * </tr>
115  * <tr>
116  *    <td>@ref dali_toolkit_managers</td>
117  *    <td>Singleton classes for managing application-wide functionalities.</td>
118  * </tr>
119  * </table>
120  *
121  * @ingroup dali
122  * @{
123  *   @defgroup dali_toolkit_controls Controls
124  *   @brief Controls are interactive components for layouting the user interface.
125
126  *   @{
127  *     @defgroup dali_toolkit_controls_alignment Alignment
128  *     @brief Alignment is a container which provides an easy way to align other actors inside its boundary.
129
130  *     @defgroup dali_toolkit_controls_buttons Buttons
131  *     @brief Button is a small object on UI that you can press.
132
133  *     @defgroup dali_toolkit_controls_gaussian_blur_view Gaussian Blur View
134  *     @brief GaussianBlurView provides a render process that blurs an image.
135
136  *     @defgroup dali_toolkit_controls_image_view Image View
137  *     @brief ImageView is a control displying an image.
138
139  *     @defgroup dali_toolkit_controls_scroll_bar Scroll Bar
140  *     @brief ScrollBar control.
141
142  *     @defgroup dali_toolkit_controls_scrollable Scrollable
143  *     @brief Scrollable container controls.
144
145  *     @{
146  *       @defgroup dali_toolkit_controls_item_view Item View
147  *       @brief ItemView class is a scrollable container that can contain many items.
148
149  *       @defgroup dali_toolkit_controls_scroll_view Scroll View
150  *       @brief ScrollView class provides scrollable view which contains actors and can be scrolled automatically or manually by panning.
151
152  *     @}
153  *     @defgroup dali_toolkit_controls_table_view Table View
154  *     @brief TableView class is a layout container for aligning child actors in a grid like layout.
155
156  *     @defgroup dali_toolkit_controls_text_controls Text Controls
157  *     @brief Controls for displaying text or text input.
158
159  *   @}
160
161  *   @defgroup dali_toolkit_managers Managers
162  *   @brief Singleton classes for managing application-wide functionalities.
163
164  * @}
165  */
166
167
168 #endif  /* __DALI_TOOLKIT_DOC_H__ */