Initial Import
[profile/ivi/clutter-toys.git] / attic / mallums-magic-browser / scroll-frame.h
1 #ifndef _SCROLL_FRAME
2 #define _SCROLL_FRAME
3
4 #include <glib-object.h>
5 #include <tidy/tidy.h>
6
7 #include <webkit/webkit.h>
8
9 G_BEGIN_DECLS
10
11 #define SCROLL_TYPE_FRAME scroll_frame_get_type ()
12
13 typedef struct _ScrollFramePrivate ScrollFramePrivate;
14
15 #define SCROLL_FRAME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SCROLL_TYPE_FRAME, ScrollFrame))
16
17 typedef struct {
18   TidyFrame parent;
19   ScrollFramePrivate *priv;
20 } ScrollFrame;
21
22 typedef struct {
23   TidyFrameClass parent;
24 } ScrollFrameClass;
25
26 GType scroll_frame_get_type (void);
27
28 void scroll_frame_add_webkit (ScrollFrame   *frame,
29                               WebKitWebView *web_view);
30
31 G_END_DECLS
32
33 #endif