Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Call / JSCallService.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License. 
15  */
16
17
18 #ifndef TIZENAPIS_TIZEN_JS_CALLSERVICE_H_
19 #define TIZENAPIS_TIZEN_JS_CALLSERVICE_H_
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <CommonsJavaScript/PrivateObject.h>
23 #include <API/Account/AccountServices.h>
24 #include <API/Call/CallServiceObject.h>
25
26 namespace TizenApis {
27 namespace Tizen1_0 {
28
29 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<Api::Call::CallServiceObjectPtr>::Type JSCallServicePriv;
30
31 class JSCallService
32 {
33 public:
34         static const JSClassDefinition* getClassInfo();
35
36         static const JSClassRef getClassRef();
37
38         static JSObjectRef createJSObject(JSContextRef context,
39                 const Api::Account::AccountServices &serviceInfo);
40
41 private:
42         /**
43         * The callback invoked when an object is first created.
44         */
45         static void initialize(JSContextRef context, JSObjectRef object);
46
47         /**
48         * The callback invoked when an object is finalized.
49         */
50         static void finalize(JSObjectRef object);
51
52         /**
53          * The callback invoked when getting a property's value.
54          */
55         static JSValueRef getProperty(JSContextRef context, JSObjectRef object,
56                         JSStringRef propertyName, JSValueRef* exception);
57
58         /**
59         * The callback invoked when an object is used as the target of an 'instanceof' expression.
60         */
61         static bool hasInstance(JSContextRef context, JSObjectRef constructor,
62                         JSValueRef possibleInstance, JSValueRef* exception);
63
64         /**
65         * Tell whether is there is a call going on.
66         */
67         static JSValueRef launchDialer(JSContextRef context, JSObjectRef object,
68                         JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[],
69                         JSValueRef* exception);
70         
71         /**
72         * This structure contains properties and callbacks that define a type of object.
73         */
74         static JSClassDefinition m_classInfo;
75
76         /**
77          * This structure describes a statically declared value property.
78          */
79         static JSStaticValue m_property[];
80
81         /**
82         * This structure describes a statically declared function property.
83         */
84         static JSStaticFunction m_function[];
85
86         static JSClassRef m_jsClassRef;
87
88 };
89
90
91
92
93 #endif
94