diff options
Diffstat (limited to 'libdocument/ev-document-find.h')
-rw-r--r-- | libdocument/ev-document-find.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libdocument/ev-document-find.h b/libdocument/ev-document-find.h index 7fcf49c7..7fb5d22c 100644 --- a/libdocument/ev-document-find.h +++ b/libdocument/ev-document-find.h @@ -52,6 +52,11 @@ struct _EvDocumentFindInterface EvPage *page, const gchar *text, gboolean case_sensitive); + + gboolean (* check_for_hits)(EvDocumentFind *document_find, + EvPage *page, + const gchar *text, + gboolean case_sensitive); }; GType ev_document_find_get_type (void) G_GNUC_CONST; @@ -60,6 +65,10 @@ GList *ev_document_find_find_text (EvDocumentFind *document_find, const gchar *text, gboolean case_sensitive); +gboolean ev_document_find_check_for_hits(EvDocumentFind *document_find, + EvPage *page, + const gchar *text, + gboolean case_sensitive); G_END_DECLS #endif /* EV_DOCUMENT_FIND_H */ |