ce1d227bbf804034a8b95816e578fea7ed3f7914
[platform/core/uifw/dali-core.git] / dali / internal / event / images / resource-image-impl.h
1 #ifndef __DALI_INTERNAL_RESOURCE_IMAGE_H__
2 #define __DALI_INTERNAL_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/images/resource-image.h>
26 #include <dali/internal/event/images/image-impl.h>
27 #include <dali/internal/common/image-attributes.h>
28 #include <dali/integration-api/debug.h> // For DALI_LOG_OBJECT_STRING_DECLARATION
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 class ResourceImage;
37 typedef IntrusivePtr<ResourceImage> ResourceImagePtr;
38
39 /**
40  * ResourceImage is an image loaded using a URL, it is an image resource that can be added to actors etc.
41  */
42 class ResourceImage : public Image
43 {
44 public:
45
46   /**
47    * Creates a pointer to an uninitialized Image object.
48    * @return a pointer to a newly created object.
49    */
50   static ResourceImagePtr New();
51
52   /**
53    * Creates object and loads image from filesystem
54    * the maximum size of the image is limited by GL_MAX_TEXTURE_SIZE
55    * @param [in] url The URL of the image file.
56    * @param [in] attributes requested parameters for loading (size, scaling etc.)
57    *                        if width or height is specified as 0, the natural size will be used.
58    * @return a pointer to a newly created object.
59    */
60   static ResourceImagePtr New( const std::string& url,
61                           const ImageAttributes& attributes );
62
63   /**
64    * @copydoc Dali::ResourceImage::GetLoadingState()
65    */
66   Dali::LoadingState GetLoadingState() const { return mLoadingState; }
67
68   /**
69    * @copydoc Dali::ResourceImage::LoadingFinishedSignal()
70    */
71   Dali::ResourceImage::ResourceImageSignal& LoadingFinishedSignal() { return mLoadingFinished; }
72
73   /**
74    * Get the attributes of the image.
75    * Only to be used after the image has finished loading.
76    * (Ticket's LoadingSucceeded callback was called)
77    * Reflects the last cached values after a LoadComplete.
78    * If requested width or height was 0, they are replaced by concrete dimensions.
79    * @return a copy of the attributes
80    */
81   const ImageAttributes& GetAttributes() const;
82
83   /**
84    * @copydoc Dali::ResourceImage::GetUrl()
85    * virtual so deriving class can override it
86    */
87   virtual const std::string& GetUrl() const;
88
89   /**
90    * @copydoc Dali::ResourceImage::Reload()
91    */
92   void Reload();
93
94   /**
95    * @copydoc Dali::Image::GetWidth()
96    */
97   virtual unsigned int GetWidth() const;
98
99   /**
100    * @copydoc Dali::Image::GetWidth()
101    */
102   virtual unsigned int GetHeight() const;
103
104   /**
105    * @copydoc Dali::Internal::Image::GetNaturalSize()
106    */
107   virtual Vector2 GetNaturalSize() const;
108
109
110 protected:
111
112   /**
113    * A reference counted object may only be deleted by calling Unreference()
114    */
115   virtual ~ResourceImage();
116
117   /**
118    * Constructor, with default parameters
119    */
120   ResourceImage();
121
122   /**
123    * Constructor, with url and attributes
124    */
125   ResourceImage( const std::string& url, const ImageAttributes& attributes);
126
127 private:
128   Dali::ResourceImage::ResourceImageSignal mLoadingFinished;
129   ImageAttributes mAttributes;
130   std::string mUrl;
131   Dali::LoadingState mLoadingState;
132
133   // Changes scope, should be at end of class
134   DALI_LOG_OBJECT_STRING_DECLARATION;
135 };
136
137 } // namespace Internal
138
139 /**
140  * Helper methods for public API.
141  */
142 inline Internal::ResourceImage& GetImplementation(Dali::ResourceImage& image)
143 {
144   DALI_ASSERT_ALWAYS( image && "Image handle is empty" );
145
146   BaseObject& handle = image.GetBaseObject();
147
148   return static_cast<Internal::ResourceImage&>(handle);
149 }
150
151 inline const Internal::ResourceImage& GetImplementation(const Dali::ResourceImage& image)
152 {
153   DALI_ASSERT_ALWAYS( image && "Image handle is empty" );
154
155   const BaseObject& handle = image.GetBaseObject();
156
157   return static_cast<const Internal::ResourceImage&>(handle);
158 }
159
160 } // namespace Dali
161 #endif // __DALI_INTERNAL_RESOURCE_IMAGE_H__