~ubuntu-branches/debian/experimental/xfce4-panel/experimental

« back to all changes in this revision

Viewing changes to panel/settings.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2008-05-19 08:08:22 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20080519080822-c8ptdv1s8o9r4ou0
Tags: 4.4.2-6
* switch to triggers:
  - debian/postinst: remove xfce-mcs-manager refresh.
  - debian/prerm dropped.
  - debian/control: conflicts against non-triggers-enable xfce4-mcs-manager.
* debian/control: remove useless Conflicts/Replaces against Sarge stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  $Id: settings.h 4331 2005-02-16 20:06:02Z jasper $
2
 
 *  
3
 
 *  Copyright 2002-2004 Jasper Huijsmans (jasper@xfce.org)
4
 
 *
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.
9
 
 *
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.
14
 
 *
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.
18
 
*/
19
 
 
20
 
#ifndef __XFCE_XMLCONFIG_H__
21
 
#define __XFCE_XMLCONFIG_H__
22
 
 
23
 
#include <gmodule.h>
24
 
#include <libxml/tree.h>
25
 
#include <panel/global.h>
26
 
 
27
 
G_MODULE_IMPORT void write_panel_config (void);
28
 
 
29
 
G_MODULE_IMPORT void write_final_panel_config (void);
30
 
  
31
 
G_MODULE_IMPORT void get_global_prefs (void);
32
 
 
33
 
G_MODULE_IMPORT void get_panel_config (void);
34
 
 
35
 
G_MODULE_IMPORT xmlDocPtr xmlconfig;
36
 
 
37
 
#define DATA(node) xmlNodeListGetString(xmlconfig, node->children, 1)
38
 
 
39
 
#endif /* __XFCE_XMLCONFIG_H__ */