aboutsummaryrefslogtreecommitdiff
path: root/libsylph/html.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-02 07:09:57 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-02 07:09:57 +0000
commitdbb589f057f6500c6f21aa1591fd603870aabdf0 (patch)
tree944cd97b1d6345605e50d17fef18b97e7c6233ad /libsylph/html.h
parent00048a1b5560604e90cd83ceafadfd3156b89e84 (diff)
moved html.[ch] to libsylph.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@540 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/html.h')
-rw-r--r--libsylph/html.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/libsylph/html.h b/libsylph/html.h
new file mode 100644
index 00000000..37f7e11f
--- /dev/null
+++ b/libsylph/html.h
@@ -0,0 +1,87 @@
+/*
+ * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ *
+ * 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.
+ */
+
+#ifndef __HTML_H__
+#define __HTML_H__
+
+#include <glib.h>
+#include <stdio.h>
+
+#include "codeconv.h"
+
+typedef enum
+{
+ HTML_NORMAL,
+ HTML_PAR,
+ HTML_BR,
+ HTML_HR,
+ HTML_HREF,
+ HTML_IMG,
+ HTML_FONT,
+ HTML_PRE,
+ HTML_UNKNOWN,
+ HTML_CONV_FAILED,
+ HTML_ERR,
+ HTML_EOF
+} HTMLState;
+
+typedef struct _HTMLParser HTMLParser;
+typedef struct _HTMLAttr HTMLAttr;
+typedef struct _HTMLTag HTMLTag;
+
+struct _HTMLParser
+{
+ FILE *fp;
+ CodeConverter *conv;
+
+ GHashTable *symbol_table;
+
+ GString *str;
+ GString *buf;
+
+ gchar *bufp;
+
+ HTMLState state;
+
+ gchar *href;
+
+ gboolean newline;
+ gboolean empty_line;
+ gboolean space;
+ gboolean pre;
+};
+
+struct _HTMLAttr
+{
+ gchar *name;
+ gchar *value;
+};
+
+struct _HTMLTag
+{
+ gchar *name;
+ GList *attr;
+};
+
+HTMLParser *html_parser_new (FILE *fp,
+ CodeConverter *conv);
+void html_parser_destroy (HTMLParser *parser);
+const gchar *html_parse (HTMLParser *parser);
+
+#endif /* __HTML_H__ */