Cleaned up Degree, Radian, AngleAxis and Quaternion classes
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / image / image-attributes-wrapper.h
1 #ifndef __DALI_V8PLUGIN_IMAGE_ATTRIBUTES_WRAPPER_H__
2 #define __DALI_V8PLUGIN_IMAGE_ATTRIBUTES_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/images/image-attributes.h>
24
25 // INTERNAL INCLUDES
26 #include <shared/base-wrapped-object.h>
27
28 namespace Dali
29 {
30
31 namespace V8Plugin
32 {
33
34
35 /**
36  * An Image Attributes wrapper.
37  * Provides access to ImageAttributes specific functionality and V8 memory handling.
38  */
39 class ImageAttributesWrapper : public BaseWrappedObject
40 {
41
42 public:
43
44   /**
45    * Constructor
46    */
47   ImageAttributesWrapper( const ImageAttributes& imageAttributes,
48                 GarbageCollectorInterface& gc );
49
50   /**
51     * Destructor
52     */
53   virtual ~ImageAttributesWrapper(){};
54
55   /**
56    * Constructors
57    */
58   static void NewImageAttributes( const v8::FunctionCallbackInfo< v8::Value >& args);
59
60   /**
61    * Wraps an image attributes
62    */
63   static v8::Handle<v8::Object> WrapImageAttributes(v8::Isolate* isolate, const Dali::ImageAttributes& attributes);
64
65
66   // The ImageAttribute ObjectTemplate, we cache templates so we don't have
67   // keep generating them everytime we want to create an ImageAttribute
68   static v8::Persistent<v8::ObjectTemplate> mImageAttributesTemplate;
69
70   ImageAttributes& GetImageAttributes();
71 private:
72
73   // ImageAttributes
74   ImageAttributes mImageAttributes;
75
76   static v8::Handle<v8::ObjectTemplate> MakeImageAttributesTemplate( v8::Isolate* isolate );
77   static v8::Local<v8::ObjectTemplate> GetImageAttributesTemplate( v8::Isolate* isolate );
78
79 };
80
81 } // namespace V8Plugin
82
83 } // namespace Dali
84
85 #endif // header