Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Call / JSCellularCallService.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_CELLULARCALLSERVICE_H_
19 #define TIZENAPIS_TIZEN_JS_CELLULARCALLSERVICE_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 JSCellularCallServicePriv;
30
31 class JSCellularCallService
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 private:
41         /**
42         * The callback invoked when an object is first created.
43         */
44         static void initialize(JSContextRef context, JSObjectRef object);
45
46         /**
47         * The callback invoked when an object is finalized.
48         */
49         static void finalize(JSObjectRef object);
50
51         /**
52          * The callback invoked when getting a property's value.
53          */
54         static JSValueRef getProperty(JSContextRef context, JSObjectRef object,
55                         JSStringRef propertyName, JSValueRef* exception);
56
57         /**
58         * The callback invoked when an object is used as the target of an 'instanceof' expression.
59         */
60         static bool hasInstance(JSContextRef context, JSObjectRef constructor,
61                         JSValueRef possibleInstance, JSValueRef* exception);
62
63         /**
64         * Send a USSD string to the network.
65         */
66         static JSValueRef sendUSSD(JSContextRef context, JSObjectRef object,
67                         JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[],
68                         JSValueRef* exception);
69         
70         /**
71         * This structure contains properties and callbacks that define a type of object.
72         */
73         static JSClassDefinition m_classInfo;
74
75         /**
76          * This structure describes a statically declared value property.
77          */
78         static JSStaticValue m_property[];
79
80         /**
81         * This structure describes a statically declared function property.
82         */
83         static JSStaticFunction m_function[];
84
85         static JSClassRef m_jsClassRef;
86
87 };
88
89
90
91
92 #endif
93