mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
9aabe954c0
Work on margins etc., clean up many parts of layout code. svn path=/import/netsurf/; revision=534
23 lines
716 B
C
23 lines
716 B
C
/*
|
|
* 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>
|
|
*/
|
|
|
|
/** \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).
|
|
*/
|
|
|
|
#ifndef _NETSURF_RENDER_LAYOUT_H_
|
|
#define _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
void layout_document(struct box *box, int width);
|
|
void layout_block(struct box *box, struct box *cont, int cx, int cy);
|
|
|
|
#endif
|