Update change log and spec for wrt-plugins-tizen_0.4.70
[framework/web/wrt-plugins-tizen.git] / src / Bluetooth / JSBluetoothManager.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_MANAGER_H__
19 #define __TIZEN_JS_BLUETOOTH_MANAGER_H__
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <PropertyBag.h>
23 #include <memory>
24 #include <Security.h>
25
26 namespace DeviceAPI {
27 namespace Bluetooth {
28         
29
30 class JSBluetoothManagerPriv :
31         public DeviceAPI::Common::SecurityAccessor,     
32         public DeviceAPI::Common::PropertyBag
33 {       
34 public: 
35         JSBluetoothManagerPriv() :
36                         DeviceAPI::Common::SecurityAccessor(),
37                         DeviceAPI::Common::PropertyBag()
38         {
39         }
40         virtual ~JSBluetoothManagerPriv() {}
41 };
42
43 class JSBluetoothManager
44 {
45 public:
46     static const JSClassDefinition* getClassInfo();
47     static const JSClassRef getClassRef();
48
49 private:
50
51     /**
52      * The callback invoked when an object is first created.
53      */
54     static void initialize(JSContextRef context,
55             JSObjectRef object);
56
57     /**
58      * The callback invoked when an object is finalized.
59      */
60     static void finalize(JSObjectRef object);
61
62     static JSValueRef getReadOnlyProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
63
64     static JSValueRef getDefaultAdapter(JSContextRef context,
65             JSObjectRef object,
66             JSObjectRef thisObject,
67             size_t argumentCount,
68             const JSValueRef arguments[],
69             JSValueRef* exception);
70
71     /**
72      * This member variable contains the values which has to be passed
73      * when the this class is embedded into JS Engine.
74      */
75     static JSClassDefinition m_classInfo;
76
77     /**
78      * This structure describes a statically declared function property.
79      */
80     static JSStaticFunction m_function[];
81
82     static JSStaticValue m_property[];
83
84     static JSClassRef m_jsClassRef;
85
86 };
87
88
89
90 } // Bluetooth
91 } // DeviceAPI
92
93 #endif // __TIZEN_JS_DOWNLOAD_MANAGER_H__