GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
gnc-html-webkit.h
1 /********************************************************************
2  * gnc-html-webkit.h -- display html with gnc special tags *
3  * Copyright (C) 2009 Phil Longstaff <[email protected]> *
4  * *
5  * This program is free software; you can redistribute it and/or *
6  * modify it under the terms of the GNU General Public License as *
7  * published by the Free Software Foundation; either version 2 of *
8  * the License, or (at your option) any later version. *
9  * *
10  * This program 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 *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License*
16  * along with this program; if not, contact: *
17  * *
18  * Free Software Foundation Voice: +1-617-542-5942 *
19  * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
20  * Boston, MA 02110-1301, USA [email protected] *
21 \********************************************************************/
22 
23 #ifndef GNC_HTML_WEBKIT_H
24 #define GNC_HTML_WEBKIT_H
25 
26 #include <glib-object.h>
27 #include "gnc-html.h"
28 
29 G_BEGIN_DECLS
30 
31 #define GNC_TYPE_HTML_WEBKIT (gnc_html_webkit_get_type())
32 #define GNC_HTML_WEBKIT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkit))
33 #define GNC_HTML_WEBKIT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkitClass))
34 #define GNC_IS_HTML_WEBKIT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GNC_TYPE_HTML_WEBKIT))
35 #define GNC_IS_HTML_WEBKIT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE((k), GNC_TYPE_HTML_WEBKIT))
36 #define GNC_HTML_WEBKIT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GNC_TYPE_HTML_WEBKIT, GncHtmlWebkitClass))
37 
38 typedef struct _GncHtmlWebkit GncHtmlWebkit;
41 
43 {
44  GncHtml parent_instance;
45 
46  /*< private >*/
48 };
49 
51 {
52  GncHtmlClass parent_class;
53 };
54 
55 GType gnc_html_webkit_get_type( void );
56 
57 GncHtml* gnc_html_webkit_new( void );
58 
59 G_END_DECLS
60 
61 #endif