diff options
author | rootavish <[email protected]> | 2014-08-06 15:34:02 +0530 |
---|---|---|
committer | rootavish <[email protected]> | 2014-08-06 15:34:02 +0530 |
commit | 56880392a6678ccec12bbec016939597acd49b07 (patch) | |
tree | fd127f796f5127a63f564a5dea82d64f422a9580 /libview/ev-web-view.h | |
parent | 5f3f572777cfcb64a92a4671fb2aff5faa5cefa4 (diff) | |
download | atril-56880392a6678ccec12bbec016939597acd49b07.tar.bz2 atril-56880392a6678ccec12bbec016939597acd49b07.tar.xz |
Searching in epub documents
I added the capability to search through documents. The search is quite buggy, and we'll be taking care of each bug one at a time.
Diffstat (limited to 'libview/ev-web-view.h')
-rw-r--r-- | libview/ev-web-view.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libview/ev-web-view.h b/libview/ev-web-view.h index aa2d5492..751e7381 100644 --- a/libview/ev-web-view.h +++ b/libview/ev-web-view.h @@ -63,11 +63,15 @@ void ev_web_view_handle_link (EvWebView *webview, EvLink* link); /* Searching */ void ev_web_view_find_next (EvWebView *webview); void ev_web_view_find_previous (EvWebView *webview); -void ev_web_view_find_changed (EvWebView *webview, gint page_found_on,EvJobFind *job); -void ev_web_view_find_search_changed (EvWebView *webview); + +void ev_web_view_find_changed (EvWebView *webview, + guint *results, + gchar *text, + gboolean case_sensitive); + +void ev_web_view_find_search_changed (EvWebView *webview,gboolean visible); void ev_web_view_find_cancel (EvWebView *webview); void ev_web_view_find_set_highlight_search (EvWebView *webview,gboolean visible); -void ev_web_view_empty_search (EvWebView *webview); /* Selection */ gboolean ev_web_view_get_has_selection (EvWebView *webview); |