[dali_1.4.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / animation / animation-wrapper.h
1 #ifndef DALI_V8PLUGIN_ANIMATION_WRAPPER_H
2 #define DALI_V8PLUGIN_ANIMATION_WRAPPER_H
3
4 /*
5  * Copyright (c) 2019 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 <v8.h>
23 #include <dali/public-api/animation/animation.h>
24
25 // INTERNAL INCLUDES
26 #include <shared/base-wrapped-object.h>
27 #include <signals/signal-manager.h>
28
29 namespace Dali
30 {
31
32 namespace V8Plugin
33 {
34
35 /**
36  * Animation  wrapper.
37  * Provides access to Animation specific functionality
38  */
39 class AnimationWrapper : public BaseWrappedObject
40 {
41
42 public:
43
44   AnimationWrapper( const Animation& animation,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~AnimationWrapper();
48
49   /**
50    * @brief Creates a new Animation wrapped inside a Javascript Object.
51    * @param[in] args v8 function call arguments interpreted
52    */
53   static void NewAnimation( const v8::FunctionCallbackInfo< v8::Value >& args);
54
55   /**
56    * Wraps an animation
57    */
58   static v8::Handle<v8::Object> WrapAnimation(v8::Isolate* isolate, const Dali::Animation& );
59
60
61   // The AnimationAttribute ObjectTemplate, we cache templates so we don't have
62   // keep generating them everytime we want to create an Animation
63   static v8::Persistent<v8::ObjectTemplate> mAnimationTemplate;
64
65   Animation GetAnimation();
66   virtual SignalManager* GetSignalManager() { return &mSignalManager;}
67
68 private:
69
70   Animation mAnimation;           ///< animation object
71   SignalManager mSignalManager;   ///< signal manager
72
73   static v8::Handle<v8::ObjectTemplate> MakeAnimationTemplate( v8::Isolate* isolate );
74   static v8::Local<v8::ObjectTemplate> GetAnimationTemplate( v8::Isolate* isolate );
75
76 };
77
78 } // namespace V8Plugin
79
80 } // namespace Dali
81
82 #endif // DALI_V8PLUGIN_ANIMATION_WRAPPER_H