Merge "Refactoring Button: remove painter" into tizen
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / render-tasks / render-task-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/render-tasks/render-task.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 RenderTask  wrapper.
37  * Provides access to RenderTask specific functionality and V8 memory handling.
38  */
39 class RenderTaskWrapper : public HandleWrapper
40 {
41
42 public:
43
44   RenderTaskWrapper( const RenderTask& shaderEffect,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~RenderTaskWrapper() {}
48
49
50   /**
51    * Wraps a render task
52    */
53   static v8::Handle<v8::Object> WrapRenderTask(v8::Isolate* isolate, const Dali::RenderTask& );
54
55
56   // The RenderTaskAttribute ObjectTemplate, we cache templates so we don't have
57   // keep generating them everytime we want to create an RenderTask
58   static v8::Persistent<v8::ObjectTemplate> mRenderTaskTemplate;
59
60   RenderTask GetRenderTask();
61
62
63 private:
64
65   // RenderTask
66   RenderTask mRenderTask;
67
68   static v8::Handle<v8::ObjectTemplate> MakeRenderTaskTemplate( v8::Isolate* isolate );
69   static v8::Local<v8::ObjectTemplate> GetRenderTaskTemplate( v8::Isolate* isolate );
70
71 };
72
73 } // namespace V8Plugin
74
75 } // namespace Dali
76
77 #endif // __DALI_V8PLUGIN_SHADER_EFFECT_WRAPPER_H__