Added TextLabel guide
[platform/core/uifw/dali-toolkit.git] / docs / content / main-page.h
1 /*! \mainpage
2  *
3  * \section mainintro_sec Introduction
4  *
5  * It is a quick and easy way of allowing developers to create Rich UI Applications like Home
6  * screen, Gallery, Music player, Games, Maps...
7  *
8  * DALI is based on OpenGL ES 2.0, however it hides the complexity of
9  * the OpenGL API from developers and provides a clean cross-platform C++ framework.
10  *
11  * \section Introduction Introduction
12  * - \link fundamentals Dali Fundamentals \endlink
13  * - \link dali-application Dali Application and Adaptor \endlink
14  * - \link hello-world Hello World - explained \endlink
15  *
16  * \section Actors Actors
17  * - \link image-mesh-actor Image and Mesh actors \endlink
18  * - \link event-system Event Handling \endlink
19  * - \link custom-actor Custom Actor \endlink
20  *
21  * \section ShaderEffects Shader Effects
22  * - \link shader-intro Shader Effects\endlink
23  *
24  * \section Animation Animation
25  * - \link animation-example Example and Usage\endlink
26  * - \link animation-rotation Rotation with quaternions \endlink
27  * - \link animation-shader Shader Animation \endlink
28  * - \link animation-multi-threading-notes Multi-threading Notes \endlink
29  *
30  * \section Constraints
31  * - \link constraints-intro Introduction to Constraints \endlink
32  *
33  * \section UIControls UI Controls
34  * - \link text-label Text Label \endlink
35  * - \link item-view Item View \endlink
36  * - \link scroll-view Scroll View \endlink
37  * - \link size-negotiation Size Negotiation \endlink
38  * - \link type-registration Type Registration \endlink
39  * - \link properties Properties \endlink
40  * - \link background Background \endlink
41  *
42  * \section Dynamics Dynamics
43  * - \link dynamics-intro Introduction to Dynamics\endlink
44  * - \link dynamics-initialization Initializing the Simulation\endlink
45  * - \link dynamics-bodies Bodies - adding and controlling dynamic objects \endlink
46  * - \link dynamics-joints Joints - linking objects\endlink
47  * - \link dynamics-collisions Collision Detection and Filtering\endlink
48  *
49  * \section Scripting
50  * - \link script-overview Overview \endlink
51  * - \link script-howto How to Add a Custom Control \endlink
52  * - \link script-hello Hello World in script \endlink
53  *
54  * - \link handle-body-idiom Handle – body idiom \endlink
55  *
56  * \section Rendering
57  * - \link viewing-modes Viewing modes \endlink
58  *
59  * \section Profiling
60  * - \link resource-tracking Resource Tracking \endlink
61  * - \link performance-profiling Performance Profiling \endlink
62  *
63  * \section Performance
64  * - \link performance-tips Performance Tips \endlink
65  * - \link texture-atlases Texture Atlases  \endlink
66  * - \link Texture_Compression Compressing Textures \endlink
67  *
68  * \section Testing
69  * See [Automated Tests](@ref auto_testing) for instructions.
70  */
71
72 /*! \page scene-graph
73  *
74  * \section scene_intro What is a scene graph?
75  * From wikipedia...
76  * A scene graph is a collection of nodes in a graph or tree structure.
77  * A node may have many children but often only a single parent,
78  * with the effect of a parent applied to all its child nodes;
79  * an operation performed on a group automatically propagates
80  * its effect to all of its members. In many programs, associating
81  * a geometrical transformation matrix (see also transformation and matrix)
82  * at each group level and concatenating such matrices together is an
83  * efficient and natural way to process such operations. A common feature,
84  * for instance, is the ability to group related shapes/objects into a
85  * compound object that can then be moved, transformed, selected,
86  * etc. as easily as a single object.
87  *
88  * \section scene_dali How does this relate to the Dali public API?
89  *
90  * Actors are effectively nodes that receive input (touch events) and act as a
91  * container for draw-able elements (which are also nodes) and other actors.
92  *
93  * For example a Button actor will be an actor with several elements such as button background,
94  * text label and button face. When the actor is moved around, it's child elements will move with it.
95  * When the button is pressed, the actor will receive an event and adjust the color of its button face
96  * element.
97  *
98  * \section scene_internal Why does Dali internally have a second scene graph?
99  * Actors and elements are contained in a scene graph which deals with input, layout and some animation
100  * it doesn't perform any drawing.
101  *
102  * All the drawing is done via the Render Manager which has it's own render scene graph, where it's nodes
103  * are just for drawing things like image/text and moving them around. So when you create an Image element
104  * it will ask the RenderManager to create an Image node. The separation allows the RenderManager to
105  * run in a separate thread to maintain a high frame rate, without being slowed down by any logic
106  * performed on the actor/element side.
107  *
108  */