Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Application / plugin_config.h
1 /*\r
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the License);\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an AS IS BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License. \r
15  */\r
16 \r
17 \r
18 #ifndef _APPLICATOIN_PLUGIN_CONFIG_H_\r
19 #define _APPLICATOIN_PLUGIN_CONFIG_H_\r
20 \r
21 #include <string>\r
22 #include <Commons/FunctionDeclaration.h>\r
23 \r
24 #define APPLICATION_FUNCTION_API_LAUNCH         "launch"\r
25 #define APPLICATION_FUNCTION_API_KILL           "kill"\r
26 #define APPLICATION_FUNCTION_API_EXIT           "exit"\r
27 #define APPLICATION_FUNCTION_API_HIDE           "hide"\r
28 \r
29 #define APPLICATION_FUNCTION_API_GET_APPLICATION_INFORMATIONS   "getApplicationInformations"\r
30 #define APPLICATION_FUNCTION_API_GET_APPLICATION_INFORMATION    "getApplicationInformation"\r
31 \r
32 #define APPLICATION_FUNCTION_API_GET_RUNNING_APPLICATION_CONTEXTS       "getRunningApplicationContexts"\r
33 #define APPLICATION_FUNCTION_API_GET_CURRENT_APPLICATION_CONTEXT        "getCurrentApplicationContext"\r
34 \r
35 #define APPLICATION_FUNCTION_API_ADD_APPLICATION_INFORMATION_EVENT_LISTENER                     "addApplicationInformationEventListener"\r
36 #define APPLICATION_FUNCTION_API_REMOVE_APPLICATION_INFORMATION_EVENT_LISTENER          "removeApplicationInformationEventListener"\r
37 \r
38 #define APPLICATION_FUNCTION_API_LAUNCH_SERVICE                         "launchService"\r
39 #define APPLICATION_FUNCTION_API_GET_APPLICATION_SERVICE        "getApplicationService"\r
40 \r
41 namespace TizenApis {\r
42 namespace Tizen1_0 {\r
43 namespace Application {\r
44 \r
45 DECLARE_FUNCTION_GETTER(Application);\r
46 \r
47 #define APPLICATION_CHECK_ACCESS(globalContext, functionName)                     \\r
48     aceCheckAccess<AceFunctionGetter, DefaultArgsVerifier<> >(                \\r
49         globalContext,                     \\r
50         getApplicationFunctionData,           \\r
51         functionName)\r
52 }\r
53 }\r
54 }\r
55 #endif\r
56 \r