Update change log and spec for wrt-plugins-tizen_0.4.51
[framework/web/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, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount,
57                         const JSValueRef arguments[], JSValueRef* exception);
58
59         /**
60          * Send Failure Result
61          */
62         static JSValueRef replyFailure(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount,
63                         const JSValueRef arguments[], JSValueRef* exception);
64
65         static RequestedApplicationControlPtr getRequestedApplicationControl(JSContextRef context, JSValueRef value);
66
67
68 private:
69         /**
70          * The callback invoked when an object is first created.
71          */
72         static void initialize(JSContextRef context, JSObjectRef object);
73
74    /**
75          * The callback invoked when an object is finalized.
76          */
77         static void finalize(JSObjectRef object);
78
79     static RequestedApplicationControlPtr getPrivData(JSObjectRef object);
80
81
82   /**
83      * The callback invoked when getting a property's value.
84      */
85     static JSValueRef getProperty(JSContextRef context,
86             JSObjectRef object,
87             JSStringRef propertyName,
88             JSValueRef* exception);
89
90   /**
91          * The callback invoked when setting a property's value.
92          */
93
94         static bool setProperty(JSContextRef context,
95                   JSObjectRef object,
96                   JSStringRef propertyName,
97                   JSValueRef value,
98                   JSValueRef* exception);
99
100
101   /**
102      * This structure contains properties and callbacks that define a type of object.
103      */
104     static JSClassDefinition m_classInfo;
105
106   /**
107      * This structure describes a statically declared value property.
108      */
109     static JSStaticValue m_property[];
110
111         /**
112          * This structure describes a statically declared function property.
113          */
114         static JSStaticFunction m_function[];
115
116
117     static JSClassRef m_jsClassRef;
118
119 };
120
121 } //
122 } //TizenApis
123
124 #endif