summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-10-09 15:22:48 +0000
committerJames Bursa <james@netsurf-browser.org>2003-10-09 15:22:48 +0000
commit65263651e3c8036a631270976a773f3d4497f474 (patch)
tree64a40c515273b5f8f16188917abaccd63d560fca /render/box.h
parentc673e138dc76600fd72a09428a7a36dc4ec390c3 (diff)
downloadnetsurf-65263651e3c8036a631270976a773f3d4497f474.tar.gz
netsurf-65263651e3c8036a631270976a773f3d4497f474.tar.bz2
[project @ 2003-10-09 15:22:48 by bursa]
Implement box_insert_sibling(). svn path=/import/netsurf/; revision=358
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/box.h b/render/box.h
index 2a3b15633..76c9500c9 100644
--- a/render/box.h
+++ b/render/box.h
@@ -177,6 +177,8 @@ void xml_to_box(xmlNode *n, struct content *c);
void box_dump(struct box * box, unsigned int depth);
struct box * box_create(struct css_style * style,
char *href, char *title);
+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, unsigned long *x, unsigned long *y);