Merge "Ensure UserDefined Font family is not changed by system font changing." into...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / renderer-factory / control-renderer.h
1 #ifndef __DALI_TOOLKIT_CONTROL_RENDERER_H__
2 #define __DALI_TOOLKIT_CONTROL_RENDERER_H__
3 /*
4  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 // EXTERNAL INCLUDES
21 #include <dali/public-api/object/base-handle.h>
22 #include <dali/public-api/actors/actor.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 class ControlRenderer;
33 }
34
35 /**
36  * @brief ControlRenderer provides renderer for rendering the controls. A control may have multiple ControlRenders.
37  *
38  * ControlRenderers reuses geometry, shader etc. across controls and manages the renderer and material to exist only when control is on-stage.
39  * It also responds to actor size and color change, and provides the clipping at the renderer level.
40  * Note: The control renderer responds to the the Actor::COLOR by blending it with the 'Multiply' operator.
41  */
42 class DALI_IMPORT_API ControlRenderer : public BaseHandle
43 {
44 public:
45
46   /**
47    * @brief Create an empty ControlRenderer Handle
48    */
49   ControlRenderer();
50
51   /**
52    * @brief Destructor
53    *
54    * This is non-virtual since derived Handle types must not contain data or virtual methods.
55    */
56   ~ControlRenderer();
57
58   /**
59    * @brief This copy constructor is required for (smart) pointer semantics.
60    *
61    * @param[in] handle A reference to the copied handle.
62    */
63   ControlRenderer( const ControlRenderer& handle );
64
65   /**
66    * @brief This assignment operator is required for (smart) pointer semantics.
67    *
68    * @param [in] handle  A reference to the copied handle.
69    * @return A reference to this.
70    */
71   ControlRenderer& operator=( const ControlRenderer& handle );
72
73   /**
74    * @brief Set the size of the painting area.
75    *
76    * @param[in] size The size of the painting area.
77    */
78   void SetSize( const Vector2& size );
79
80   /**
81    * @brief Set the depth index of this renderer.
82    *
83    * Depth-index controls draw-order for overlapping renderers.
84    * Renderer with higher depth indices are rendered in front of other renderer with smaller values
85    *
86    * @param[in] depthIndex The depth index of this renderer.
87    */
88   void SetDepthIndex( float index );
89
90   /**
91    * @brief Renderer only exists when control is on stage.
92    *
93    * This function should be called when the control put on stage.
94    *
95    * @param[in] actor The actor applying this renderer.
96    */
97   void SetOnStage( Actor& actor );
98
99   /**
100    * @brief Renderer is destroyed when control is off stage.
101    *
102    * This function should be called when the control removes from stage
103    *
104    * @param[in] actor The actor applying this renderer.
105    */
106   void SetOffStage( Actor& actor );
107
108   /**
109    * @brief Create the property map representing this renderer.
110    *
111    * @param[out] map The renderer property map.
112    */
113   void CreatePropertyMap( Property::Map& map ) const;
114
115 public: // Not intended for application developers
116
117   explicit DALI_INTERNAL ControlRenderer(Internal::ControlRenderer *impl);
118
119 };
120
121 } // namespace Toolkit
122
123 } // namespace Dali
124
125 #endif /*__DALI_TOOLKIT_CONTROL_RENDERER_H__*/