tizen 2.3.1 release
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-music-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_MUSIC_KEYS_H__
23 #define __VCONF_INTERNAL_MUSIC_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-music-keys.h
29  * @defgroup    vconf_internal_music_key Definitions of internal shared Keys for Music
30  * @ingroup     vconf_internal_key
31  * @author      hm2007.kim@samsung.com
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for Music \n
34  */
35
36 /* ========================== Music Keys & Values ============================ */
37 /**
38  * @internal
39  * @addtogroup vconf_internal_music_key
40  * @{
41  * @brief Music Keys & Values\n
42  *        Maintainer : hm2007.kim@samsung.com
43  */
44
45 /**
46  * @brief setting value of music player menu
47  *
48  * All menu tab can be selected with OR operation
49  *
50  * SETTING_MUSIC_MENU_ALBUM : show album tab \n
51  * SETTING_MUSIC_MENU_ARTIS : show artists tab \n
52  * SETTING_MUSIC_MENU_GENRE : show genres tab \n
53  * SETTING_MUSIC_MENU_COMPOSER : show composer tab \n
54  * SETTING_MUSIC_MENU_YEAR : show year tab \n
55  * SETTING_MUSIC_MENU_FOLDER : show folder tab
56
57 */
58 #define VCONFKEY_SETAPPL_MUSIC_MENU_VAL_INT VCONFKEY_SETAPPL_PREFIX"/music-player/menu"
59 enum {
60         SETTING_MUSIC_MENU_ALBUM = 0x0001,
61         SETTING_MUSIC_MENU_ARTIST = 0x0002,
62         SETTING_MUSIC_MENU_GENRE = 0x0004,
63         SETTING_MUSIC_MENU_COMPOSER = 0x0008,
64         SETTING_MUSIC_MENU_YEAR = 0x0010,
65         SETTING_MUSIC_MENU_FOLDER = 0x0020
66 };
67
68 /**
69  * @brief The status of music player
70  *
71  * VCONFKEY_MUSIC_OFF : no playing music \n
72  * VCONFKEY_MUSIC_PLAY : playing \n
73  * VCONFKEY_MUSIC_PAUSE : paused \n
74  * VCONFKEY_MUSIC_STOP : stop
75  */
76 #define VCONFKEY_MUSIC_STATE "memory/music/state"
77 enum {
78         VCONFKEY_MUSIC_OFF = 0x00,
79         VCONFKEY_MUSIC_PLAY,
80         VCONFKEY_MUSIC_PAUSE,
81         VCONFKEY_MUSIC_STOP,
82         VCONFKEY_MUSIC_STATE_MAX
83 };
84
85 /**
86  * @brief Albumart path of current playing song
87  *
88  * type : string
89  */
90 #define VCONFKEY_MUSIC_ALBUM_ART "memory/music/album_art"
91
92
93 /**
94  * @}
95  */
96
97 #endif  /* __VCONF_INTERNAL_MUSIC_KEYS_H__ */
98