From e65e41e2d6efccba983cd63aadfb10b5b4a935b2 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 23 May 2020 20:38:41 +0100 Subject: move content handler specific selection copying into handlers --- content/content_protected.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'content/content_protected.h') diff --git a/content/content_protected.h b/content/content_protected.h index 9a3654beb..02bc8614d 100644 --- a/content/content_protected.h +++ b/content/content_protected.h @@ -47,6 +47,7 @@ struct browser_window_features; struct textsearch_context; struct box; struct selection; +struct selection_string; typedef struct content_handler content_handler; @@ -112,7 +113,10 @@ struct content_handler { nserror (*textsearch_bounds)(struct content *c, unsigned start_idx, unsigned end_idx, struct box *start_ptr, struct box *end_ptr, struct rect *bounds_out); /** - * cause a region of the content to be marked invalid and hence redraw + * redraw an area of selected text + * + * The defined text selection will cause an area of the + * content to be marked as invalid and hence redrawn. * * \param c The content being redrawn * \param start_idx The start index of the text region to be redrawn @@ -121,6 +125,11 @@ struct content_handler { */ nserror (*textselection_redraw)(struct content *c, unsigned start_idx, unsigned end_idx); + /** + * copy selected text into selection string possibly with formatting + */ + nserror (*textselection_copy)(struct content *c, unsigned start_idx, unsigned end_idx, struct selection_string *selstr); + /** * create a selection object */ -- cgit v1.2.3