1 #ifndef DALI_TOOLKIT_DOC_H
2 #define DALI_TOOLKIT_DOC_H
5 * Copyright (c) 2019 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 * @ingroup CAPI_UI_FRAMEWORK
25 * @brief DALi is a cross-platform 3D UI Toolkit for embedded systems.
27 * @section dali-overview Overview
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.
35 * DALi consists of the following modules:
39 * <th>Description</th>
42 * <td>@ref dali_core</td>
43 * <td>DALi Core provides core functionalities such as scene graph-based rendering, animation, and event handling.</td>
46 * <td>@ref dali_adaptor</td>
47 * <td>DALi Adaptor is a platform adaptation layer.</td>
50 * <td>@ref dali_toolkit</td>
51 * <td>DALi Toolkit provides UI components and various effects on top of the DALi Core.</td>
55 * The layer diagram for DALi modules is shown below:
56 * @image html dali-modules.png "Figure: DALi modules"
58 * @defgroup dali_toolkit DALi Toolkit
60 * @brief DALi Toolkit provides UI components and various effects on top of the DALi Core.
62 * @section dali_toolkit_overview Overview
64 * DALi Toolkit consists of the following groups of API:
69 * <th>Description</th>
72 * <td>@ref dali_toolkit_controls</td>
73 * <td>Controls are interactive components for layouting the user interface.</td>
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>
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>
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>
88 * <td style="padding-left:1em">@ref dali_toolkit_controls_image_view</td>
89 * <td>ImageView is a control displaying an image.</td>
92 * <td style="padding-left:1em">@ref dali_toolkit_controls_model3d_view</td>
93 * <td>Model3dView is a control for displaying 3d geometry.</td>
96 * <td style="padding-left:1em">@ref dali_toolkit_controls_scroll_bar</td>
97 * <td>ScrollBar is a component that can be linked to the scrollable objects.</td>
100 * <td style="padding-left:1em">@ref dali_toolkit_controls_scrollable</td>
101 * <td>Scrollable contains scrolled controls.</td>
104 * <td style="padding-left:2em">@ref dali_toolkit_controls_item_view</td>
105 * <td>ItemView class is a scrollable container that can contain many items.</td>
108 * <td style="padding-left:2em">@ref dali_toolkit_controls_scroll_view</td>
109 * <td>ScrollView class provides scrollable view which contains actors and can be scrolled automatically or manually by panning.</td>
112 * <td style="padding-left:1em">@ref dali_toolkit_controls_table_view</td>
113 * <td>TableView class is a layout container for aligning child actors in a grid like layout.</td>
116 * <td style="padding-left:1em">@ref dali_toolkit_controls_text_controls</td>
117 * <td>Controls for displaying text or text input.</td>
120 * <td style="padding-left:1em">@ref dali_toolkit_controls_flex_container</td>
121 * <td>FlexContainer is a container for Flexbox layout.</td>
124 * <td style="padding-left:1em">@ref dali_toolkit_controls_video_view</td>
125 * <td>VideoView is a control for video playback and display.</td>
128 * <td style="padding-left:1em">@ref dali_toolkit_controls_slider</td>
129 * <td>Slider is a control to enable sliding an indicator between two values.</td>
132 * <td style="padding-left:1em">@ref dali_toolkit_controls_progress_bar</td>
133 * <td>ProgressBar is a control to give the user an indication of the progress of an operation.</td>
136 * <td>@ref dali_toolkit_managers</td>
137 * <td>Singleton classes for managing application-wide functionalities.</td>
140 * <td>@ref dali_toolkit_visuals</td>
141 * <td>Visuals can control rendering the contents as using Property.</td>
144 * <td>@ref dali_toolkit_image_loader</td>
145 * <td>The ImageLoader is used to load pixel data from a URL.</td>
149 * \ifnot show_tizen_feature
151 * @section dali_toolkit_feature Related Features
152 * This API is related with the following features:\n
153 * - http://tizen.org/feature/opengles.version.2_0\n
155 * It is recommended to design feature related codes in your application for reliability.\n
157 * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n
159 * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
161 * More details on featuring your application can be found from <a href="https://docs.tizen.org/application/tizen-studio/native-tools/manifest-text-editor#feature-element"><b>Feature Element</b>.</a>
167 * @defgroup dali_toolkit_controls Controls
168 * @brief Controls are interactive components for layouting the user interface.
171 * @defgroup dali_toolkit_controls_alignment Alignment
172 * @brief Alignment is a container which provides an easy way to align other actors inside its boundary.
174 * @defgroup dali_toolkit_controls_buttons Buttons
175 * @brief Button is a small object on UI that you can press.
177 * @defgroup dali_toolkit_controls_gaussian_blur_view Gaussian Blur View
178 * @brief GaussianBlurView provides a render process that blurs an image.
180 * @defgroup dali_toolkit_controls_image_view Image View
181 * @brief ImageView is a control displaying an image.
183 * @defgroup dali_toolkit_controls_model3d_view Model3dView
184 * @brief Model3dView is a control for displaying 3d geometry.
186 * @defgroup dali_toolkit_controls_scroll_bar Scroll Bar
187 * @brief ScrollBar is a component that can be linked to the scrollable objects.
189 * @defgroup dali_toolkit_controls_scrollable Scrollable
190 * @brief Scrollable contains scrolled controls.
193 * @defgroup dali_toolkit_controls_item_view Item View
194 * @brief ItemView class is a scrollable container that can contain many items.
196 * @defgroup dali_toolkit_controls_scroll_view Scroll View
197 * @brief ScrollView class provides scrollable view which contains actors and can be scrolled automatically or manually by panning.
200 * @defgroup dali_toolkit_controls_table_view Table View
201 * @brief TableView class is a layout container for aligning child actors in a grid like layout.
203 * @defgroup dali_toolkit_controls_text_controls Text Controls
204 * @brief Controls for displaying text or text input.
206 * @defgroup dali_toolkit_controls_flex_container Flex Container
207 * @brief FlexContainer is a container for Flexbox layout.
209 * @defgroup dali_toolkit_controls_video_view Video View
210 * @brief VideoView is a control for video playback and display.
212 * @defgroup dali_toolkit_controls_slider Slider
213 * @brief Slider is a control to enable sliding an indicator between two values.
215 * @defgroup dali_toolkit_controls_progress_bar Progress Bar
216 * @brief ProgressBar is a control to give the user an indication of the progress of an operation.
220 * @defgroup dali_toolkit_managers Managers
221 * @brief Singleton classes for managing application-wide functionalities.
223 * @defgroup dali_toolkit_visuals Visuals
224 * @brief Visuals can control rendering the contents as using Property.
226 * @defgroup dali_toolkit_image_loader Image Loader
227 * @brief The ImageLoader is used to load pixel data from a URL.
232 #endif // DALI_TOOLKIT_DOC_H