2003-06-30 12:44:03 +00: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 19:57:18 +00:00
|
|
|
*/
|
|
|
|
|
2004-02-11 17:15:36 +00:00
|
|
|
/** \file
|
|
|
|
* HTML layout (interface).
|
|
|
|
*
|
|
|
|
* The main interface to the layout code is layout_document(), which takes a
|
|
|
|
* normalized box tree and assigns coordinates and dimensions to the boxes, and
|
|
|
|
* also adds boxes to the tree (eg. when formatting lines of text).
|
|
|
|
*/
|
|
|
|
|
2002-08-11 23:04:02 +00:00
|
|
|
#ifndef _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
#define _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
|
2004-10-17 21:10:19 +00:00
|
|
|
#define SCROLLBAR_WIDTH 16
|
|
|
|
|
2004-10-22 20:58:11 +00:00
|
|
|
struct box;
|
|
|
|
|
2005-07-02 18:17:51 +00:00
|
|
|
bool layout_document(struct content *content, int width, int height);
|
2005-04-09 09:47:37 +00:00
|
|
|
bool layout_block_context(struct box *block, struct content *content);
|
2004-07-19 14:29:16 +00:00
|
|
|
bool layout_inline_container(struct box *box, int width,
|
2005-04-09 09:47:37 +00:00
|
|
|
struct box *cont, int cx, int cy, struct content *content);
|
2004-10-22 20:58:11 +00:00
|
|
|
void layout_calculate_descendant_bboxes(struct box *box);
|
2002-05-04 19:57:18 +00:00
|
|
|
|
2002-08-11 23:04:02 +00:00
|
|
|
#endif
|