|
GnuCash 2.4.99
|
00001 /******************************************************************** 00002 * gnc-html-webkit.h -- display html with gnc special tags * 00003 * Copyright (C) 2009 Phil Longstaff <plongstaff@rogers.com> * 00004 * * 00005 * This program is free software; you can redistribute it and/or * 00006 * modify it under the terms of the GNU General Public License as * 00007 * published by the Free Software Foundation; either version 2 of * 00008 * the License, or (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License* 00016 * along with this program; if not, contact: * 00017 * * 00018 * Free Software Foundation Voice: +1-617-542-5942 * 00019 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * 00020 * Boston, MA 02110-1301, USA gnu@gnu.org * 00021 \********************************************************************/ 00022 00023 #ifndef GNC_HTML_WEBKIT_H 00024 #define GNC_HTML_WEBKIT_H 00025 00026 #include <glib-object.h> 00027 #include "gnc-html.h" 00028 00029 G_BEGIN_DECLS 00030 00031 #define GNC_TYPE_HTML_WEBKIT (gnc_html_webkit_get_type()) 00032 #define GNC_HTML_WEBKIT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkit)) 00033 #define GNC_HTML_WEBKIT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkitClass)) 00034 #define GNC_IS_HTML_WEBKIT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GNC_TYPE_HTML_WEBKIT)) 00035 #define GNC_IS_HTML_WEBKIT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE((k), GNC_TYPE_HTML_WEBKIT)) 00036 #define GNC_HTML_WEBKIT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkitClass)) 00037 00038 typedef struct _GncHtmlWebkit GncHtmlWebkit; 00039 typedef struct _GncHtmlWebkitClass GncHtmlWebkitClass; 00040 typedef struct _GncHtmlWebkitPrivate GncHtmlWebkitPrivate; 00041 00042 struct _GncHtmlWebkit 00043 { 00044 GncHtml parent_instance; 00045 00046 /*< private >*/ 00047 GncHtmlWebkitPrivate* priv; 00048 }; 00049 00050 struct _GncHtmlWebkitClass 00051 { 00052 GncHtmlClass parent_class; 00053 }; 00054 00055 GType gnc_html_webkit_get_type( void ); 00056 00057 GncHtml* gnc_html_webkit_new( void ); 00058 00059 G_END_DECLS 00060 00061 #endif
1.7.4