Update change log and spec for wrt-plugins-tizen_0.4.51
[framework/web/wrt-plugins-tizen.git] / src / Application / JSApplicationControl.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_APPLICATION_CONTROL_H_
20 #define TIZENAPIS_TIZEN_JS_APPLICATION_CONTROL_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24 #include "ApplicationControl.h"
25 #include "JSApplicationControlData.h"
26
27 namespace DeviceAPI {
28 namespace Application {
29
30 #define TIZEN_INTERFACE_APPLICATION_CONTROL "ApplicationControl"
31
32 #define TIZEN_APPLICATION_CONTROL_OPERATION "operation"
33 #define TIZEN_APPLICATION_CONTROL_URI "uri"
34 #define TIZEN_APPLICATION_CONTROL_MIME "mime"
35 #define TIZEN_APPLICATION_CONTROL_CATEGORY "category"
36 #define TIZEN_APPLICATION_CONTROL_DATA "data"
37
38 typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<ApplicationControlPtr>::Type JSApplicationControlPriv;
39
40 class JSApplicationControl {
41 public:
42         static const JSClassDefinition* getClassInfo();
43
44         static const JSClassRef getClassRef();
45
46         /**
47           * create an JSObject for callback function(onAnswerReceived).
48           */
49         static JSObjectRef createJSObject(JSContextRef context,
50                            const ApplicationControlPtr &appsvc);
51
52         /**
53          * The Constructor of ApplicationControl
54          */
55         static JSObjectRef constructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
56
57
58         static bool isObjectOfClass(JSContextRef context, JSValueRef value);
59
60         static ApplicationControlPtr getApplicationControl(JSContextRef context, JSValueRef value);
61         /**
62           * return private data
63           */
64         //static ApplicationControlPtr getPrivateData(JSObjectRef object);
65
66
67 private:
68         /**
69          * The callback invoked when an object is first created.
70          */
71         static void initialize(JSContextRef context, JSObjectRef object);
72
73    /**
74          * The callback invoked when an object is finalized.
75          */
76         static void finalize(JSObjectRef object);
77
78     static ApplicationControlPtr getPrivData(JSContextRef context, JSObjectRef object);
79
80   /**
81      * The callback invoked when getting a property's value.
82      */
83     static JSValueRef getProperty(JSContextRef context,
84             JSObjectRef object,
85             JSStringRef propertyName,
86             JSValueRef* exception);
87
88   /**
89          * The callback invoked when setting a property's value.
90          */
91
92         static bool setProperty(JSContextRef context,
93                   JSObjectRef object,
94                   JSStringRef propertyName,
95                   JSValueRef value,
96                   JSValueRef* exception);
97
98   /**
99      * This structure contains properties and callbacks that define a type of object.
100      */
101     static JSClassDefinition m_classInfo;
102
103   /**
104      * This structure describes a statically declared value property.
105      */
106     static JSStaticValue m_property[];
107
108         /**
109          * This structure describes a statically declared function property.
110          */
111         static JSStaticFunction m_function[];
112
113
114     static JSClassRef m_jsClassRef;
115
116 };
117
118 } //
119 } //TizenApis
120
121 #endif