1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 obt/parse.h for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
24 #include <libxml/parser.h>
29 typedef struct _ObtParseInst ObtParseInst
;
31 typedef void (*ObtParseCallback
)(xmlNodePtr node
, gpointer data
);
33 ObtParseInst
* obt_parse_instance_new();
34 void obt_parse_instance_ref(ObtParseInst
*inst
);
35 void obt_parse_instance_unref(ObtParseInst
*inst
);
37 gboolean
obt_parse_load_file(ObtParseInst
*inst
,
39 const gchar
*root_node
);
40 gboolean
obt_parse_load_config_file(ObtParseInst
*inst
,
42 const gchar
*filename
,
43 const gchar
*root_node
);
44 gboolean
obt_parse_load_data_file(ObtParseInst
*inst
,
46 const gchar
*filename
,
47 const gchar
*root_node
);
48 gboolean
obt_parse_load_theme_file(ObtParseInst
*inst
,
51 const gchar
*filename
,
52 const gchar
*root_node
);
53 gboolean
obt_parse_load_mem(ObtParseInst
*inst
,
54 gpointer data
, guint len
, const gchar
*root_node
);
56 xmlDocPtr
obt_parse_doc(ObtParseInst
*inst
);
57 xmlNodePtr
obt_parse_root(ObtParseInst
*inst
);
59 void obt_parse_close(ObtParseInst
*inst
);
61 void obt_parse_register(ObtParseInst
*inst
, const gchar
*tag
,
62 ObtParseCallback func
, gpointer data
);
63 void obt_parse_tree(ObtParseInst
*i
, xmlNodePtr node
);
64 void obt_parse_tree_from_root(ObtParseInst
*i
);
69 xmlNodePtr
obt_parse_find_node(xmlNodePtr node
, const gchar
*name
);
71 gboolean
obt_parse_node_contains (xmlNodePtr node
, const gchar
*val
);
72 gchar
*obt_parse_node_string (xmlNodePtr node
);
73 gint
obt_parse_node_int (xmlNodePtr node
);
74 gboolean
obt_parse_node_bool (xmlNodePtr node
);
76 gboolean
obt_parse_attr_contains (xmlNodePtr node
, const gchar
*name
,
78 gboolean
obt_parse_attr_string (xmlNodePtr node
, const gchar
*name
,
80 gboolean
obt_parse_attr_int (xmlNodePtr node
, const gchar
*name
,
82 gboolean
obt_parse_attr_bool (xmlNodePtr node
, const gchar
*name
,