tizen 2.3 release
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-crash-keys.h
1 /*
2  * vconf-internal-keys
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Juho Son <juho80.son@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_CRASH_KEYS_H__
23 #define __VCONF_INTERNAL_CRASH_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-crash-keys.h
29  * @defgroup    vconf_internal_crash_key Definitions of internal shared Keys for crash
30  * @ingroup     vconf_internal_key
31  * @author      Juho Son <juho80.son@samsung.com>
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for crash \n
34  */
35
36 /* ========================== Crash Keys & Values ============================ */
37 /**
38  * @internal
39  * @addtogroup vconf_internal_crash_key
40  * @{
41  * @brief Crash Keys & Values\n
42  *        Maintainer : Juho Son <juho80.son@samsung.com>
43  */
44
45 #define VCONFKEY_CRASH_PREFIX "db/crash"
46
47 /**
48  * @brief Flag for automatically send when crash occurs.
49  * 0(int): off
50  * 1(int): on
51  */
52 #define VCONFKEY_CRASH_AUTOSEND VCONFKEY_CRASH_PREFIX"/autosend"
53 /**
54  * @brief Flag for automatically close popup.
55  * 0(int): off
56  * 1(int): on
57  */
58 #define VCONFKEY_CRASH_AUTOCLOSE  VCONFKEY_CRASH_PREFIX"/autoclose"
59
60 /**
61  * @brief Flag for showing popup when crash occurs.
62  * 0(int): off
63  * 1(int): on
64  */
65 #define VCONFKEY_CRASH_POPUP VCONFKEY_CRASH_PREFIX"/popup"
66
67 /**
68  * @brief Flag for showing progress in indicator.
69  * 0(int): off
70  * 1(int): on
71  */
72 #define VCONFKEY_CRASH_PROGRESS VCONFKEY_CRASH_PREFIX"/progress"
73
74 /**
75  * @brief Set flag on when crash occured in unable network environment.
76  * 0(int): off
77  * 1(int): on
78  */
79 #define VCONFKEY_CRASH_SENDFLAG VCONFKEY_CRASH_PREFIX"/sendflag"
80
81 /**
82  * @}
83  */
84
85 #endif  /* __VCONF_INTERNAL_CRASH_KEYS_H__ */
86