Update change log and spec for wrt-plugins-tizen_0.4.52
[framework/web/wrt-plugins-tizen.git] / src / Application / JSApplication.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_H_
20 #define TIZENAPIS_TIZEN_JS_APPLICATION_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24 #include <dpl/shared_ptr.h>
25 #include "Application.h"
26
27 namespace DeviceAPI {
28 namespace Application {
29
30 #define TIZEN_INTERFACE_APPLICATION "Application"
31
32 #define TIZEN_APPLICATION_APP_INFO "appInfo"
33 #define TIZEN_APPLICATION_APP_CONTEXT_ID "contextId"
34
35 typedef WrtDeviceApis::CommonsJavaScript::PrivateObject<ApplicationPtr, WrtDeviceApis::CommonsJavaScript::NoOwnership> JSApplicationPriv;
36
37 class JSApplication {
38 public:
39         /*
40         * This initializes this JS class in the JS Engine.
41         */
42         static JSClassRef getClassRef();
43
44         static JSValueRef makeObject(JSContextRef ctx, const ApplicationPtr value);
45
46
47         /**
48          * hide the application based on application context.
49          */
50         static JSValueRef hide(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount,
51                         const JSValueRef arguments[], JSValueRef* exception);
52
53         /**
54          * exit current application
55          */
56         static JSValueRef exit(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount,
57                         const JSValueRef arguments[], JSValueRef* exception);
58
59         /**
60          * get request application control
61          */
62         static JSValueRef getRequestedAppControl(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount,
63                         const JSValueRef arguments[], JSValueRef* exception);
64
65 private:
66    /**
67         * The callback invoked when an object is first created.
68         */
69         static void initialize(JSContextRef context, JSObjectRef object);
70
71    /**
72         * The callback invoked when an object is finalized.
73         */
74         static void finalize(JSObjectRef object);
75
76    /**
77         * This structure contains properties and callbacks that define a type of object.
78         */
79         static JSClassDefinition m_classInfo;
80
81    /**
82         * This structure describes a statically declared function property.
83         */
84         static JSStaticFunction m_functions[];
85
86         /**
87          * This member variable contains the initialization values for the static properties of this class.
88          * The values are given according to the data structure JSPropertySpec
89          */
90         static JSStaticValue m_property[];
91
92         /**
93          * This structure describes a statically declared function property.
94          */
95         static JSStaticFunction m_function[];   
96
97         static JSClassRef m_classRef;
98
99 };
100
101 }
102 }
103 #endif  //TIZENAPIS_TIZEN_JS_APPLICATION_H_