summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2006-05-24 22:55:37 +0000
committerJames Bursa <james@netsurf-browser.org>2006-05-24 22:55:37 +0000
commitdece339528e289dc008d9129f757d717974f975e (patch)
tree912699eb57e455f6809d27557983479a06d97f90
parent581ad55c90102c9ac79a6068f125dcc2d84c3a3f (diff)
downloadnetsurf-dece339528e289dc008d9129f757d717974f975e.tar.gz
netsurf-dece339528e289dc008d9129f757d717974f975e.tar.bz2
Fix box_at_point() for certain cases involving floats (solves unclickable links on Wikipedia). Fix text-selection code that assumed that text boxes would be returned last by box_at_point().
svn path=/trunk/netsurf/; revision=2606
-rw-r--r--desktop/browser.c21
-rw-r--r--render/box.c40
2 files changed, 37 insertions, 24 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index a814e68aa..53717b998 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -830,6 +830,7 @@ void browser_window_mouse_action_html(struct browser_window *bw,
int box_x = 0, box_y = 0;
int gadget_box_x = 0, gadget_box_y = 0;
int scroll_box_x = 0, scroll_box_y = 0;
+ int text_box_x = 0, text_box_y = 0;
struct box *gadget_box = 0;
struct box *scroll_box = 0;
struct box *text_box = 0;
@@ -907,10 +908,16 @@ void browser_window_mouse_action_html(struct browser_window *bw,
scroll_box_y = box_y + box->scroll_y;
}
- if (box->text && !box->object)
+ if (box->text && !box->object) {
text_box = box;
+ text_box_x = box_x;
+ text_box_y = box_y;
+ }
}
+ /* use of box_x, box_y, or content below this point is probably a
+ * mistake; they will refer to the last box returned by box_at_point */
+
if (scroll_box) {
status = browser_window_scrollbar_click(bw, mouse, scroll_box,
scroll_box_x, scroll_box_y,
@@ -984,7 +991,7 @@ void browser_window_mouse_action_html(struct browser_window *bw,
nsfont_position_in_string(text_box->style,
text_box->text,
text_box->length,
- x - box_x,
+ x - text_box_x,
&idx,
&pixel_offset);
@@ -1021,7 +1028,7 @@ void browser_window_mouse_action_html(struct browser_window *bw,
nsfont_position_in_string(text_box->style,
text_box->text,
text_box->length,
- x - box_x,
+ x - text_box_x,
&idx,
&pixel_offset);
@@ -1109,7 +1116,7 @@ void browser_window_mouse_action_html(struct browser_window *bw,
nsfont_position_in_string(text_box->style,
text_box->text,
text_box->length,
- x - box_x,
+ x - text_box_x,
&idx,
&pixel_offset);
@@ -1667,8 +1674,6 @@ void browser_window_redraw_rect(struct browser_window *bw, int x, int y,
if (c) {
union content_msg_data data;
-LOG(("REDRAW %d,%d,%d,%d", x, y, width, height));
-
data.redraw.x = x;
data.redraw.y = y;
data.redraw.width = width;
@@ -2040,8 +2045,10 @@ struct box *browser_window_pick_text_box(struct browser_window *bw,
NULL) {
box = next_box;
- if (box->text && !box->object)
+ if (box->text && !box->object) {
text_box = box;
+ break;
+ }
}
if (!text_box) {
diff --git a/render/box.c b/render/box.c
index 65c15fba3..22ccdd8e3 100644
--- a/render/box.c
+++ b/render/box.c
@@ -18,6 +18,7 @@
#include "netsurf/css/css.h"
#include "netsurf/render/box.h"
#include "netsurf/render/form.h"
+#include "netsurf/utils/log.h"
#include "netsurf/utils/talloc.h"
@@ -303,19 +304,20 @@ struct box *box_at_point(struct box *box, int x, int y,
/* consider floats first, since they will often overlap other boxes */
for (child = box->float_children; child; child = child->next_float) {
if (box_contains_point(child, x - bx, y - by)) {
- *box_x += child->x - child->scroll_x;
- *box_y += child->y - child->scroll_y;
+ *box_x = bx + child->x - child->scroll_x;
+ *box_y = by + child->y - child->scroll_y;
return child;
}
}
+non_float_children:
/* non-float children */
for (child = box->children; child; child = child->next) {
if (box_is_float(child))
continue;
if (box_contains_point(child, x - bx, y - by)) {
- *box_x += child->x - child->scroll_x;
- *box_y += child->y - child->scroll_y;
+ *box_x = bx + child->x - child->scroll_x;
+ *box_y = by + child->y - child->scroll_y;
return child;
}
}
@@ -323,13 +325,11 @@ struct box *box_at_point(struct box *box, int x, int y,
siblings:
/* siblings and siblings of ancestors */
while (box) {
- if (!box_is_float(box)) {
+ if (box_is_float(box)) {
bx -= box->x - box->scroll_x;
by -= box->y - box->scroll_y;
- for (sibling = box->next; sibling;
- sibling = sibling->next) {
- if (box_is_float(sibling))
- continue;
+ for (sibling = box->next_float; sibling;
+ sibling = sibling->next_float) {
if (box_contains_point(sibling,
x - bx, y - by)) {
*box_x = bx + sibling->x -
@@ -339,12 +339,20 @@ siblings:
return sibling;
}
}
- box = box->parent;
+ /* ascend to float's parent */
+ do {
+ box = box->parent;
+ } while (!box->float_children);
+ /* process non-float children of float's parent */
+ goto non_float_children;
+
} else {
bx -= box->x - box->scroll_x;
by -= box->y - box->scroll_y;
- for (sibling = box->next_float; sibling;
- sibling = sibling->next_float) {
+ for (sibling = box->next; sibling;
+ sibling = sibling->next) {
+ if (box_is_float(sibling))
+ continue;
if (box_contains_point(sibling,
x - bx, y - by)) {
*box_x = bx + sibling->x -
@@ -354,9 +362,7 @@ siblings:
return sibling;
}
}
- do {
- box = box->parent;
- } while (!box->float_children);
+ box = box->parent;
}
}
@@ -492,9 +498,9 @@ void box_dump(struct box *box, unsigned int depth)
default: fprintf(stderr, "Unknown box type ");
}
- fprintf(stderr, "ofst %d", box->byte_offset);
if (box->text)
- fprintf(stderr, "'%.*s' ", (int) box->length, box->text);
+ fprintf(stderr, "%u '%.*s' ", box->byte_offset,
+ (int) box->length, box->text);
if (box->space)
fprintf(stderr, "space ");
if (box->object)