2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
2002-05-04 23:57:18 +04:00
|
|
|
*/
|
|
|
|
|
2002-08-12 03:04:02 +04:00
|
|
|
#ifndef _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
#define _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
/**
|
|
|
|
* interface
|
|
|
|
*/
|
|
|
|
|
2002-05-28 03:21:11 +04:00
|
|
|
void layout_document(struct box * box, unsigned long width);
|
2003-09-23 01:55:08 +04:00
|
|
|
void layout_block(struct box * box, unsigned long width, struct box * cont,
|
|
|
|
unsigned long cx, unsigned long cy);
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2002-08-12 03:04:02 +04:00
|
|
|
#endif
|