aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.h
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r--embed/ephy-embed.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h
index 02d3f3cb6..6f1787222 100644
--- a/embed/ephy-embed.h
+++ b/embed/ephy-embed.h
@@ -192,6 +192,8 @@ struct _EphyEmbedIface
void (* set_zoom) (EphyEmbed *embed,
float zoom);
float (* get_zoom) (EphyEmbed *embed);
+ void (* scroll) (EphyEmbed *embed, int num_lines);
+ void (* page_scroll) (EphyEmbed *embed, int num_pages);
char * (* get_encoding) (EphyEmbed *embed);
gboolean (* has_automatic_encoding) (EphyEmbed *embed);
void (* set_encoding) (EphyEmbed *embed,
@@ -205,6 +207,7 @@ struct _EphyEmbedIface
int page);
gboolean (* has_modified_forms) (EphyEmbed *embed);
void (* close) (EphyEmbed *embed);
+
};
GType ephy_embed_net_state_get_type (void);
@@ -283,6 +286,13 @@ void ephy_embed_set_zoom (EphyEmbed *embed,
float ephy_embed_get_zoom (EphyEmbed *embed);
+/* Scroll */
+void ephy_embed_scroll (EphyEmbed *embed,
+ int num_lines);
+
+void ephy_embed_page_scroll (EphyEmbed *embed,
+ int num_pages);
+
/* Encoding */
char *ephy_embed_get_encoding (EphyEmbed *embed);