summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-04-06 18:09:34 +0000
committerJames Bursa <james@netsurf-browser.org>2003-04-06 18:09:34 +0000
commit46edb645e1a08fb76835e4b3b8960ec3cce5e298 (patch)
treeb1824939242a04900cf0737f620b425543d34754 /content/content.h
parent2253e38be8cbcf4243e43fc0d317cfda08bffeb2 (diff)
downloadnetsurf-46edb645e1a08fb76835e4b3b8960ec3cce5e298.tar.gz
netsurf-46edb645e1a08fb76835e4b3b8960ec3cce5e298.tar.bz2
[project @ 2003-04-06 18:09:34 by bursa]
@import, more status messages. svn path=/import/netsurf/; revision=116
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/content/content.h b/content/content.h
index b0711488d..ff0dbc6dd 100644
--- a/content/content.h
+++ b/content/content.h
@@ -1,5 +1,5 @@
/**
- * $Id: content.h,v 1.4 2003/04/05 21:38:06 bursa Exp $
+ * $Id: content.h,v 1.5 2003/04/06 18:09:34 bursa Exp $
*/
#ifndef _NETSURF_DESKTOP_CONTENT_H_
@@ -57,7 +57,6 @@ struct content
unsigned int stylesheet_count;
char **stylesheet_url;
struct content **stylesheet_content;
- struct css_stylesheet* stylesheet;
struct css_style* style;
struct {
struct box_position start;
@@ -69,7 +68,12 @@ struct content
struct page_elements elements;
} html;
- struct css_stylesheet *css;
+ struct
+ {
+ struct css_stylesheet *css;
+ unsigned int import_count;
+ struct content **import_content;
+ } css;
struct
{
@@ -84,6 +88,8 @@ struct content
char *title;
unsigned int active;
int error;
+ void (*status_callback)(void *p, const char *status);
+ void *status_p;
};