tizen 2.0 merge
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-testmode-keys.h
1 /*
2  * vconf-internal-keys
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hakjoo Ko <hakjoo.ko@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __VCONF_INTERNAL_TESTMODE_KEYS_H__
23 #define __VCONF_INTERNAL_TESTMODE_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-testmode-keys.h
29  * @defgroup    vconf_internal_testmode_key Definitions of internal shared Keys for Testmode
30  * @ingroup     vconf_internal_key
31  * @author      Inho Oh <inho48.oh@samsung.com>
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for Testmode \n
34  */
35
36 /* ========================== Testmode Keys & Values ============================ */
37 /**
38  * @addtogroup vconf_internal_testmode_key
39  * @{
40  * @brief Testmode Keys & Values\n
41  *        Maintainer : Inho Oh <inho48.oh@samsung.com>
42  */
43
44 #define VCONFKEY_TESTMODE_PREFIX                    "db/testmode"
45
46 /**
47  * @brief Auto answer flag
48  *
49  * 0: Auto answer Off \n
50  * 1: Auto answer On \n
51  */
52 #define VCONFKEY_TESTMODE_AUTO_ANSWER               VCONFKEY_TESTMODE_PREFIX"/auto_answer"
53 enum {
54         VCONFKEY_TESTMODE_OFF = 0,
55         VCONFKEY_TESTMODE_ON
56 };
57
58 /**
59  * @brief Video call Camera Setting
60  *
61  * VCONFKEY_TESTMODE_CAM_FRONT: Front camera \n
62  * VCONFKEY_TESTMODE_CAM_EXTERNAL: External camera \n
63  */
64 #define VCONFKEY_TESTMODE_VT_CAM_SETTING            VCONFKEY_TESTMODE_PREFIX"/vt_cam_setting"
65 enum {
66         VCONFKEY_TESTMODE_CAM_FRONT = 0,
67         VCONFKEY_TESTMODE_CAM_EXTERNAL,
68         VCONFKEY_TESTMODE_CAM_MAX
69 };
70
71 /**
72  * @brief Power off popup Setting
73  *
74  * type : bool
75  * VCONFKEY_TESTMODE_POWER_OFF_POPUP_ENABLE: Enable to shutdown with popup
76  * VCONFKEY_TESTMODE_POWER_OFF_POPUP_DISABLE: Enable to shutdown without popup
77  */
78 #define VCONFKEY_TESTMODE_POWER_OFF_POPUP            VCONFKEY_TESTMODE_PREFIX"/pwr_off_popup"
79 enum {
80         VCONFKEY_TESTMODE_POWER_OFF_POPUP_ENABLE = 0,
81         VCONFKEY_TESTMODE_POWER_OFF_POPUP_DISABLE
82 };
83
84 /**
85  * @brief Low battery popup Setting
86  *
87  * type : bool
88  * VCONFKEY_TESTMODE_LOW_BATT_POPUP_ENABLE: Enable to low battery popup
89  * VCONFKEY_TESTMODE_LOW_BATT_POPUP_DISABLE: Disable to low battery popup
90  */
91 #define VCONFKEY_TESTMODE_LOW_BATT_POPUP            VCONFKEY_TESTMODE_PREFIX"/low_batt_popup"
92 enum {
93         VCONFKEY_TESTMODE_LOW_BATT_POPUP_ENABLE = 0,
94         VCONFKEY_TESTMODE_LOW_BATT_POPUP_DISABLE
95 };
96
97
98 /**
99  * @}
100  */
101
102 #endif  /* __VCONF_INTERNAL_TESTMODE_KEYS_H__ */
103