Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-adaptor.git] / dali / internal / vector-animation / common / vector-animation-renderer-impl.h
1 #ifndef DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H
2 #define DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H
3
4 /*
5  * Copyright (c) 2018 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 <dali/public-api/object/base-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/devel-api/adaptor-framework/vector-animation-renderer.h>
26 #include <dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace Adaptor
35 {
36
37 class VectorAnimationRenderer;
38 using VectorAnimationRendererPtr = IntrusivePtr< VectorAnimationRenderer >;
39
40 /**
41  * Dali internal VectorAnimationRenderer.
42  */
43 class VectorAnimationRenderer : public BaseObject
44 {
45 public:
46
47   /**
48    * @brief Creates a VectorAnimationRenderer object.
49    *
50    * @param[in] url The url of the vector animation file
51    */
52   static VectorAnimationRendererPtr New();
53
54   /**
55    * @brief Initializes member data.
56    */
57   void Initialize( const std::string& url, Dali::Renderer renderer, uint32_t width, uint32_t height );
58
59   /**
60    * @copydoc Dali::VectorAnimationRenderer::SetSize()
61    */
62   void SetSize( uint32_t width, uint32_t height );
63
64   /**
65    * @copydoc Dali::VectorAnimationRenderer::StartRender()
66    */
67   bool StartRender();
68
69   /**
70    * @copydoc Dali::VectorAnimationRenderer::StopRender()
71    */
72   void StopRender();
73
74   /**
75    * @copydoc Dali::VectorAnimationRenderer::Render()
76    */
77   void Render( uint32_t frameNumber );
78
79   /**
80    * @copydoc Dali::VectorAnimationRenderer::GetTotalFrameNumber()
81    */
82   uint32_t GetTotalFrameNumber();
83
84 private:
85
86   /**
87    * @brief Constructor
88    */
89   VectorAnimationRenderer();
90
91   /**
92    * @brief Destructor.
93    */
94   ~VectorAnimationRenderer();
95
96 private:
97
98   VectorAnimationRenderer( const VectorAnimationRenderer& ) = delete;
99   VectorAnimationRenderer& operator=( VectorAnimationRenderer& )  = delete;
100
101 private:
102
103   VectorAnimationRendererPluginProxy mPlugin;
104 };
105
106 } // namespace Adaptor
107
108 } // namespace Internal
109
110 inline static Internal::Adaptor::VectorAnimationRenderer& GetImplementation( Dali::VectorAnimationRenderer& renderer )
111 {
112   DALI_ASSERT_ALWAYS( renderer && "VectorAnimationRenderer handle is empty." );
113
114   BaseObject& handle = renderer.GetBaseObject();
115
116   return static_cast< Internal::Adaptor::VectorAnimationRenderer& >( handle );
117 }
118
119 inline static const Internal::Adaptor::VectorAnimationRenderer& GetImplementation( const Dali::VectorAnimationRenderer& renderer )
120 {
121   DALI_ASSERT_ALWAYS( renderer && "VectorAnimationRenderer handle is empty." );
122
123   const BaseObject& handle = renderer.GetBaseObject();
124
125   return static_cast< const Internal::Adaptor::VectorAnimationRenderer& >( handle );
126 }
127
128 } // namespace Dali
129
130 #endif // DALI_INTERNAL_VECTOR_ANIMATION_RENDERER_IMPL_H