Tizen 2.4 SDK Rev6 Release
[framework/graphics/dali-toolkit.git] / dali-toolkit / internal / controls / renderers / npatch / npatch-renderer.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_N_PATCH_RENDERER_H__
2 #define __DALI_TOOLKIT_INTERNAL_N_PATCH_RENDERER_H__
3
4 /*
5  * Copyright (c) 2015 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-toolkit/internal/controls/renderers/control-renderer-impl.h>
23
24 // EXTERNAL INCLUDES
25 #include <dali/public-api/images/image.h>
26 #include <dali/public-api/images/nine-patch-image.h>
27 #include <dali/public-api/images/image-operations.h>
28 #include <dali/devel-api/rendering/geometry.h>
29 #include <dali/devel-api/rendering/shader.h>
30 #include <dali/devel-api/rendering/sampler.h>
31 #include <dali/integration-api/image-integ.h>
32
33 namespace Dali
34 {
35
36 namespace Toolkit
37 {
38
39 namespace Internal
40 {
41
42 /**
43  * The renderer which renders an 9 patch image to the control's quad
44  *
45  * The following properties are optional
46  *
47  * | %Property Name            | Type             |
48  * |---------------------------|------------------|
49  * | image-url                 | STRING           |
50  * | border-only               | BOOLEAN
51  *
52  */
53 class NPatchRenderer: public ControlRenderer
54 {
55 public:
56
57   /**
58    * @brief Constructor.
59    *
60    * @param[in] factoryCache A pointer pointing to the RendererFactoryCache object
61    */
62   NPatchRenderer( RendererFactoryCache& factoryCache );
63
64   /**
65    * @brief A reference counted object may only be deleted by calling Unreference().
66    */
67   ~NPatchRenderer();
68
69 public:  // from ControlRenderer
70
71   /**
72    * @copydoc ControlRenderer::GetNaturalSize
73    */
74   virtual void GetNaturalSize( Vector2& naturalSize ) const;
75
76   /**
77    * @copydoc ControlRenderer::SetClipRect
78    */
79   virtual void SetClipRect( const Rect<int>& clipRect );
80
81   /**
82    * @copydoc ControlRenderer::SetOffset
83    */
84   virtual void SetOffset( const Vector2& offset );
85
86   /**
87    * @copydoc ControlRenderer::CreatePropertyMap
88    */
89   virtual void DoCreatePropertyMap( Property::Map& map ) const;
90
91 protected:
92
93   /**
94    * @copydoc ControlRenderer::DoInitialize
95    */
96   virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap );
97
98   /**
99    * @copydoc ControlRenderer::DoSetOnStage
100    */
101   virtual void DoSetOnStage( Actor& actor );
102
103   /**
104    * @copydoc ControlRenderer::DoSetOffStage
105    */
106   virtual void DoSetOffStage( Actor& actor );
107
108 public:
109
110   /**
111    * @brief Sets the 9 patch image of this renderer to the resource at imageUrl
112    * The renderer will load the image synchronously when the associated actor is put on stage, and destroy the image when it is off stage
113    *
114    * @param[in] imageUrl The URL to 9 patch image resource to use
115    * @param[in] borderOnly A Flag to indicate if the image should omit the centre of the n-patch and only render the border
116    */
117   void SetImage( const std::string& imageUrl, bool borderOnly = false );
118
119   /**
120    * @brief Sets the 9 patch image of this renderer to the 9 patch image
121    *
122    * @param[in] image The NinePatchImage to use
123    * @param[in] borderOnly A Flag to indicate if the image should omit the centre of the n-patch and only render the border
124    */
125   void SetImage( NinePatchImage image, bool borderOnly = false );
126
127 private:
128
129   /**
130    * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing.
131    */
132   void InitializeRenderer();
133
134   /**
135    * @brief Creates a geometry for this renderer's grid size
136    *
137    * @return Returns the created geometry for this renderer's grid size
138    */
139   Geometry CreateGeometry();
140
141   /**
142    * @brief Creates a shader for this renderer's grid size
143    *
144    * @return Returns the created shader for this renderer's grid size
145    */
146   Shader CreateShader();
147
148   /**
149    * @brief Creates a geometry for the grid size to be used by this renderers' shaders
150    *
151    * @param[in] gridSize The grid size of the solid geometry to create
152    * @return Returns the created geometry for the grid size
153    */
154   Geometry CreateGeometry( Uint16Pair gridSize );
155
156   /**
157    * @brief Creates a geometry with the border only for the grid size to be used by this renderers' shaders
158    * e.g. a 5x4 grid would create a geometry that would look like:
159    *
160    *   ---------------------
161    *   |  /|  /|  /|  /|  /|
162    *   |/  |/  |/  |/  |/  |
163    *   ---------------------
164    *   |  /|           |  /|
165    *   |/  |           |/  |
166    *   -----           -----
167    *   |  /|           |  /|
168    *   |/  |           |/  |
169    *   ---------------------
170    *   |  /|  /|  /|  /|  /|
171    *   |/  |/  |/  |/  |/  |
172    *   ---------------------
173    *
174    * @param[in] gridSize The grid size of the solid geometry to create
175    * @return Returns the created geometry for the grid size
176    */
177   Geometry CreateGeometryBorder( Uint16Pair gridSize );
178
179   /**
180    * @brief Creates Image from the image url and parses the image for the stretch borders. Will create a error image if the n patch image is invalid
181    *
182    * @param[in] nPatchImage The NinePatchImage to base our cropped images and stretch borders from
183    */
184   void InitializeFromImage( NinePatchImage nPatchImage );
185
186   /**
187    * @brief Creates an error Image to indicate that there was an error in either the image url or the parsing of the image
188    *
189    */
190   void InitializeFromBrokenImage();
191
192   /**
193    * @brief Applies this renderer's image to the sampler to the material used for this renderer
194    */
195   void ApplyImageToSampler();
196
197   /**
198    * @brief Changes the current renderer if the n-patch meta data has changed
199    *
200    * @param[in] oldBorderOnly The old flag indicating if the image should omit the centre of the n-patch and only render the border
201    * @param[in] oldGridX The old horizontal grid size of the solid geometry
202    * @param[in] oldGridY The old vertical grid size of the solid geometry
203    */
204   void ChangeRenderer( bool oldBorderOnly, size_t oldGridX, size_t oldGridY );
205
206 private:
207
208   NinePatchImage mImage; ///< The image to render if the renderer was set from an NinePatchImage, empty otherwise
209   Image mCroppedImage;
210
211   std::string mImageUrl; ///< The url to the image resource to render if the renderer was set from an image resource url, empty otherwise
212   Integration::StretchRanges mStretchPixelsX;
213   Integration::StretchRanges mStretchPixelsY;
214   ImageDimensions mImageSize;
215   bool mBorderOnly;
216 };
217
218 } // namespace Internal
219
220 } // namespace Toolkit
221
222 } // namespace Dali
223
224 #endif /* __DALI_TOOLKIT_INTERNAL_N_PATCH_RENDERER_H__ */