This provides access to the child web view even if we change
the internal packing of MidoriView.
return pixbuf;
}
+/**
+ * midori_view_get_web_view
+ * @view: a #MidoriView
+ *
+ * Returns: The #WebKitWebView for this view
+ *
+ * Since: 0.2.5
+ **/
+GtkWidget*
+midori_view_get_web_view (MidoriView* view)
+{
+ g_return_val_if_fail (MIDORI_IS_VIEW (view), NULL);
+
+ return view->web_view;
+}
+
static void
thumb_view_load_status_cb (MidoriView* thumb_view,
GParamSpec* pspec,
gint width,
gint height);
+GtkWidget*
+midori_view_get_web_view (MidoriView* view);
+
G_END_DECLS
#endif /* __MIDORI_VIEW_H__ */