From 0f77b057a1f2210addb40c6b528c917affda6720 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Wed, 25 Jan 2006 06:52:38 +0000 Subject: [project @ 2006-01-25 06:52:38 by jmb] Meta refresh support svn path=/import/netsurf/; revision=2039 --- content/content.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'content/content.h') diff --git a/content/content.h b/content/content.h index 897b81370..3e24ccbc0 100644 --- a/content/content.h +++ b/content/content.h @@ -150,6 +150,7 @@ typedef enum { CONTENT_MSG_REFORMAT, /**< content_reformat done */ CONTENT_MSG_REDRAW, /**< needs redraw (eg. new animation frame) */ CONTENT_MSG_NEWPTR, /**< address of structure has changed */ + CONTENT_MSG_REFRESH, /**< wants refresh */ #ifdef WITH_AUTH CONTENT_MSG_AUTH /**< authentication required */ #endif @@ -173,6 +174,7 @@ union content_msg_data { float object_width, object_height; } redraw; char *auth_realm; /**< Realm, for CONTENT_MSG_AUTH. */ + int delay; /**< Minimum delay, for CONTENT_MSG_REFRESH */ }; /** Linked list of users of a content. */ @@ -233,6 +235,9 @@ struct content { #endif } data; + /**< URL for refresh request, in standard form as from url_join. */ + char *refresh; + /** Bitmap, for various image contents. */ struct bitmap *bitmap; -- cgit v1.2.3