summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/box.h b/render/box.h
index 815a5fcf8..d97406352 100644
--- a/render/box.h
+++ b/render/box.h
@@ -248,5 +248,8 @@ void box_add_child(struct box * parent, struct box * child);
void box_insert_sibling(struct box *box, struct box *new_box);
void box_free(struct box *box);
void box_coords(struct box *box, int *x, int *y);
+struct box *box_at_point(struct box *box, int x, int y,
+ int *box_x, int *box_y,
+ struct content **content);
#endif