aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2009-01-23 10:20:34 +0800
committerXan Lopez <xan@src.gnome.org>2009-01-23 10:20:34 +0800
commit56d9b5384def19d10010096a6397e6a5e57b46d0 (patch)
treed569969e3d443b1a2bee4d6c5a0d9f72bd1bdd62 /embed/ephy-embed.c
parent61a9d4ce3f9f73f18de3243771ec5dcba70bed8f (diff)
downloadgsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar.gz
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar.bz2
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar.lz
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar.xz
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.tar.zst
gsoc2013-epiphany-56d9b5384def19d10010096a6397e6a5e57b46d0.zip
Implement scrolling in EphyFindToolbar.
svn path=/trunk/; revision=8720
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r--embed/ephy-embed.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 53cebb5c3..140d7cb98 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -503,59 +503,6 @@ ephy_embed_get_js_status (EphyEmbed *embed)
}
/**
- * ephy_embed_scroll:
- * @embed: an #EphyEmbed
- * @num_lines: The number of lines to scroll by
- *
- * Scrolls the view by lines. Positive numbers scroll down, negative
- * numbers scroll up
- *
- **/
-void
-ephy_embed_scroll (EphyEmbed *embed,
- int num_lines)
-{
- EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- iface->scroll_lines (embed, num_lines);
-}
-
-/**
- * ephy_embed_page_scroll:
- * @embed: an #EphyEmbed
- * @num_lines: The number of pages to scroll by
- *
- * Scrolls the view by pages. Positive numbers scroll down, negative
- * numbers scroll up
- *
- **/
-void
-ephy_embed_page_scroll (EphyEmbed *embed,
- int num_pages)
-{
- EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- iface->scroll_pages (embed, num_pages);
-}
-
-/**
- * ephy_embed_scroll_pixels:
- * @embed: an #EphyEmbed
- * @dx: the number of pixels to scroll in X direction
- * @dy: the number of pixels to scroll in Y direction
- *
- * Scrolls the view by pixels. Positive numbers scroll down resp. right,
- * negative numbers scroll up resp. left.
- *
- **/
-void
-ephy_embed_scroll_pixels (EphyEmbed *embed,
- int dx,
- int dy)
-{
- EphyEmbedIface *iface = EPHY_EMBED_GET_IFACE (embed);
- iface->scroll_pixels (embed, dx, dy);
-}
-
-/**
* ephy_embed_shistory_copy:
* @source: the #EphyEmbed to copy the history from
* @dest: the #EphyEmbed to copy the history to