76c6f546b5c2d06a99df0270732861f0af4a6a70
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / image-view / image-view.h
1 #ifndef DALI_TOOLKIT_IMAGE_VIEW_H
2 #define DALI_TOOLKIT_IMAGE_VIEW_H
3
4 /*
5  * Copyright (c) 2020 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/public-api/controls/control.h>
23
24 // EXTERNAL INCLUDES
25 #include <dali/public-api/images/image-operations.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Internal DALI_INTERNAL
34 {
35 class ImageView;
36 }
37 /**
38  * @addtogroup dali_toolkit_controls_image_view
39  * @{
40  */
41
42 /**
43  * @brief ImageView is a class for displaying an image resource.
44  *
45  * An instance of ImageView can be created using a URL or an Image instance.
46  *
47  * Some resources can be loaded before the ImageView is staged ( already cached ), in these cases if the connection to
48  * ResouceReadySignal is done after the resource is set then signal will be missed.
49  *
50  * To protect against this, IsResourceReady() can be checked before connecting to ResourceReadySignal,
51  * or the signal connection can be done before setting the resource.
52  *
53  * @code
54  *    auto myImageView = ImageView::New( resourceUrl );
55  *    if ( myImageView.IsResourceReady() )
56  *    {
57  *       // do something
58  *    }
59  *    else
60  *    {
61  *      myImageView.ResourceReadySignal.Connect( .... )
62  *    }
63  * @endcode
64  *
65  * OR Connect to signal before setting resource
66  *
67  * @code
68  *    auto myImageView = ImageView::New();
69  *    myImageView.ResourceReadySignal.Connect( .... )
70  *    myImageView.SetProperty( ImageView::Property::IMAGE, resourceUrl );
71  * @endcode
72  *
73  * @SINCE_1_0.0
74  *
75  */
76 class DALI_TOOLKIT_API ImageView : public Control
77 {
78 public:
79
80   /**
81    * @brief Enumeration for the start and end property ranges for this control.
82    * @SINCE_1_0.0
83    */
84   enum PropertyRange
85   {
86     PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1,  ///< @SINCE_1_0.0
87     PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000,              ///< Reserve property indices @SINCE_1_0.0
88
89     ANIMATABLE_PROPERTY_START_INDEX = ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX,        ///< @SINCE_1_1.18
90     ANIMATABLE_PROPERTY_END_INDEX =   ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX + 1000  ///< Reserve animatable property indices, @SINCE_1_1.18
91   };
92
93   /**
94    * @brief Enumeration for the instance of properties belonging to the ImageView class.
95    * @SINCE_1_0.0
96    */
97   struct Property
98   {
99     /**
100      * @brief Enumeration for the instance of properties belonging to the ImageView class.
101      * @SINCE_1_0.0
102      */
103     enum
104     {
105       // Event side properties
106
107       RESERVED_PROPERTY_01 = PROPERTY_START_INDEX, ///< Reserved index for a removed property.
108
109       /**
110        * @brief name "image", type string if it is a url, map otherwise.
111        * @SINCE_1_0.0
112        */
113       IMAGE,
114
115       /**
116        * @brief name "preMultipliedAlpha", type Boolean.
117        * @SINCE_1_1.18
118        * @pre image must be initialized.
119        */
120       PRE_MULTIPLIED_ALPHA,
121
122
123       // Animatable properties
124
125       /**
126        * @brief name "pixelArea", type Vector4.
127        * @details Pixel area is a relative value with the whole image area as [0.0, 0.0, 1.0, 1.0].
128        * @SINCE_1_1.18
129        */
130       PIXEL_AREA = ANIMATABLE_PROPERTY_START_INDEX,
131     };
132   };
133
134 public:
135
136   /**
137    * @brief Creates an uninitialized ImageView.
138    * @SINCE_1_0.0
139    */
140   ImageView();
141
142   /**
143    * @brief Create an initialized ImageView.
144    *
145    * @SINCE_1_0.0
146    * @return A handle to a newly allocated Dali ImageView
147    *
148    * @note ImageView will not display anything.
149    */
150   static ImageView New();
151
152   /**
153    * @brief Creates an initialized ImageView from an URL to an image resource.
154    *
155    * If the string is empty, ImageView will not display anything.
156    *
157    * @SINCE_1_0.0
158    * @REMARK_INTERNET
159    * @REMARK_STORAGE
160    * @param[in] url The url of the image resource to display
161    * @return A handle to a newly allocated ImageView
162    */
163   static ImageView New( const std::string& url );
164
165   /**
166    * @brief Creates an initialized ImageView from a URL to an image resource.
167    *
168    * If the string is empty, ImageView will not display anything.
169    *
170    * @SINCE_1_1.10
171    * @REMARK_INTERNET
172    * @REMARK_STORAGE
173    * @param[in] url The url of the image resource to display
174    * @param [in] size The width and height to which to fit the loaded image
175    * @return A handle to a newly allocated ImageView
176    * @note A valid size is preferable for efficiency.
177    *       However, do not set a size that is bigger than the actual image size, as up-scaling is not available.
178    *       The content of the area not covered by the actual image is undefined and will not be cleared.
179    */
180   static ImageView New( const std::string& url, ImageDimensions size );
181
182   /**
183    * @brief Destructor.
184    *
185    * This is non-virtual since derived Handle types must not contain data or virtual methods.
186    * @SINCE_1_0.0
187    */
188   ~ImageView();
189
190   /**
191    * @brief Copy constructor.
192    *
193    * @SINCE_1_0.0
194    * @param[in] imageView ImageView to copy. The copied ImageView will point at the same implementation
195    */
196   ImageView( const ImageView& imageView );
197
198   /**
199    * @brief Assignment operator.
200    *
201    * @SINCE_1_0.0
202    * @param[in] imageView The ImageView to assign from
203    * @return The updated ImageView
204    */
205   ImageView& operator=( const ImageView& imageView );
206
207   /**
208    * @brief Downcasts a handle to ImageView handle.
209    *
210    * If handle points to a ImageView, the downcast produces valid handle.
211    * If not, the returned handle is left uninitialized.
212    *
213    * @SINCE_1_0.0
214    * @param[in] handle Handle to an object
215    * @return Handle to a ImageView or an uninitialized handle
216    */
217   static ImageView DownCast( BaseHandle handle );
218
219   /**
220    * @brief Sets this ImageView from the given URL.
221    *
222    * If the URL is empty, ImageView will not display anything.
223    *
224    * @SINCE_1_1.4
225    * @REMARK_INTERNET
226    * @REMARK_STORAGE
227    * @param[in] url The URL to the image resource to display
228    */
229   void SetImage( const std::string& url );
230
231   /**
232    * @brief Sets this ImageView from the given URL.
233    *
234    * If the URL is empty, ImageView will not display anything.
235    *
236    * @SINCE_1_1.10
237    * @REMARK_INTERNET
238    * @REMARK_STORAGE
239    * @param[in] url The URL to the image resource to display
240    * @param [in] size The width and height to fit the loaded image to
241    */
242   void SetImage( const std::string& url, ImageDimensions size );
243
244 public: // Not intended for application developers
245
246   /// @cond internal
247   /**
248    * @brief Creates a handle using the Toolkit::Internal implementation.
249    *
250    * @SINCE_1_0.0
251    * @param[in] implementation The ImageView implementation
252    */
253   DALI_INTERNAL ImageView( Internal::ImageView& implementation );
254
255   /**
256    * @brief Allows the creation of this ImageView from an Internal::CustomActor pointer.
257    *
258    * @SINCE_1_0.0
259    * @param[in] internal A pointer to the internal CustomActor
260    */
261   DALI_INTERNAL ImageView( Dali::Internal::CustomActor* internal );
262   /// @endcond
263
264 };
265
266 /**
267  * @}
268  */
269 } // namespace Toolkit
270
271 } // namespace Dali
272
273 #endif // DALI_TOOLKIT_IMAGE_VIEW_H