1 /* gmarkup.h - Simple XML-like string parser/writer
3 * Copyright 2000 Red Hat, Inc.
5 * GLib is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * GLib 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with GLib; see the file COPYING.LIB. If not,
17 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __G_MARKUP_H__
22 #define __G_MARKUP_H__
26 #include <glib/gerror.h>
32 G_MARKUP_ERROR_BAD_UTF8,
35 /* These three are primarily intended for specific GMarkupParser
36 * implementations to set.
38 G_MARKUP_ERROR_UNKNOWN_ELEMENT,
39 G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
40 G_MARKUP_ERROR_INVALID_CONTENT
43 #define G_MARKUP_ERROR g_markup_error_quark ()
45 GQuark g_markup_error_quark (void);
49 G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG = 1 << 0,
50 G_MARKUP_TREAT_CDATA_AS_TEXT = 1 << 1
53 typedef struct _GMarkupParseContext GMarkupParseContext;
54 typedef struct _GMarkupParser GMarkupParser;
58 /* Called for open tags <foo bar="baz"> */
59 void (*start_element) (GMarkupParseContext *context,
60 const gchar *element_name,
61 const gchar **attribute_names,
62 const gchar **attribute_values,
66 /* Called for close tags </foo> */
67 void (*end_element) (GMarkupParseContext *context,
68 const gchar *element_name,
72 /* Called for character data */
73 /* text is not nul-terminated */
74 void (*text) (GMarkupParseContext *context,
80 /* Called for strings that should be re-saved verbatim in this same
81 * position, but are not otherwise interpretable. At the moment
82 * this includes comments and processing instructions.
84 /* text is not nul-terminated. */
85 void (*passthrough) (GMarkupParseContext *context,
86 const gchar *passthrough_text,
91 /* Called on error, including one set by other
92 * methods in the vtable. The GError should not be freed.
94 void (*error) (GMarkupParseContext *context,
99 GMarkupParseContext *g_markup_parse_context_new (const GMarkupParser *parser,
100 GMarkupParseFlags flags,
102 GDestroyNotify user_data_dnotify);
103 void g_markup_parse_context_free (GMarkupParseContext *context);
104 gboolean g_markup_parse_context_parse (GMarkupParseContext *context,
109 gboolean g_markup_parse_context_end_parse (GMarkupParseContext *context,
111 G_CONST_RETURN gchar *g_markup_parse_context_get_element (GMarkupParseContext *context);
113 /* For user-constructed error messages, has no precise semantics */
114 void g_markup_parse_context_get_position (GMarkupParseContext *context,
118 /* useful when saving */
119 gchar* g_markup_escape_text (const gchar *text,
122 gchar *g_markup_printf_escaped (const char *format,
123 ...) G_GNUC_PRINTF (1, 2);
124 gchar *g_markup_vprintf_escaped (const char *format,
129 #endif /* __G_MARKUP_H__ */