0a4f5f781bd8cd98b02cf5f8ebce977787101a85
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / shader-effects / shader-effect-wrapper.h
1 #ifndef __DALI_V8PLUGIN_SHADER_EFFECT_WRAPPER_H__
2 #define __DALI_V8PLUGIN_SHADER_EFFECT_WRAPPER_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 <v8.h>
23 #include <dali/public-api/shader-effects/shader-effect.h>
24
25 // INTERNAL INCLUDES
26 #include <object/handle-wrapper.h>
27
28 namespace Dali
29 {
30
31 namespace V8Plugin
32 {
33
34
35 /**
36  * An ShaderEffect  wrapper.
37  * Provides access to ShaderEffect specific functionality and V8 memory handling.
38  */
39 class ShaderEffectWrapper : public HandleWrapper
40 {
41
42 public:
43
44   ShaderEffectWrapper( const ShaderEffect& shaderEffect,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~ShaderEffectWrapper()
48   {
49   };
50
51   /**
52    * @brief Creates a new ShaderEffect wrapped inside a Javascript Object.
53    * @param[in] args v8 function call arguments interpreted
54    */
55   static void NewShaderEffect( const v8::FunctionCallbackInfo< v8::Value >& args);
56
57   /**
58    * Wraps a  shaderEffect
59    */
60   static v8::Handle<v8::Object> WrapShaderEffect(v8::Isolate* isolate, const Dali::ShaderEffect& );
61
62
63   // The ShaderEffectAttribute ObjectTemplate, we cache templates so we don't have
64   // keep generating them everytime we want to create an ShaderEffect
65   static v8::Persistent<v8::ObjectTemplate> mShaderEffectTemplate;
66
67   ShaderEffect GetShaderEffect();
68
69
70 private:
71
72   // ShaderEffect
73   ShaderEffect mShaderEffect;
74
75   static v8::Handle<v8::ObjectTemplate> MakeShaderEffectTemplate( v8::Isolate* isolate );
76   static v8::Local<v8::ObjectTemplate> GetShaderEffectTemplate( v8::Isolate* isolate );
77
78 };
79
80 } // namespace V8Plugin
81
82 } // namespace Dali
83
84 #endif // __DALI_V8PLUGIN_SHADER_EFFECT_WRAPPER_H__