64085faf12bdb616ac969a9876d62878ced1abc1
[claws.git] / src / plugins / litehtml_viewer / lh_widget_wrapped.h
1 #ifndef __LH_WIDGET_WRAPPED_H
2 #define __LH_WIDGET_WRAPPED_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 typedef struct lh_widget lh_widget_wrapped;
9
10 lh_widget_wrapped *lh_widget_new();
11 GtkWidget *lh_widget_get_widget(lh_widget_wrapped *w);
12 void lh_widget_open_html(lh_widget_wrapped *w, const gchar *path);
13 void lh_widget_clear(lh_widget_wrapped *w);
14 void lh_widget_destroy(lh_widget_wrapped *w);
15 void lh_widget_statusbar_push(gchar* msg);
16 void lh_widget_statusbar_pop();
17 void lh_widget_print(lh_widget_wrapped *w);
18
19 #ifdef __cplusplus
20 } /* extern "C" */
21 #endif
22
23 #endif /* __LH_WIDGET_WRAPPED_H */