summaryrefslogtreecommitdiff
path: root/render/search.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-04-30 16:08:26 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-05-02 09:34:01 +0100
commita3394aa77fed59f8bdbe53cf5eb0febf477e7ff1 (patch)
tree5d0934353bd9c50a7881f65fdad1865a1d1eb046 /render/search.h
parent50d7a2288c84e3586ab99e6fc7b41482ac49074e (diff)
downloadnetsurf-a3394aa77fed59f8bdbe53cf5eb0febf477e7ff1.tar.gz
netsurf-a3394aa77fed59f8bdbe53cf5eb0febf477e7ff1.tar.bz2
Put comments for exported functions in header.
Diffstat (limited to 'render/search.h')
-rw-r--r--render/search.h40
1 files changed, 38 insertions, 2 deletions
diff --git a/render/search.h b/render/search.h
index e1f58f2ae..70da31bca 100644
--- a/render/search.h
+++ b/render/search.h
@@ -41,15 +41,51 @@ struct search_callbacks {
void *p; /* private client data */
};
-
+/**
+ * create a search_context
+ *
+ * \param h the hlcache_handle the search_context is connected to
+ * \param callbacks the callbacks to modify appearance according to results
+ * \param p the pointer to send to the callbacks
+ * \return true for success
+ */
struct search_context * search_create_context(struct hlcache_handle *h,
struct search_callbacks callbacks);
+
+/**
+ * Ends the search process, invalidating all state
+ * freeing the list of found boxes
+ */
void search_destroy_context(struct search_context *context);
+
+/**
+ * Begins/continues the search process
+ * Note that this may be called many times for a single search.
+ *
+ * \param bw the browser_window to search in
+ * \param flags the flags forward/back etc
+ * \param string the string to match
+ */
void search_step(struct search_context *context, search_flags_t flags,
const char * string);
-void search_show_all(bool all, struct search_context *context);
+/**
+ * Specifies whether all matches or just the current match should
+ * be highlighted in the search text.
+ */
+void search_show_all(bool all, struct search_context *context);
+/**
+ * Determines whether any portion of the given text box should be
+ * selected because it matches the current search string.
+ *
+ * \param bw browser window
+ * \param start_offset byte offset within text of string to be checked
+ * \param end_offset byte offset within text
+ * \param start_idx byte offset within string of highlight start
+ * \param end_idx byte offset of highlight end
+ * \return true iff part of the box should be highlighted
+ */
bool search_term_highlighted(struct content *c,
unsigned start_offset, unsigned end_offset,
unsigned *start_idx, unsigned *end_idx,