Merge "Updated test harness code to enable styling through links." into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / actors / layer.h
1 #ifndef __DALI_LAYER_H__
2 #define __DALI_LAYER_H__
3
4 /*
5  * Copyright (c) 2014 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 // INTERNAL INCLUDES
22 #include <dali/public-api/object/ref-object.h>
23 #include <dali/public-api/actors/actor.h>
24 #include <dali/public-api/math/rect.h>
25 #include <dali/public-api/math/vector3.h>
26 #include <dali/public-api/images/frame-buffer-image.h>
27
28 namespace Dali
29 {
30
31 namespace Internal DALI_INTERNAL
32 {
33 class Layer;
34 }
35
36 /**
37  * @brief Rectangle describing area on screen that a layer can draw to.
38  *
39  * @see Dali::Layer::SetClippingBox()
40  */
41 typedef Rect<int> ClippingBox;
42
43 /**
44  * @brief Layers provide a mechanism for overlaying groups of actors on top of each other.
45  *
46  * When added to the stage, a layer can be ordered relative to other layers. The bottom
47  * layer is at depth zero. The stage provides a default layer for it's children.
48  *
49  * Layered actors inherit position etc. as normal, but are drawn in an order determined
50  * by the layers. The depth buffer is cleared before each layer is rendered unless depth
51  * test is disabled or there's no need for it based on the layers contents;
52  * actors in lower layers cannot obscure actors in higher layers.
53  *
54  * If depth test is disabled, there is no performance overhead from clearing the depth buffer.
55  */
56 class DALI_IMPORT_API Layer : public Actor
57 {
58 public:
59
60   // Default Properties additional to Actor
61   static const Property::Index CLIPPING_ENABLE; ///< name "clipping-enable",  type BOOLEAN
62   static const Property::Index CLIPPING_BOX;    ///< name "clipping-box",     type RECTANGLE
63
64   // Action Names
65   static const char* const ACTION_RAISE;           ///< name "raise"
66   static const char* const ACTION_LOWER;           ///< name "lower"
67   static const char* const ACTION_RAISE_TO_TOP;    ///< name "raise-to-top"
68   static const char* const ACTION_LOWER_TO_BOTTOM; ///< name "lower-to-bottom"
69
70   /**
71    * @brief The sort function type.
72    *
73    * The position value is the actor translation from camera.
74    * The sortModifier is the user value that can be used to sort coplanar actors/nodes. This value is
75    * the one set by calling RenderableActor::SetSortModifier().
76    *
77    * A high return value means that the actor will be positioned further away by the sort algorithm.
78    * @see RenderableActor::SetSortModifier
79    */
80   typedef float (*SortFunctionType)(const Vector3& position, float sortModifier);
81
82   /**
83    * @brief Create an empty Layer handle.
84    *
85    * This can be initialised with Layer::New(...)
86    */
87   Layer();
88
89   /**
90    * @brief Create a Layer object.
91    *
92    * @return A handle to a newly allocated Layer
93    */
94   static Layer New();
95
96   /**
97    * @brief Downcast an Object handle to Layer.
98    *
99    * If handle points to a Layer the downcast produces valid
100    * handle. If not the returned handle is left uninitialized.
101    * @param[in] handle to An object
102    * @return handle to a Layer or an uninitialized handle
103    */
104   static Layer DownCast( BaseHandle handle );
105
106   /**
107    * @brief Destructor
108    *
109    * This is non-virtual since derived Handle types must not contain data or virtual methods.
110    */
111   ~Layer();
112
113   /**
114    * @brief Copy constructor
115    *
116    * @param [in] copy The actor to copy.
117    */
118   Layer(const Layer& copy);
119
120   /**
121    * @brief Assignment operator
122    *
123    * @param [in] rhs The actor to copy.
124    */
125   Layer& operator=(const Layer& rhs);
126
127   /**
128    * @brief Query the depth of the layer
129    *
130    * 0 is bottom most layer, higher number is on top
131    * @pre layer is on the stage
132    * If layer is not added to the stage, returns 0.
133    * @return the current depth of the layer.
134    */
135   unsigned int GetDepth() const;
136
137   /**
138    * @brief Increment the depth of the layer.
139    *
140    * @pre layer is on the stage
141    */
142   void Raise();
143
144   /**
145    * @brief Decrement the depth of the layer.
146    *
147    * @pre layer is on the stage
148    */
149   void Lower();
150
151   /**
152    * @brief Ensures the layers depth is greater than the target layer.
153    *
154    * If the layer already is above target layer its depth is not changed
155    * If the layer was below target, its new depth will be immediately above target
156    * Note! All layers between this layer and target get new depth values
157    * @pre layer is on the stage
158    * @pre target layer is on the stage
159    * @param target layer to get above of
160    */
161   void RaiseAbove( Layer target );
162
163   /**
164    * @brief Ensures the layers depth is less than the target layer.
165    *
166    * If the layer already is below the layer its depth is not changed
167    * If the layer was above target, its new depth will be immediately below target
168    * Note! All layers between this layer and target get new depth values
169    * @pre layer is on the stage
170    * @pre target layer is on the stage
171    * @param target layer to get below of
172    */
173   void LowerBelow( Layer target );
174
175   /**
176    * @brief Raises the layer to the top.
177    * @pre layer is on the stage
178    */
179   void RaiseToTop();
180
181   /**
182    * @brief Lowers the layer to the bottom.
183    * @pre layer is on the stage
184    */
185   void LowerToBottom();
186
187   /**
188    * @brief Moves the layer directly above the given layer.
189    *
190    * After the call this layers depth will be immediately above target
191    * Note! All layers between this layer and target get new depth values
192    * @pre layer is on the stage
193    * @pre target layer is on the stage
194    * @param target layer to get on top of
195    */
196   void MoveAbove( Layer target );
197
198   /**
199    * @brief Moves the layer directly below the given layer.
200    *
201    * After the call this layers depth will be immediately below target
202    * Note! All layers between this layer and target get new depth values
203    * @pre layer is on the stage
204    * @pre target layer is on the stage
205    * @param target layer to get below of
206    */
207   void MoveBelow( Layer target );
208
209   /**
210    * @brief Sets whether clipping is enabled for a layer.
211    *
212    * Clipping is initially disabled; see also SetClippingBox().
213    * @param [in] enabled True if clipping is enabled.
214    *
215    * @note When clipping is enabled, the default clipping box is empty (0,0,0,0) which means everything is clipped.
216    */
217   void SetClipping(bool enabled);
218
219   /**
220    * @brief Query whether clipping is enabled for a layer.
221    * @return True if clipping is enabled.
222    */
223   bool IsClipping() const;
224
225   /**
226    * @brief Sets the clipping box of a layer, in window coordinates.
227    *
228    * The contents of the layer will not be visible outside this box, when clipping is
229    * enabled. The default clipping box is empty (0,0,0,0) which means everything is clipped.
230    * You can only do rectangular clipping using this API in window coordinates.
231    * For other kinds of clipping, @see Dali::Actor::SetDrawMode().
232    * @param [in] x The X-coordinate of the top-left corner of the box.
233    * @param [in] y The Y-coordinate of the top-left corner of the box.
234    * @param [in] width  The width of the box.
235    * @param [in] height The height of the box.
236    */
237   void SetClippingBox(int x, int y, int width, int height);
238
239   /**
240    * @brief Sets the clipping box of a layer, in window coordinates.
241    *
242    * The contents of the layer will not be visible outside this box, when clipping is
243    * enabled. The default clipping box is empty (0,0,0,0).
244    * @param [in] box The clipping box
245    */
246   void SetClippingBox(ClippingBox box);
247
248   /**
249    * @brief Retrieves the clipping box of a layer, in window coordinates.
250    *
251    * @return The clipping box
252    */
253   ClippingBox GetClippingBox() const;
254
255   // Depth test
256
257   /**
258    * @brief Whether to disable the depth test.
259    *
260    * By default a layer enables depth test if there is more than one opaque actor or if there is one opaque actor and one, or more, transparent actors.
261    * However, it's possible to disable the depth test by calling this method.
262    *
263    * @param[in] disable \e true disables depth test. \e false sets the default behaviour.
264    */
265   void SetDepthTestDisabled( bool disable );
266
267   /**
268    * @brief Retrieves whether depth test is disabled.
269    *
270    * @return \e true if depth test is disabled.
271    */
272   bool IsDepthTestDisabled() const;
273
274   // Sorting
275
276   /**
277    * @brief This sort function sorts translucent actors according to the Z-value in view space.
278    *
279    * This is useful for 2D user interfaces.
280    *
281    * This is the default sorting function.
282    *
283    * We return a negative z value as in our translation, a low z means that it should
284    * be sorted further away and a high z means that it should be closer.
285    * @param[in] position     position of actor in view space
286    * @param[in] sortModifier additional sort modifer
287    * @return depth
288    */
289   static float ZValue(const Vector3& position, float sortModifier);
290
291   /**
292    * @brief This allows the user to specify the sort function that the layer should use.
293    *
294    * The sort function is used to determine the order in which the actors are drawn
295    * and input is processed on the actors in the layer.
296    *
297    * A function of the following type should be used:
298    * @code
299    *  float YourSortFunction(const Vector3& position, float sortModifier);
300    * @endcode
301    *
302    * @note If the sort function returns a low number, the actor the data applies to will be
303    * drawn in front of an actor whose data yields a high value from the sort function.
304    *
305    * @note All child layers use the same sort function.  If a child layer is added to this
306    * layer then the sort function used by the child layer will also be the same.
307    *
308    * @param[in]  function  The sort function pointer
309   */
310   void SetSortFunction( SortFunctionType function );
311
312   /**
313    * @brief This allows the user to specify whether this layer should consume touch (including gestures).
314    *
315    * If set, any layers behind this layer will not be hit-test.
316    *
317    * @param[in]  consume  Whether the layer should consume touch (including gestures).
318    */
319   void SetTouchConsumed( bool consume );
320
321   /**
322    * @brief Retrieves whether the layer consumes touch (including gestures).
323    *
324    * @return true if consuming touch, false otherwise.
325    */
326   bool IsTouchConsumed() const;
327
328   /**
329    * @brief This allows the user to specify whether this layer should consume hover.
330    *
331    * If set, any layers behind this layer will not be hit-test.
332    *
333    * @param[in]  consume  Whether the layer should consume hover.
334    */
335   void SetHoverConsumed( bool consume );
336
337   /**
338    * @brief Retrieves whether the layer consumes hover.
339    *
340    * @return true if consuming hover, false otherwise.
341    */
342   bool IsHoverConsumed() const;
343
344 public: // Not intended for application developers
345
346   /**
347    * @brief This constructor is used by Dali New() methods.
348    *
349    * @param [in] Layer A pointer to a newly allocated Dali resource
350    */
351   explicit DALI_INTERNAL Layer(Internal::Layer* Layer);
352 };
353
354 } // namespace Dali
355
356 #endif //__DALI_LAYER_H__