Merge "Refactoring Button: remove painter" into tizen
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / toolkit / builder / builder-wrapper.h
1 #ifndef __DALI_V8PLUGIN_BUILDER_WRAPPER_H__
2 #define __DALI_V8PLUGIN_BUILDER_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-toolkit/public-api/builder/builder.h>
24
25 // INTERNAL INCLUDES
26 #include <shared/base-wrapped-object.h>
27
28
29 namespace Dali
30 {
31
32 namespace V8Plugin
33 {
34
35 /**
36  * Builder  wrapper.
37  * Provides access to Builder specific functionality
38  */
39 class BuilderWrapper : public BaseWrappedObject
40 {
41
42 public:
43
44   BuilderWrapper( const Dali::Toolkit::Builder& builder,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~BuilderWrapper();
48
49   /**
50    * @brief Creates a new Builder wrapped inside a Javascript Object.
51    * @param[in] args v8 function call arguments interpreted
52    */
53   static void NewBuilder( const v8::FunctionCallbackInfo< v8::Value >& args);
54
55   /**
56    * Wraps a builder
57    */
58   static v8::Handle<v8::Object> WrapBuilder(v8::Isolate* isolate, const Dali::Toolkit::Builder& );
59
60
61   Dali::Toolkit::Builder GetBuilder();
62
63
64 private:
65
66   static v8::Local<v8::ObjectTemplate> GetBuilderTemplate( v8::Isolate* isolate );
67   Dali::Toolkit::Builder mBuilder;
68 };
69
70 } // namespace V8Plugin
71
72 } // namespace Dali
73
74 #endif // __DALI_V8PLUGIN_BUILDER_WRAPPER_H__