summaryrefslogtreecommitdiff
path: root/libyelp/yelp-info-parser.h
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2010-04-26 18:02:32 -0500
committerShaun McCance <shaunm@gnome.org>2010-04-26 18:02:32 -0500
commit04c47abd3669dd5522091e9cfed4466183c4c5ef (patch)
tree488998e2fbf1cd834ad8008cc0746cd70ff57a9e /libyelp/yelp-info-parser.h
parentc871647433816c205541ba9c053c107fc284fcb1 (diff)
downloadyelp-04c47abd3669dd5522091e9cfed4466183c4c5ef.tar.gz
[libyelp] Adding info documents; still a few problems, but it mostly works
Diffstat (limited to 'libyelp/yelp-info-parser.h')
-rw-r--r--libyelp/yelp-info-parser.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/libyelp/yelp-info-parser.h b/libyelp/yelp-info-parser.h
new file mode 100644
index 00000000..d338a59a
--- /dev/null
+++ b/libyelp/yelp-info-parser.h
@@ -0,0 +1,41 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Copyright (C) 2004, Davyd Madeley
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Davyd Madeley <davyd@madeley.id.au>
+ */
+
+#ifndef __YELP_INFO_PARSER_H__
+#define __YELP_INFO_PARSER_H__
+
+#include <glib.h>
+#include <gtk/gtk.h>
+#include <libxml/tree.h>
+
+enum {
+ INFO_PARSER_COLUMN_PAGE_NO,
+ INFO_PARSER_COLUMN_PAGE_NAME,
+ INFO_PARSER_COLUMN_PAGE_CONTENT,
+ INFO_PARSER_N_COLUMNS
+};
+
+
+GtkTreeStore *yelp_info_parser_parse_file (char *file);
+xmlDocPtr yelp_info_parser_parse_tree (GtkTreeStore *tree);
+
+#endif /* __YELP_INFO_PARSER_H__ */