fbebfc4e6738f41943b08cb522f74a92ad7d747b
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / renderers / image / image-renderer.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_IMAGE_RENDERER_H__
2 #define __DALI_TOOLKIT_INTERNAL_IMAGE_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/image-operations.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal
35 {
36
37 class ImageRenderer;
38 typedef IntrusivePtr< ImageRenderer > ImageRendererPtr;
39
40 /**
41  * The renderer which renders an image to the control's quad
42  *
43  * The following properties are optional
44  *
45  * | %Property Name            | Type             |
46  * |---------------------------|------------------|
47  * | image-url                 | STRING           |
48  * | image-fitting-mode        | STRING           |
49  * | image-sampling-mode       | STRING           |
50  * | image-desired-width       | INT              |
51  * | image-desired-height      | INT              |
52  *
53  * where image-fitting-mode should be one of the following fitting modes:
54  *   "shrink-to-fit"
55  *   "scale-to-fill"
56  *   "fit-width"
57  *   "fit-height"
58  *   "default"
59  *
60  * where image-sampling-mode should be one of the following sampling modes:
61  *   "box"
62  *   "nearest"
63  *   "linear"
64  *   "box-then-nearest"
65  *   "box-then-linear"
66  *   "no-filter"
67  *   "dont-care"
68  *   "default"
69  *
70  */
71 class ImageRenderer: public ControlRenderer
72 {
73 public:
74
75   /**
76    * @brief Constructor.
77    */
78   ImageRenderer();
79
80   /**
81    * @brief A reference counted object may only be deleted by calling Unreference().
82    */
83   ~ImageRenderer();
84
85 public:  // from ControlRenderer
86   /**
87    * @copydoc ControlRenderer::Initialize
88    */
89   virtual void Initialize( RendererFactoryCache& factoryCache, const Property::Map& propertyMap );
90
91   /**
92    * @copydoc ControlRenderer::SetSize
93    */
94   virtual void SetSize( const Vector2& size );
95
96   /**
97    * @copydoc ControlRenderer::SetClipRect
98    */
99   virtual void SetClipRect( const Rect<int>& clipRect );
100
101   /**
102    * @copydoc ControlRenderer::SetOffset
103    */
104   virtual void SetOffset( const Vector2& offset );
105
106 protected:
107   /**
108    * @copydoc ControlRenderer::DoSetOnStage
109    */
110   virtual void DoSetOnStage( Actor& actor );
111
112   /**
113    * @copydoc ControlRenderer::DoSetOffStage
114    */
115   virtual void DoSetOffStage( Actor& actor );
116
117 public:
118
119   /**
120    * @brief Sets the image of this renderer to the resource at imageUrl
121    * The renderer will load the Image asynchronously when the associated actor is put on stage, and destroy the image when it is off stage
122    *
123    * @param[in] imageUrl The URL to to image resource to use
124    */
125   void SetImage( const std::string& imageUrl );
126
127   /**
128    * @brief Sets the image of this renderer to the resource at imageUrl
129    * The renderer will load the Image asynchronously when the associated actor is put on stage, and destroy the image when it is off stage
130    *
131    * @param[in] imageUrl The URL to to image resource to use
132    * @param[in] desiredWidth The desired width of the resource to load
133    * @param[in] desiredHeight The desired height of the resource to load
134    * @param[in] fittingMode The FittingMode of the resource to load
135    * @param[in] samplingMode The SamplingMode of the resource to load
136    */
137   void SetImage( const std::string& imageUrl, int desiredWidth, int desiredHeight, Dali::FittingMode::Type fittingMode, Dali::SamplingMode::Type samplingMode );
138
139   /**
140    * @brief Sets the image of this renderer to use
141    *
142    * @param[in] image The image to use
143    */
144   void SetImage( Image image );
145
146 private:
147
148   /**
149    * @brief Applies this renderer's image to the sampler to the material used for this renderer
150    */
151   void ApplyImageToSampler();
152
153 private:
154   Image mImage;
155
156   std::string mImageUrl;
157   Dali::ImageDimensions mDesiredSize;
158   Dali::FittingMode::Type mFittingMode;
159   Dali::SamplingMode::Type mSamplingMode;
160
161 };
162
163 } // namespace Internal
164
165 } // namespace Toolkit
166
167 } // namespace Dali
168
169 #endif /* __DALI_TOOLKIT_INTERNAL_IMAGE_RENDERER_H__ */