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