Bug fix TIVI-839 ,change the design and permit operation of the music player while...
[profile/ivi/ico-uxf-homescreen.git] / include / home_screen_conf.h
1 /*
2  * Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9 /**
10  * @brief   header file of homescreen configuration
11  *
12  * @date    Feb-15-2013
13  */
14
15 #ifndef _HOME_SCREEN_CONF_H_
16 #define _HOME_SCREEN_CONF_H_
17
18 #include <glib.h>
19 #include "ico_uxf_sysdef.h"
20 #include "ico_uxf_def.h"
21 #include "ico_apf_log.h"
22
23 /*============================================================================*/
24 /* definition                                                                 */
25 /*============================================================================*/
26 #define ICO_HOMESCREEN_CONFIG_FILE "homescreen.conf"
27 #define ICO_ONSCREEN_CONFIG_FILE   "onscreen.conf"
28 #define ICO_STATUSBAR_CONFIG_FILE  "statusbar.conf"
29
30 /*============================================================================*/
31 /* functions                                                                  */
32 /*============================================================================*/
33 extern int initHomeScreenConfig(const char *conf);
34 extern int hs_conf_get_integer(const char *group_name, 
35                      const char *key, int default_value);
36 extern const char *hs_conf_get_string(const char *group_name, 
37                         const char *key, const char *default_value);
38
39 #endif /* _HOME_SCREEN_CONF_H_ */
40