4e388727bf97c4e14d82a16094e4f95d2b1949b3
[platform/core/uifw/dali-core.git] / dali / public-api / images / resource-image.h
1 #ifndef __DALI_RESOURCE_IMAGE_H__
2 #define __DALI_RESOURCE_IMAGE_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 // EXTERNAL INCLUDES
22 #include <string>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/loading-state.h>
26 #include <dali/public-api/images/image.h>
27 #include <dali/public-api/signals/dali-signal.h>
28 #include <dali/public-api/images/image-operations.h>
29
30 namespace Dali
31 {
32 /**
33  * @addtogroup dali_core_images
34  * @{
35  */
36
37 namespace Internal DALI_INTERNAL
38 {
39 class ResourceImage;
40 }
41
42 /**
43  * @brief ResourceImage is an image loaded using a URL
44  *
45  * <i>Customizing load requests</i>
46  *
47  * Size, scaling mode, filter mode, and orientation compensation can be set when requesting an image.
48  *
49  * <i>Reloading images</i>
50  *
51  * The same request used on creating the ResourceImage is re-issued when reloading images.
52  * If the file changed since the last load operation, this might result in a different resource.
53  * Reload only takes effect if the ResourceImage has already finished loading.
54  *
55  * Signals
56  * | %Signal Name         | Method                       |
57  * |----------------------|------------------------------|
58  * | imageLoadingFinished | @ref LoadingFinishedSignal() |
59  * @SINCE_1_0.0
60  */
61 class DALI_IMPORT_API ResourceImage : public Image
62 {
63 public:
64
65   /**
66    * @brief Type of signal for LoadingFinished and Uploaded.
67    * @SINCE_1_0.0
68    */
69   typedef Signal< void (ResourceImage) > ResourceImageSignal;
70
71 public:
72
73   /**
74    * @brief Get the size of an image from disk.
75    *
76    * This function will read the header info from file on disk and is
77    * synchronous, so it should not be used repeatedly or in tight
78    * loops.
79    *
80    * @SINCE_1_0.0
81    * @REMARK_STORAGE
82    * @param [in] url The URL of the image file.
83    * @return The width and height in pixels of the image.
84    */
85   static ImageDimensions GetImageSize( const std::string& url );
86
87   /**
88    * @brief Constructor which creates an empty ResourceImage object.
89    *
90    * Use ResourceImage::New(...) to create an initialised object.
91    * @SINCE_1_0.0
92    */
93   ResourceImage();
94
95   /**
96    * @brief Destructor
97    *
98    * This is non-virtual since derived Handle types must not contain data or virtual methods.
99    * @SINCE_1_0.0
100    */
101   ~ResourceImage();
102
103   /**
104    * @brief This copy constructor is required for (smart) pointer semantics.
105    *
106    * @SINCE_1_0.0
107    * @param [in] handle A reference to the copied handle
108    */
109   ResourceImage( const ResourceImage& handle );
110
111   /**
112    * @brief This assignment operator is required for (smart) pointer semantics.
113    *
114    * @SINCE_1_0.0
115    * @param [in] rhs  A reference to the copied handle
116    * @return A reference to this
117    */
118   ResourceImage& operator=( const ResourceImage& rhs );
119
120   /**
121    * @name ResourceImageFactoryFunctions
122    * Create ResourceImage object instances using these functions.
123    */
124   ///@{
125
126   /**
127    * @brief Create an initialised ResourceImage object.
128    *
129    * Uses defaults for all options.
130    *
131    * @sa Dali::FittingMode::Type Dali::SamplingMode::Type
132    * @SINCE_1_0.0
133    * @REMARK_INTERNET
134    * @REMARK_STORAGE
135    * @param [in] url The URL of the image file to use.
136    * @param [in] orientationCorrection Reorient the image to respect any orientation metadata in its header.
137    * @return A handle to a newly allocated object
138    */
139   static ResourceImage New( const std::string& url, bool orientationCorrection = true );
140
141   /**
142    * @brief Create an initialised ResourceImage object.
143    *
144    * @SINCE_1_0.0
145    * @REMARK_INTERNET
146    * @REMARK_STORAGE
147    * @param [in] url The URL of the image file to use.
148    * @param [in] size The width and height to fit the loaded image to.
149    * @param [in] fittingMode The method used to fit the shape of the image before loading to the shape defined by the size parameter.
150    * @param [in] samplingMode The filtering method used when sampling pixels from the input image while fitting it to desired size.
151    * @param [in] orientationCorrection Reorient the image to respect any orientation metadata in its header.
152    * @return A handle to a newly allocated object
153    */
154   static ResourceImage New( const std::string& url,
155                             ImageDimensions size,
156                             FittingMode::Type fittingMode = FittingMode::DEFAULT,
157                             SamplingMode::Type samplingMode = SamplingMode::DEFAULT,
158                             bool orientationCorrection = true );
159
160   ///@}
161
162   /**
163    * @brief Downcast a handle to ResourceImage handle.
164    *
165    * If handle points to a ResourceImage object the
166    * downcast produces valid handle. If not the returned handle is left uninitialized.
167    * @SINCE_1_0.0
168    * @param[in] handle Handle to an object
169    * @return Handle to a Image object or an uninitialized handle
170    */
171   static ResourceImage DownCast( BaseHandle handle );
172
173   /**
174    * @brief Query whether the image data has loaded.
175    *
176    * The asynchronous loading begins when the Image object is created.
177    * After the Image object is discarded, the image data will be released from memory.
178    * @SINCE_1_0.0
179    * @return The loading state, either Loading, Success or Failed.
180    */
181   LoadingState GetLoadingState() const;
182
183   /**
184    * @brief Returns the URL of the image.
185    *
186    * @SINCE_1_0.0
187    * @return The URL of the image file.
188    */
189   std::string GetUrl() const;
190
191   /**
192    * @brief Reload image from filesystem.
193    *
194    * The original set of image loading attributes (requested dimensions, scaling
195    * mode and filter mode) are used when requesting the image again.
196    * @SINCE_1_0.0
197    * @note If image is offstage and OnDemand policy is set, the reload request is
198    * ignored.
199    */
200   void Reload();
201
202 public: // Signals
203
204   /**
205    * @brief Emitted when the image data loads successfully, or when the loading fails.
206    *
207    * @SINCE_1_0.0
208    * @return A signal object to Connect() with.
209    */
210   ResourceImageSignal& LoadingFinishedSignal();
211
212 public: // Not intended for application developers
213
214   explicit DALI_INTERNAL ResourceImage( Internal::ResourceImage* );
215 };
216
217 /**
218  * @}
219  */
220 } // namespace Dali
221
222 #endif // __DALI_RESOURCE_IMAGE_H__