summaryrefslogtreecommitdiff
path: root/libview
diff options
context:
space:
mode:
authorrootavish <[email protected]>2014-07-23 22:19:20 +0530
committerrootavish <[email protected]>2014-07-23 22:19:20 +0530
commitdf1fce63dca7bd7ac85c720a357adba0f1b7108a (patch)
treea2510a8f9e9690f1b32b7729974f95764cc8cef7 /libview
parentb219a4a96ed7f38bf3de46bff790b139955bd927 (diff)
downloadatril-df1fce63dca7bd7ac85c720a357adba0f1b7108a.tar.bz2
atril-df1fce63dca7bd7ac85c720a357adba0f1b7108a.tar.xz
Added Zoom control, Window thubnail
Added zoom-in and zoom out capabilities, also re-enabled window thumbnail which I had disabled previously when the thumbnails were not implemented. Still trying to get the document to display, need to make the right changes, also trying to stop the window from entering presentation view, but that does happen and needs to be fixed.
Diffstat (limited to 'libview')
-rw-r--r--libview/ev-web-view.c12
-rw-r--r--libview/ev-web-view.h4
2 files changed, 16 insertions, 0 deletions
diff --git a/libview/ev-web-view.c b/libview/ev-web-view.c
index fbfbad02..aa31751d 100644
--- a/libview/ev-web-view.c
+++ b/libview/ev-web-view.c
@@ -364,4 +364,16 @@ void
ev_web_view_select_all(EvWebView *webview)
{
webkit_web_view_select_all(WEBKIT_WEB_VIEW(webview));
+}
+
+gboolean
+ev_web_view_zoom_in(EvWebView *webview)
+{
+ webkit_web_view_zoom_in(WEBKIT_WEB_VIEW(webview));
+}
+
+gboolean
+ev_web_view_zoom_out(EvWebView *webview)
+{
+ webkit_web_view_zoom_out(WEBKIT_WEB_VIEW(webview));
} \ No newline at end of file
diff --git a/libview/ev-web-view.h b/libview/ev-web-view.h
index eaa2ef3f..ac957f5d 100644
--- a/libview/ev-web-view.h
+++ b/libview/ev-web-view.h
@@ -66,6 +66,10 @@ void ev_web_view_find_previous (EvWebView *webview);
gboolean ev_web_view_get_has_selection (EvWebView *webview);
void ev_web_view_select_all (EvWebView *webview);
+/*Zoom control*/
+gboolean ev_web_view_zoom_in (EvWebView *webview);
+gboolean ev_web_view_zoom_out (EvWebView *webview);
+
G_END_DECLS
#endif /* __EV_WEB_VIEW_H__ */