tizen 2.3.1 release
[framework/web/mobile/wrt-plugins-tizen.git] / src / Application / JSRequestedApplicationControl.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_REQUESTED_APPLICATION_CONTROL_H_
20 #define TIZENAPIS_TIZEN_JS_REQUESTED_APPLICATION_CONTROL_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24 #include "ApplicationControl.h"
25 #include "RequestedApplicationControl.h"
26 #include "JSApplicationControl.h"
27 #include "JSApplicationControlData.h"
28
29 namespace DeviceAPI {
30 namespace Application {
31
32 #define TIZEN_INTERFACE_REQUESTED_APPLICATION_CONTROL "RequestedApplicationControl"
33 #define TIZEN_APPLICATION_CONTROL "appControl"
34 #define TIZEN_CALLER_APP_ID "callerAppId"
35
36 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<RequestedApplicationControlPtr>::Type JSRequestedApplicationControlPriv;
37
38 class JSRequestedApplicationControl {
39 public:
40     static const JSClassDefinition* getClassInfo();
41
42     static JSClassRef getClassRef();
43
44     /**
45       * create an JSObject for callback function(onAnswerReceived).
46       */
47     static JSObjectRef createJSObject(JSContextRef context,
48                const RequestedApplicationControlPtr &appsvc);
49
50
51     static bool isObjectOfClass(JSContextRef context, JSValueRef value);
52
53     /**
54      * Send Success Result
55      */
56     static JSValueRef replyResult(JSContextRef context,
57             JSObjectRef object,
58             JSObjectRef thisObject,
59             size_t argumentCount,
60             const JSValueRef arguments[],
61             JSValueRef* exception);
62
63     /**
64      * Send Failure Result
65      */
66     static JSValueRef replyFailure(JSContextRef context,
67             JSObjectRef object,
68             JSObjectRef thisObject,
69             size_t argumentCount,
70             const JSValueRef arguments[],
71             JSValueRef* exception);
72
73     static RequestedApplicationControlPtr getRequestedApplicationControl(JSContextRef context,
74             JSValueRef value);
75
76
77 private:
78     /**
79      * The callback invoked when an object is first created.
80      */
81     static void initialize(JSContextRef context, JSObjectRef object);
82
83    /**
84      * The callback invoked when an object is finalized.
85      */
86     static void finalize(JSObjectRef object);
87
88     static RequestedApplicationControlPtr getPrivData(JSObjectRef object);
89
90
91   /**
92      * The callback invoked when getting a property's value.
93      */
94     static JSValueRef getProperty(JSContextRef context,
95             JSObjectRef object,
96             JSStringRef propertyName,
97             JSValueRef* exception);
98
99   /**
100      * The callback invoked when setting a property's value.
101      */
102
103     static bool setProperty(JSContextRef context,
104           JSObjectRef object,
105           JSStringRef propertyName,
106           JSValueRef value,
107           JSValueRef* exception);
108
109
110   /**
111      * This structure contains properties and callbacks that define a type of object.
112      */
113     static JSClassDefinition m_classInfo;
114
115   /**
116      * This structure describes a statically declared value property.
117      */
118     static JSStaticValue m_property[];
119
120     /**
121      * This structure describes a statically declared function property.
122      */
123     static JSStaticFunction m_function[];
124
125
126     static JSClassRef m_jsClassRef;
127
128 };
129
130 } //
131 } //TizenApis
132
133 #endif