summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-10-17 21:10:19 +0000
committerJames Bursa <james@netsurf-browser.org>2004-10-17 21:10:19 +0000
commitfd4e3de0b59841ca59aeeb1a664370d359d096b2 (patch)
tree3c174528b81e4a9189ed6aa88ef35d5238c0882b /render/html.h
parent6db5ad1b73c3a59390d4e060a3752a09ec75ec44 (diff)
downloadnetsurf-fd4e3de0b59841ca59aeeb1a664370d359d096b2.tar.gz
netsurf-fd4e3de0b59841ca59aeeb1a664370d359d096b2.tar.bz2
[project @ 2004-10-17 21:10:19 by bursa]
Move box tree from html.layout->children to html.layout. Work on scrollbars. svn path=/import/netsurf/; revision=1314
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/render/html.h b/render/html.h
index 74b19434c..ec27dc531 100644
--- a/render/html.h
+++ b/render/html.h
@@ -23,8 +23,9 @@
struct box;
struct browser_window;
struct content;
-struct object_params;
struct imagemap;
+struct object_params;
+struct plotters;
/* entries in stylesheet_content */
#define STYLESHEET_BASE 0 /* base style sheet */
@@ -75,6 +76,9 @@ struct content_html_data {
struct browser_window *bw;
};
+/** Render padding and margin box outlines in html_redraw(). */
+extern bool html_redraw_debug;
+
bool html_create(struct content *c, const char *params[]);
bool html_process_data(struct content *c, char *data, unsigned int size);
@@ -91,7 +95,7 @@ void html_open(struct content *c, struct browser_window *bw,
struct object_params *params);
void html_close(struct content *c);
-/* in riscos/htmlredraw.c */
+/* in render/html_redraw.c */
bool html_redraw(struct content *c, int x, int y,
int width, int height,
int clip_x0, int clip_y0, int clip_x1, int clip_y1,