[dali_1.9.35] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / animated-vector-image / vector-animation-manager.h
1 #ifndef DALI_TOOLKIT_INTERNAL_VECTOR_ANIMATION_MANAGER_H
2 #define DALI_TOOLKIT_INTERNAL_VECTOR_ANIMATION_MANAGER_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/signals/callback.h>
23 #include <dali/public-api/common/vector-wrapper.h>
24 #include <dali/integration-api/processor-interface.h>
25 #include <memory>
26
27 // INTERNAL INCLUDES
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 namespace Internal
36 {
37
38 class VectorAnimationThread;
39
40 /**
41  * @brief Vector animation manager
42  */
43 class VectorAnimationManager: public Integration::Processor
44 {
45 public:
46
47   /**
48    * @brief Constructor.
49    */
50   VectorAnimationManager();
51
52   /**
53    * @brief Destructor.
54    */
55   ~VectorAnimationManager() override;
56
57   /**
58    * Get the vector animation thread.
59    * @return A raw pointer pointing to the vector animation thread.
60    */
61   VectorAnimationThread& GetVectorAnimationThread();
62
63   /**
64    * @brief Register a callback.
65    *
66    * @param callback The callback to register
67    * @note Ownership of the callback is passed onto this class.
68    */
69   void RegisterEventCallback( CallbackBase* callback );
70
71   /**
72    * @brief Unregister a previously registered callback
73    *
74    * @param callback The callback to unregister
75    */
76   void UnregisterEventCallback( CallbackBase* callback );
77
78 protected: // Implementation of Processor
79
80   /**
81    * @copydoc Dali::Integration::Processor::Process()
82    */
83   void Process() override;
84
85 private:
86
87   // Undefined
88   VectorAnimationManager( const VectorAnimationManager& manager ) = delete;
89
90   // Undefined
91   VectorAnimationManager& operator=( const VectorAnimationManager& manager ) = delete;
92
93 private:
94
95   std::vector< CallbackBase* >             mEventCallbacks;
96   std::unique_ptr< VectorAnimationThread > mVectorAnimationThread;
97   bool                                     mProcessorRegistered;
98 };
99
100 } // namespace Internal
101
102 } // namespace Toolkit
103
104 } // namespace Dali
105
106 #endif // DALI_TOOLKIT_INTERNAL_VECTOR_ANIMATION_MANAGER_H