tizen 2.0 merge
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-call-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_CALL_KEYS_H__
23 #define __VCONF_INTERNAL_CALL_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-call-keys.h
29  * @defgroup    vconf_internal_call_key Definitions of internal shared Keys for call
30  * @ingroup     vconf_internal_key
31  * @author      sungjoon.won@samsung.com
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for call \n
34  */
35
36 /* ========================== Call Keys & Values ============================ */
37 /**
38  * @addtogroup vconf_internal_call_key
39  * @{
40  * @brief Call Keys & Values\n
41  *        Maintainer : sungjoon.won@samsung.com
42  */
43
44 /**
45  * @brief Current call status
46  *
47  * VCONFKEY_CALL_OFF : No call connected \n
48  * VCONFKEY_CALL_VOICE_CONNECTING : Voice call is connecting \n
49  * VCONFKEY_CALL_VOICE_ACTIVE : Voice call is connected \n
50  * VCONFKEY_CALL_VIDEO_CONNECTING : Video call is connecting \n
51  * VCONFKEY_CALL_VIDEO_ACTIVE : Video call is connecting \n
52  */
53 #define VCONFKEY_CALL_STATE            "memory/call/state"
54 enum {
55         /** No call connected */
56         VCONFKEY_CALL_OFF = 0x00,
57         /** Voice call is connecting */
58         VCONFKEY_CALL_VOICE_CONNECTING,
59         /** Voice call is connected */
60         VCONFKEY_CALL_VOICE_ACTIVE,
61         /** Video call is connecting */
62         VCONFKEY_CALL_VIDEO_CONNECTING,
63         /** Video call is connecting */
64         VCONFKEY_CALL_VIDEO_ACTIVE,
65         VCONFKEY_CALL_STATE_MAX
66 };
67
68 /**
69  * @brief Call volume level
70  *
71  * Call volume leve : 1~6 \n
72  */
73 #define VCONFKEY_CALL_VOLUME_LEVEL     "db/call/vol_level"
74
75
76 /**
77  * @}
78  */
79
80 #endif  /* __VCONF_INTERNAL_CALL_KEYS_H__ */
81