tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / DEPRACATED / AppLauncher / ApplicationTypes.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file        ApplauncherFactory.h
18  * @author      Lukasz Marek (l.marek@samsung.com)
19  * @version     0.1
20  */
21
22 #ifndef _ABSTRACT_LAYER_APPLICATION_TYPES_H_
23 #define _ABSTRACT_LAYER_APPLICATION_TYPES_H_
24
25 namespace WrtPlugins {
26 namespace Api {
27 namespace AppLauncher {
28 typedef enum
29 {
30     APPLICATION_TYPE_UNDEFINED,
31     APPLICATION_TYPE_ALARM,
32     APPLICATION_TYPE_BROWSER,
33     APPLICATION_TYPE_CALCULATOR,
34     APPLICATION_TYPE_CALENDAR,
35     APPLICATION_TYPE_CAMERA,
36     APPLICATION_TYPE_CONTACTS,
37     APPLICATION_TYPE_FILES,
38     APPLICATION_TYPE_GAMES,
39     APPLICATION_TYPE_MAIL,
40     APPLICATION_TYPE_MEDIAPLAYER,
41     APPLICATION_TYPE_MESSAGING,
42     APPLICATION_TYPE_PHONECALL,
43     APPLICATION_TYPE_PICTURES,
44     APPLICATION_TYPE_PROG_MANAGER,
45     APPLICATION_TYPE_SETTINGS,
46     APPLICATION_TYPE_TASKS,
47     APPLICATION_TYPE_WIDGET_MANAGER
48 } ApplicationType;
49
50 typedef enum
51 {
52     APPLICATION_URI_TYPE_UNDEFINED,
53     APPLICATION_URI_TYPE_HTTP,
54     APPLICATION_URI_TYPE_HTTPS,
55     APPLICATION_URI_TYPE_TEL,
56     APPLICATION_URI_TYPE_MAILTO,
57     APPLICATION_URI_TYPE_SMS,
58     APPLICATION_URI_TYPE_FILE,
59     APPLICATION_URI_TYPE_APPLICATION_BY_NAME
60 } ApplicationUriType;
61 }
62 }
63 }
64
65 #endif /* _ABSTRACT_LAYER_APPLICATION_TYPES_H_ */