summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-10-30 21:22:19 +0000
committerJames Bursa <james@netsurf-browser.org>2005-10-30 21:22:19 +0000
commit972392ef662611abb77a35bb2df65a147ec15c20 (patch)
tree4d5cce8fa4e15f9f371922921608369c54bcb569 /content/content.h
parentf7c30212222a6c78563971abac9645bb4de44c29 (diff)
downloadnetsurf-972392ef662611abb77a35bb2df65a147ec15c20.tar.gz
netsurf-972392ef662611abb77a35bb2df65a147ec15c20.tar.bz2
[project @ 2005-10-30 21:22:19 by bursa]
Add index parameter to content_open(). svn path=/import/netsurf/; revision=1872
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/content/content.h b/content/content.h
index edb9fe0d7..f71691fc7 100644
--- a/content/content.h
+++ b/content/content.h
@@ -20,9 +20,11 @@
* Contents have an associated set of users, which are informed by a callback
* when the state of the content changes or something interesting happens.
*
- * Optionally, contents may have instances (depending on type). Instances
- * represent copies of the same URL, for example if a page is open in two
- * windows, or a page contains the same image twice.
+ * Depending on the type of content, there may be either one content structure
+ * per URL which is shared among all users, or one per URL per user. For
+ * example, CONTENT_JPEGs are shared, while there is one CONTENT_HTML per user
+ * (because each instance of an HTML page may have different parameters such as
+ * window width). This is controlled by no_share in ::handler_map.
*
* The status of a content follows a fixed order. Certain content functions
* change the state, and each change of state results in a message to all users
@@ -305,7 +307,7 @@ void content_stop(struct content *c,
intptr_t p1, intptr_t p2, union content_msg_data data),
intptr_t p1, intptr_t p2);
void content_open(struct content *c, struct browser_window *bw,
- struct content *page, struct box *box,
+ struct content *page, unsigned int index, struct box *box,
struct object_params *params);
void content_close(struct content *c);
void content_add_error(struct content *c, const char *token,