Update change log and spec for wrt-plugins-tizen_0.4.70
[framework/web/wrt-plugins-tizen.git] / src / Bluetooth / JSBluetoothHealthApplication.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef __TIZEN_JS_BLUETOOTH_HEALTH_APPLICATION_H__
19 #define __TIZEN_JS_BLUETOOTH_HEALTH_APPLICATION_H__
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include "BluetoothHealthApplication.h"
23
24 namespace DeviceAPI {
25 namespace Bluetooth {
26
27 class BluetoothHealthApplicationHolder 
28 {
29 public:
30     BluetoothHealthApplicationHolder(BluetoothHealthApplicationSharedPtr app){mApp = app;}
31     BluetoothHealthApplicationSharedPtr mApp; 
32 };
33 typedef BluetoothHealthApplicationHolder* BluetoothHealthApplicationHolderPtr;
34
35 class JSBluetoothHealthApplication
36 {
37 public:
38     static const JSClassDefinition* getClassInfo();
39     static const JSClassRef getClassRef();
40     static JSObjectRef createJSObject(JSContextRef context, BluetoothHealthApplicationSharedPtr app);
41     static BluetoothHealthApplicationSharedPtr toBluetoothHealthApplication(JSObjectRef appObj);
42     
43 private:
44
45     /**
46      * The callback invoked when an object is first created.
47      */
48     static void initialize(JSContextRef context,
49             JSObjectRef object);
50
51     /**
52      * The callback invoked when an object is finalized.
53      */
54     static void finalize(JSObjectRef object);
55
56     static JSValueRef getProperty(JSContextRef context,
57             JSObjectRef object,
58             JSStringRef propertyName,
59             JSValueRef* exception);
60
61     static bool setProperty(JSContextRef context,
62             JSObjectRef object,
63             JSStringRef propertyName,
64             JSValueRef value,
65             JSValueRef* exception);
66
67     static JSValueRef unregister(JSContextRef context,
68         JSObjectRef object,
69         JSObjectRef thisObject,
70         size_t argumentCount,
71         const JSValueRef arguments[],
72         JSValueRef* exception);
73
74     /**
75      * This member variable contains the values which has to be passed
76      * when the this class is embedded into JS Engine.
77      */
78     static JSClassDefinition m_classInfo;
79
80     /**
81      * This structure describes a statically declared function property.
82      */
83     static JSStaticFunction m_function[];
84
85     /**
86      * This member variable contains the initialization values for the
87      * properties of this class. The values are given according to
88      * the data structure JSPropertySpec
89      */
90     static JSStaticValue m_property[];
91
92     static JSClassRef m_jsClassRef;
93 };
94
95
96 } // Bluetooth
97 } // DeviceAPI
98
99 #endif // __TIZEN_JS_BLUETOOTH_HEALTH_APPLICATION_H__