summaryrefslogtreecommitdiff
path: root/content/handlers/text/textplain.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-05-23 18:39:25 +0100
committerVincent Sanders <vince@kyllikki.org>2020-05-23 23:00:08 +0100
commit36b9262e1481fc24d302b58f03006e733b2e6d16 (patch)
treea2189e438023c837d8b8949b7c38e54fa143cab1 /content/handlers/text/textplain.h
parent0432d9556187d00fd7f78963afcefc4b7dd71f2a (diff)
downloadnetsurf-36b9262e1481fc24d302b58f03006e733b2e6d16.tar.gz
netsurf-36b9262e1481fc24d302b58f03006e733b2e6d16.tar.bz2
split selection redraw into content handler specific implementations
Diffstat (limited to 'content/handlers/text/textplain.h')
-rw-r--r--content/handlers/text/textplain.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/content/handlers/text/textplain.h b/content/handlers/text/textplain.h
index 716397acc..206c5831e 100644
--- a/content/handlers/text/textplain.h
+++ b/content/handlers/text/textplain.h
@@ -47,19 +47,6 @@ size_t textplain_size(struct content *c);
/**
- * Given a range of byte offsets within a UTF8 textplain content,
- * return a box that fully encloses the text
- *
- * \param[in] c content of type CONTENT_TEXTPLAIN
- * \param[in] start byte offset of start of text range
- * \param[in] end byte offset of end
- * \param[out] r rectangle to be completed
- */
-void textplain_coords_from_range(struct content *c,
- unsigned start, unsigned end, struct rect *r);
-
-
-/**
* Return a pointer to the raw UTF-8 data, as opposed to the reformatted
* text to fit the window width. Thus only hard newlines are preserved
* in the saved/copied text of a selection.