summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-07-26 13:53:42 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-07-26 13:53:42 +0000
commit16b92d1613e245919743be5f168abe77712ec84b (patch)
tree5f2516ecf29989bd4fffeb56ef6b4a02410ec8c1 /render
parentd97e99b02b40114c584661541805704006ffefee (diff)
downloadnetsurf-16b92d1613e245919743be5f168abe77712ec84b.tar.gz
netsurf-16b92d1613e245919743be5f168abe77712ec84b.tar.bz2
Selection is now subordinate to html and text content types, and disassociated from browser windows. Note: search currently uses hlcache_handle_get_content() to go from bw to h to get at c for search highlighting via selection.
svn path=/trunk/netsurf/; revision=12626
Diffstat (limited to 'render')
-rw-r--r--render/html.c21
-rw-r--r--render/html_internal.h2
-rw-r--r--render/textplain.c111
-rw-r--r--render/textplain.h16
4 files changed, 84 insertions, 66 deletions
diff --git a/render/html.c b/render/html.c
index 5284f53c2..00db1e541 100644
--- a/render/html.c
+++ b/render/html.c
@@ -258,7 +258,7 @@ nserror html_create_html_data(html_content *c, const http_parameter *params)
c->font_func = &nsfont;
c->scrollbar = NULL;
- selection_prepare(&c->sel);
+ selection_prepare(&c->sel, (struct content *)c, true);
nerror = http_parameter_list_find_item(params, html_charset, &charset);
if (nerror == NSERROR_OK) {
@@ -2040,7 +2040,6 @@ void html_open(struct content *c, struct browser_window *bw,
/* text selection */
selection_init(&html->sel, html->layout);
- selection_set_browser_window(&html->sel, bw);
for (object = html->object_list; object != NULL; object = next) {
next = object->next;
@@ -2068,8 +2067,6 @@ void html_close(struct content *c)
html_content *html = (html_content *) c;
struct content_html_object *object, *next;
- selection_set_browser_window(&html->sel, NULL);
-
html->bw = NULL;
for (object = html->object_list; object != NULL; object = next) {
@@ -2367,3 +2364,19 @@ content_type html_content_type(lwc_string *mime_type)
return CONTENT_HTML;
}
+/**
+ * Get the browser window containing an HTML content
+ *
+ * \param c HTML content
+ * \return the browser window
+ */
+struct browser_window *html_get_browser_window(struct content *c)
+{
+ html_content *html = (html_content *) c;
+
+ assert(c != NULL);
+ assert(c->handler == &html_content_handler);
+
+ return html->bw;
+}
+
diff --git a/render/html_internal.h b/render/html_internal.h
index 5eaab97b3..3a3e9f528 100644
--- a/render/html_internal.h
+++ b/render/html_internal.h
@@ -111,6 +111,8 @@ void html_set_status(html_content *c, const char *extra);
void html__redraw_a_box(struct content *c, struct box *box);
+struct browser_window *html_get_browser_window(struct content *c);
+
/* in render/html_redraw.c */
bool html_redraw(struct content *c, struct content_redraw_data *data,
const struct rect *clip, const struct redraw_context *ctx);
diff --git a/render/textplain.c b/render/textplain.c
index 58a94c41d..a3b8ea68e 100644
--- a/render/textplain.c
+++ b/render/textplain.c
@@ -292,7 +292,7 @@ nserror textplain_create_internal(textplain_content *c, lwc_string *encoding)
c->formatted_width = 0;
c->bw = NULL;
- selection_prepare(&c->sel);
+ selection_prepare(&c->sel, (struct content *)c, false);
return NSERROR_OK;
@@ -623,7 +623,6 @@ void textplain_mouse_track(struct content *c, struct browser_window *bw,
browser_mouse_state mouse, int x, int y)
{
textplain_content *text = (textplain_content *) c;
- hlcache_handle *h = bw->current_content;
if (bw->drag_type == DRAGGING_SELECTION && !mouse) {
int dir = -1;
@@ -632,7 +631,7 @@ void textplain_mouse_track(struct content *c, struct browser_window *bw,
if (selection_dragging_start(&text->sel))
dir = 1;
- idx = textplain_offset_from_coords(h, x, y, dir);
+ idx = textplain_offset_from_coords(c, x, y, dir);
selection_track(&text->sel, mouse, idx);
browser_window_set_drag_type(bw, DRAGGING_NONE);
@@ -641,13 +640,12 @@ void textplain_mouse_track(struct content *c, struct browser_window *bw,
switch (bw->drag_type) {
case DRAGGING_SELECTION: {
- hlcache_handle *h = bw->current_content;
int dir = -1;
size_t idx;
if (selection_dragging_start(&text->sel)) dir = 1;
- idx = textplain_offset_from_coords(h, x, y, dir);
+ idx = textplain_offset_from_coords(c, x, y, dir);
selection_track(&text->sel, mouse, idx);
}
break;
@@ -673,7 +671,6 @@ void textplain_mouse_action(struct content *c, struct browser_window *bw,
browser_mouse_state mouse, int x, int y)
{
textplain_content *text = (textplain_content *) c;
- hlcache_handle *h = bw->current_content;
gui_pointer_shape pointer = GUI_POINTER_DEFAULT;
const char *status = 0;
size_t idx;
@@ -681,7 +678,7 @@ void textplain_mouse_action(struct content *c, struct browser_window *bw,
browser_window_set_drag_type(bw, DRAGGING_NONE);
- idx = textplain_offset_from_coords(h, x, y, dir);
+ idx = textplain_offset_from_coords(c, x, y, dir);
if (selection_click(&text->sel, mouse, idx)) {
if (selection_dragging(&text->sel)) {
@@ -689,14 +686,14 @@ void textplain_mouse_action(struct content *c, struct browser_window *bw,
status = messages_get("Selecting");
}
else
- status = content_get_status_message(h);
+ status = content__get_status_message(c);
}
else {
if (bw->loading_content)
status = content_get_status_message(
bw->loading_content);
else
- status = content_get_status_message(h);
+ status = content__get_status_message(c);
if (mouse & (BROWSER_MOUSE_DRAG_1 | BROWSER_MOUSE_DRAG_2)) {
browser_window_page_drag_start(bw, x, y);
@@ -867,7 +864,6 @@ void textplain_open(struct content *c, struct browser_window *bw,
text->bw = bw;
/* text selection */
- selection_set_browser_window(&text->sel, bw);
selection_init(&text->sel, NULL);
}
@@ -880,8 +876,6 @@ void textplain_close(struct content *c)
{
textplain_content *text = (textplain_content *) c;
- selection_set_browser_window(&text->sel, NULL);
-
text->bw = NULL;
}
@@ -903,14 +897,13 @@ struct selection *textplain_get_selection(struct content *c)
* \param h Content to retrieve line count from
* \return Number of lines
*/
-unsigned long textplain_line_count(hlcache_handle *h)
+unsigned long textplain_line_count(struct content *c)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
assert(c != NULL);
- return c->physical_line_count;
+ return text->physical_line_count;
}
/**
@@ -919,14 +912,13 @@ unsigned long textplain_line_count(hlcache_handle *h)
* \param h Content to retrieve size of
* \return Size, in bytes, of data
*/
-size_t textplain_size(hlcache_handle *h)
+size_t textplain_size(struct content *c)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
assert(c != NULL);
- return c->utf8_data_size;
+ return text->utf8_data_size;
}
/**
@@ -942,10 +934,9 @@ size_t textplain_size(hlcache_handle *h)
* \return byte offset of character containing (or nearest to) point
*/
-size_t textplain_offset_from_coords(hlcache_handle *h, int x, int y, int dir)
+size_t textplain_offset_from_coords(struct content *c, int x, int y, int dir)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *textc = (textplain_content *) c;
float line_height = textplain_line_height();
struct textplain_line *line;
const char *text;
@@ -958,7 +949,7 @@ size_t textplain_offset_from_coords(hlcache_handle *h, int x, int y, int dir)
y = (int)((float)(y - MARGIN) / line_height);
x -= MARGIN;
- nlines = c->physical_line_count;
+ nlines = textc->physical_line_count;
if (!nlines)
return 0;
@@ -966,8 +957,8 @@ size_t textplain_offset_from_coords(hlcache_handle *h, int x, int y, int dir)
else if ((unsigned)y >= nlines)
y = nlines - 1;
- line = &c->physical_line[y];
- text = c->utf8_data + line->start;
+ line = &textc->physical_line[y];
+ text = textc->utf8_data + line->start;
length = line->length;
idx = 0;
@@ -1016,25 +1007,24 @@ size_t textplain_offset_from_coords(hlcache_handle *h, int x, int y, int dir)
* Given a byte offset within the text, return the line number
* of the line containing that offset (or -1 if offset invalid)
*
- * \param h content of type CONTENT_TEXTPLAIN
+ * \param c content of type CONTENT_TEXTPLAIN
* \param offset byte offset within textual representation
* \return line number, or -1 if offset invalid (larger than size)
*/
-int textplain_find_line(hlcache_handle *h, unsigned offset)
+int textplain_find_line(struct content *c, unsigned offset)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
struct textplain_line *line;
int nlines;
int lineno = 0;
assert(c != NULL);
- line = c->physical_line;
- nlines = c->physical_line_count;
+ line = text->physical_line;
+ nlines = text->physical_line_count;
- if (offset > c->utf8_data_size)
+ if (offset > text->utf8_data_size)
return -1;
/* \todo - implement binary search here */
@@ -1097,11 +1087,10 @@ int textplain_coord_from_offset(const char *text, size_t offset, size_t length)
* \param r rectangle to be completed
*/
-void textplain_coords_from_range(hlcache_handle *h, unsigned start,
+void textplain_coords_from_range(struct content *c, unsigned start,
unsigned end, struct rect *r)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
float line_height = textplain_line_height();
char *utf8_data;
struct textplain_line *line;
@@ -1110,14 +1099,14 @@ void textplain_coords_from_range(hlcache_handle *h, unsigned start,
assert(c != NULL);
assert(start <= end);
- assert(end <= c->utf8_data_size);
+ assert(end <= text->utf8_data_size);
- utf8_data = c->utf8_data;
- nlines = c->physical_line_count;
- line = c->physical_line;
+ utf8_data = text->utf8_data;
+ nlines = text->physical_line_count;
+ line = text->physical_line;
/* find start */
- lineno = textplain_find_line(h, start);
+ lineno = textplain_find_line(c, start);
r->y0 = (int)(MARGIN + lineno * line_height);
@@ -1126,10 +1115,10 @@ void textplain_coords_from_range(hlcache_handle *h, unsigned start,
forwards most of the time */
/* find end */
- lineno = textplain_find_line(h, end);
+ lineno = textplain_find_line(c, end);
r->x0 = 0;
- r->x1 = c->formatted_width;
+ r->x1 = text->formatted_width;
}
else {
/* single line */
@@ -1156,22 +1145,21 @@ void textplain_coords_from_range(hlcache_handle *h, unsigned start,
* \return pointer to text, or NULL if invalid line number
*/
-char *textplain_get_line(hlcache_handle *h, unsigned lineno,
+char *textplain_get_line(struct content *c, unsigned lineno,
size_t *poffset, size_t *plen)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
struct textplain_line *line;
assert(c != NULL);
- if (lineno >= c->physical_line_count)
+ if (lineno >= text->physical_line_count)
return NULL;
- line = &c->physical_line[lineno];
+ line = &text->physical_line[lineno];
*poffset = line->start;
*plen = line->length;
- return c->utf8_data + line->start;
+ return text->utf8_data + line->start;
}
@@ -1187,16 +1175,15 @@ char *textplain_get_line(hlcache_handle *h, unsigned lineno,
* \return pointer to text, or NULL if no text
*/
-char *textplain_get_raw_data(hlcache_handle *h, unsigned start, unsigned end,
+char *textplain_get_raw_data(struct content *c, unsigned start, unsigned end,
size_t *plen)
{
- textplain_content *c =
- (textplain_content *) hlcache_handle_get_content(h);
+ textplain_content *text = (textplain_content *) c;
size_t utf8_size;
assert(c != NULL);
- utf8_size = c->utf8_data_size;
+ utf8_size = text->utf8_data_size;
/* any text at all? */
if (!utf8_size) return NULL;
@@ -1207,7 +1194,7 @@ char *textplain_get_raw_data(hlcache_handle *h, unsigned start, unsigned end,
*plen = end - start;
- return c->utf8_data + start;
+ return text->utf8_data + start;
}
/**
@@ -1224,3 +1211,19 @@ float textplain_line_height(void)
INTTOFIX((textplain_style.size / FONT_SIZE_SCALE))))), F_72));
}
+/**
+ * Get the browser window containing a textplain content
+ *
+ * \param c text/plain content
+ * \return the browser window
+ */
+struct browser_window *textplain_get_browser_window(struct content *c)
+{
+ textplain_content *text = (textplain_content *) c;
+
+ assert(c != NULL);
+ assert(c->handler == &textplain_content_handler);
+
+ return text->bw;
+}
+
diff --git a/render/textplain.h b/render/textplain.h
index 66e4e83ee..75e84b114 100644
--- a/render/textplain.h
+++ b/render/textplain.h
@@ -36,17 +36,17 @@ nserror textplain_init(void);
void textplain_fini(void);
/* access to lines for text selection and searching */
-unsigned long textplain_line_count(struct hlcache_handle *h);
-size_t textplain_size(struct hlcache_handle *h);
+unsigned long textplain_line_count(struct content *c);
+size_t textplain_size(struct content *c);
-size_t textplain_offset_from_coords(struct hlcache_handle *h, int x, int y,
- int dir);
-void textplain_coords_from_range(struct hlcache_handle *h,
+size_t textplain_offset_from_coords(struct content *c, int x, int y, int dir);
+void textplain_coords_from_range(struct content *c,
unsigned start, unsigned end, struct rect *r);
-char *textplain_get_line(struct hlcache_handle *h, unsigned lineno,
+char *textplain_get_line(struct content *c, unsigned lineno,
size_t *poffset, size_t *plen);
-int textplain_find_line(struct hlcache_handle *h, unsigned offset);
-char *textplain_get_raw_data(struct hlcache_handle *h,
+int textplain_find_line(struct content *c, unsigned offset);
+char *textplain_get_raw_data(struct content *c,
unsigned start, unsigned end, size_t *plen);
+struct browser_window *textplain_get_browser_window(struct content *c);
#endif