tizen 2.3.1 release
[framework/web/mobile/wrt-plugins-tizen.git] / src / Contact / JSContactInstantMessenger.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2014 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_CONTACT_JS_CONTACT_INSTANT_MESSENGER_H__
19 #define __TIZEN_CONTACT_JS_CONTACT_INSTANT_MESSENGER_H__
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include "ContactInstantMessenger.h"
23
24 namespace DeviceAPI {
25 namespace Contact {
26
27 class JSContactInstantMessenger {
28 public:
29     static JSClassRef getClassRef();
30
31     static const JSClassDefinition* getClassInfo();
32
33     static ContactInstantMessengerPtr getPrivateObject(JSContextRef context, JSValueRef value);
34
35     static void setPrivateObject(JSObjectRef object, ContactInstantMessengerPtr native);
36
37     static JSObjectRef makeJSObject(JSContextRef context, ContactInstantMessengerPtr native);
38
39     static JSObjectRef constructor(JSContextRef context,
40             JSObjectRef constructor,
41             size_t argumentCount,
42             const JSValueRef arguments[],
43             JSValueRef* exception);
44 private:
45     /**
46      * This member variable contains the values which has to be passed
47      * when the this class is embedded into JS Engine.
48      */
49     static JSClassDefinition m_classInfo;
50
51     /**
52      * This member variable contains the initialization values for the static properties of this class.
53      * The values are given according to the data structure JSPropertySpec
54      */
55     static JSStaticValue m_property[];
56
57     static JSClassRef m_jsClassRef;
58
59     /**
60      * The callback invoked when an object is first created.
61      */
62     static void initialize(JSContextRef context, JSObjectRef object);
63
64     /**
65      * The callback invoked when an object is finalized.
66      */
67     static void finalize(JSObjectRef object);
68
69     static JSValueRef getImAddress(JSContextRef context,
70             JSObjectRef object,
71             JSStringRef propertyName,
72             JSValueRef* exception);
73
74     static JSValueRef getType(JSContextRef context,
75             JSObjectRef object,
76             JSStringRef propertyName,
77             JSValueRef* exception);
78
79     static JSValueRef getLabel(JSContextRef context,
80             JSObjectRef object,
81             JSStringRef propertyName,
82             JSValueRef* exception);
83
84     static bool setImAddress(JSContextRef context,
85             JSObjectRef object,
86             JSStringRef propertyName,
87             JSValueRef value,
88             JSValueRef* exception);
89
90     static bool setType(JSContextRef context,
91             JSObjectRef object,
92             JSStringRef propertyName,
93             JSValueRef value,
94             JSValueRef* exception);
95
96     static bool setLabel(JSContextRef context,
97             JSObjectRef object,
98             JSStringRef propertyName,
99             JSValueRef value,
100             JSValueRef* exception);
101
102 };
103
104 } // Contact
105 } // DeviceAPI
106
107 #endif /* __TIZEN_CONTACT_JS_CONTACT_INSTANT_MESSENGER_H__ */