2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-04 23:57:18 +04:00
|
|
|
*/
|
|
|
|
|
2004-02-11 20:15:36 +03: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-12 03:04:02 +04:00
|
|
|
#ifndef _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
#define _NETSURF_RENDER_LAYOUT_H_
|
|
|
|
|
2004-10-18 01:10:19 +04:00
|
|
|
#define SCROLLBAR_WIDTH 16
|
|
|
|
|
2004-10-23 00:58:11 +04:00
|
|
|
struct box;
|
|
|
|
|
2005-07-02 22:17:51 +04:00
|
|
|
bool layout_document(struct content *content, int width, int height);
|
2005-04-09 13:47:37 +04:00
|
|
|
bool layout_block_context(struct box *block, struct content *content);
|
2004-07-19 18:29:16 +04:00
|
|
|
bool layout_inline_container(struct box *box, int width,
|
2005-04-09 13:47:37 +04:00
|
|
|
struct box *cont, int cx, int cy, struct content *content);
|
2004-10-23 00:58:11 +04:00
|
|
|
void layout_calculate_descendant_bboxes(struct box *box);
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2002-08-12 03:04:02 +04:00
|
|
|
#endif
|