[Tizen] Revert "Remove TypeRegistration from deprecated Image classes"
[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    * Connects a callback function with the object's signals.
75    * @param[in] object The object providing the signal.
76    * @param[in] tracker Used to disconnect the signal.
77    * @param[in] signalName The signal to connect to.
78    * @param[in] functor A newly allocated FunctorDelegate.
79    * @return True if the signal was connected.
80    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
81    */
82   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
83
84   /**
85    * Get the attributes of the image.
86    * Only to be used after the image has finished loading.
87    * (Ticket's LoadingSucceeded callback was called)
88    * Reflects the last cached values after a LoadComplete.
89    * If requested width or height was 0, they are replaced by concrete dimensions.
90    * @return a copy of the attributes
91    */
92   const ImageAttributes& GetAttributes() const;
93
94   /**
95    * @copydoc Dali::ResourceImage::GetUrl()
96    * virtual so deriving class can override it
97    */
98   virtual const std::string& GetUrl() const;
99
100   /**
101    * @copydoc Dali::ResourceImage::Reload()
102    */
103   void Reload();
104
105   /**
106    * @copydoc Dali::Image::GetWidth()
107    */
108   virtual unsigned int GetWidth() const;
109
110   /**
111    * @copydoc Dali::Image::GetWidth()
112    */
113   virtual unsigned int GetHeight() const;
114
115   /**
116    * @copydoc Dali::Internal::Image::GetNaturalSize()
117    */
118   virtual Vector2 GetNaturalSize() const;
119
120
121 protected:
122
123   /**
124    * A reference counted object may only be deleted by calling Unreference()
125    */
126   virtual ~ResourceImage();
127
128   /**
129    * Constructor, with default parameters
130    */
131   ResourceImage();
132
133   /**
134    * Constructor, with url and attributes
135    */
136   ResourceImage( const std::string& url, const ImageAttributes& attributes);
137
138 private:
139   Dali::ResourceImage::ResourceImageSignal mLoadingFinished;
140   ImageAttributes mAttributes;
141   std::string mUrl;
142   Dali::LoadingState mLoadingState;
143
144   // Changes scope, should be at end of class
145   DALI_LOG_OBJECT_STRING_DECLARATION;
146 };
147
148 } // namespace Internal
149
150 /**
151  * Helper methods for public API.
152  */
153 inline Internal::ResourceImage& GetImplementation(Dali::ResourceImage& image)
154 {
155   DALI_ASSERT_ALWAYS( image && "Image handle is empty" );
156
157   BaseObject& handle = image.GetBaseObject();
158
159   return static_cast<Internal::ResourceImage&>(handle);
160 }
161
162 inline const Internal::ResourceImage& GetImplementation(const Dali::ResourceImage& image)
163 {
164   DALI_ASSERT_ALWAYS( image && "Image handle is empty" );
165
166   const BaseObject& handle = image.GetBaseObject();
167
168   return static_cast<const Internal::ResourceImage&>(handle);
169 }
170
171 } // namespace Dali
172 #endif // __DALI_INTERNAL_RESOURCE_IMAGE_H__