Make midori_view_get_snapshot a public function
This commit is contained in:
parent
8ef3eeaa89
commit
c9dc0c5d55
3 changed files with 21 additions and 11 deletions
|
@ -996,11 +996,6 @@ midori_browser_speed_dial_get_next_free_slot (void)
|
||||||
return slot_id;
|
return slot_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
GdkPixbuf*
|
|
||||||
midori_view_get_snapshot (MidoriView* view,
|
|
||||||
guint width,
|
|
||||||
guint height);
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
midori_browser_add_speed_dial (MidoriBrowser* browser)
|
midori_browser_add_speed_dial (MidoriBrowser* browser)
|
||||||
{
|
{
|
||||||
|
|
|
@ -47,11 +47,6 @@ midori_search_action_get_icon (KatzeNet* net,
|
||||||
static void
|
static void
|
||||||
midori_view_construct_web_view (MidoriView* view);
|
midori_view_construct_web_view (MidoriView* view);
|
||||||
|
|
||||||
GdkPixbuf*
|
|
||||||
midori_view_get_snapshot (MidoriView* view,
|
|
||||||
gint width,
|
|
||||||
gint height);
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
midori_view_item_meta_data_changed (KatzeItem* item,
|
midori_view_item_meta_data_changed (KatzeItem* item,
|
||||||
const gchar* key,
|
const gchar* key,
|
||||||
|
@ -4056,7 +4051,22 @@ midori_view_execute_script (MidoriView* view,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For now this is private API */
|
/**
|
||||||
|
* midori_view_get_snapshot
|
||||||
|
* @view: a #MidoriView
|
||||||
|
* @width: the desired width
|
||||||
|
* @height: the desired height
|
||||||
|
*
|
||||||
|
* Take a snapshot of the view at the given dimensions. The
|
||||||
|
* view has to be mapped on the screen.
|
||||||
|
*
|
||||||
|
* If width and height are negative, the resulting
|
||||||
|
* image is going to be optimized for speed.
|
||||||
|
*
|
||||||
|
* Returns: a newly allocated #GdkPixbuf
|
||||||
|
*
|
||||||
|
* Since: 0.2.1
|
||||||
|
**/
|
||||||
GdkPixbuf*
|
GdkPixbuf*
|
||||||
midori_view_get_snapshot (MidoriView* view,
|
midori_view_get_snapshot (MidoriView* view,
|
||||||
gint width,
|
gint width,
|
||||||
|
|
|
@ -195,6 +195,11 @@ midori_view_execute_script (MidoriView* view,
|
||||||
const gchar* script,
|
const gchar* script,
|
||||||
gchar** exception);
|
gchar** exception);
|
||||||
|
|
||||||
|
GdkPixbuf*
|
||||||
|
midori_view_get_snapshot (MidoriView* view,
|
||||||
|
gint width,
|
||||||
|
gint height);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
#endif /* __MIDORI_VIEW_H__ */
|
#endif /* __MIDORI_VIEW_H__ */
|
||||||
|
|
Loading…
Reference in a new issue