summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-08-18 16:46:45 +0000
committerJames Bursa <james@netsurf-browser.org>2002-08-18 16:46:45 +0000
commita21d245091e7f7d6ae6a9e08dc107b9dd495e4fb (patch)
treecb0fa08390479dd43e6622233c5dd6ec857a5c96 /render/box.h
parent12c3ff3d621d9e9eed6283b0730f297cc157b945 (diff)
downloadnetsurf-a21d245091e7f7d6ae6a9e08dc107b9dd495e4fb.tar.gz
netsurf-a21d245091e7f7d6ae6a9e08dc107b9dd495e4fb.tar.bz2
[project @ 2002-08-18 16:46:45 by bursa]
Big changes to xml_to_box(), table row groups. svn path=/import/netsurf/; revision=31
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/render/box.h b/render/box.h
index ed4000d86..50b2538fa 100644
--- a/render/box.h
+++ b/render/box.h
@@ -1,5 +1,5 @@
/**
- * $Id: box.h,v 1.6 2002/08/11 23:01:02 bursa Exp $
+ * $Id: box.h,v 1.7 2002/08/18 16:46:45 bursa Exp $
*/
#ifndef _NETSURF_RENDER_BOX_H_
@@ -15,6 +15,7 @@
typedef enum {
BOX_BLOCK, BOX_INLINE_CONTAINER, BOX_INLINE,
BOX_TABLE, BOX_TABLE_ROW, BOX_TABLE_CELL,
+ BOX_TABLE_ROW_GROUP,
BOX_FLOAT_LEFT, BOX_FLOAT_RIGHT
} box_type;
@@ -39,7 +40,7 @@ struct box {
* interface
*/
-struct box * xml_to_box(xmlNode * n, struct css_style * parent_style, struct css_stylesheet * stylesheet,
+void xml_to_box(xmlNode * n, struct css_style * parent_style, struct css_stylesheet * stylesheet,
struct css_selector ** selector, unsigned int depth,
struct box * parent, struct box * inline_container,
const char *href);