1
/* $Id: settings.h 4331 2005-02-16 20:06:02Z jasper $
3
* Copyright 2002-2004 Jasper Huijsmans (jasper@xfce.org)
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation; either version 2 of the License, or
8
* (at your option) any later version.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
#ifndef __XFCE_XMLCONFIG_H__
21
#define __XFCE_XMLCONFIG_H__
24
#include <libxml/tree.h>
25
#include <panel/global.h>
27
G_MODULE_IMPORT void write_panel_config (void);
29
G_MODULE_IMPORT void write_final_panel_config (void);
31
G_MODULE_IMPORT void get_global_prefs (void);
33
G_MODULE_IMPORT void get_panel_config (void);
35
G_MODULE_IMPORT xmlDocPtr xmlconfig;
37
#define DATA(node) xmlNodeListGetString(xmlconfig, node->children, 1)
39
#endif /* __XFCE_XMLCONFIG_H__ */