180bd50d2c689292f828752462efc3100da55073
[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
19 #ifndef TIZENAPIS_TIZEN_JS_BLUETOOTH_H_
20 #define TIZENAPIS_TIZEN_JS_BLUETOOTH_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23  #include <CommonsJavaScript/PrivateObject.h>
24
25 using namespace WrtDeviceApis;
26  
27  namespace DeviceAPI {
28  namespace Bluetooth {
29
30 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<void>::Type JSBluetoothManagerPriv;
31
32 class JSBluetoothManager 
33 {
34 public:
35         static const JSClassDefinition* getClassInfo();
36         static const JSClassRef getClassRef();
37
38 private:
39         static void initialize(JSContextRef context, JSObjectRef object);
40         static void finalize(JSObjectRef object);
41         static bool hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef possibleInstance, JSValueRef* exception);
42         static JSValueRef getDefaultAdapter(JSContextRef context, JSObjectRef object, 
43                 JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[],
44                 JSValueRef* exception) ;
45         static JSValueRef getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
46         static JSClassDefinition m_classInfo;
47         static JSStaticFunction m_function[];
48         static JSStaticValue m_properties[];
49         static JSClassRef m_jsClassRef;
50         static JSObjectRef m_deviceMajor;
51         static JSObjectRef m_deviceMinor;
52         static JSObjectRef m_deviceService;
53 };
54 }
55
56
57 #endif
58