2008-10-02 18:47:02 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* config :
|
|
|
|
* - parse config file in Panel struct.
|
|
|
|
*
|
|
|
|
* Check COPYING file for Copyright
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2009-01-05 21:01:05 +00:00
|
|
|
// list of background
|
2008-10-02 18:47:02 +00:00
|
|
|
GSList *list_back;
|
|
|
|
|
|
|
|
|
|
|
|
int config_read_file (const char *path);
|
|
|
|
int config_read ();
|
|
|
|
void config_taskbar();
|
|
|
|
void config_finish ();
|
|
|
|
void cleanup_taskbar();
|
|
|
|
void cleanup ();
|
|
|
|
void save_config ();
|
|
|
|
|
|
|
|
#endif
|