JavaScript support for DALi
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / text / font-wrapper.h
1 #ifndef __DALI_V8PLUGIN_FONT_WRAPPER_H__
2 #define __DALI_V8PLUGIN_FONT_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/text/font.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 Font  wrapper.
37  * Provides access to Font specific functionality and V8 memory handling.
38  */
39 class FontWrapper : public BaseWrappedObject
40 {
41
42 public:
43
44   FontWrapper( const Font& font,
45                 GarbageCollectorInterface& gc );
46
47   virtual ~FontWrapper()
48   {
49   };
50
51   /**
52    * @brief Creates a new Font wrapped inside a Javascript Object.
53    * @note: the actor type ie 'FontFont' is expected to be the name of the callee function.
54    * @param[in] args v8 function call arguments interpreted
55    */
56   static void NewFont( const v8::FunctionCallbackInfo< v8::Value >& args);
57
58   /**
59    * Wraps a font
60    */
61   static v8::Handle<v8::Object> WrapFont(v8::Isolate* isolate, const Dali::Font& );
62
63   Font GetFont();
64
65   static v8::Handle<v8::Object> GetStaticFontObject(v8::Isolate* isolate);
66
67 private:
68
69   Font mFont;
70   static v8::Handle<v8::ObjectTemplate> MakeFontTemplate( v8::Isolate* isolate );
71
72 };
73
74 } // namespace V8Plugin
75
76 } // namespace Dali
77
78 #endif // __DALI_V8PLUGIN_FONT_WRAPPER_H__