From b59616c9ab85b0f58c0318f62e39f197932a712b Mon Sep 17 00:00:00 2001 From: Andrew Timmins Date: Mon, 26 Jul 2004 20:13:45 +0000 Subject: [project @ 2004-07-26 20:13:45 by atimmins] Updated to support new config options (homepage, open on startup). Bug fixes with new config pane window (sticky selected radio icon bug!). Also includes up-to-date French templates. svn path=/import/netsurf/; revision=1150 --- riscos/options.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'riscos/options.h') diff --git a/riscos/options.h b/riscos/options.h index 8e6f1d4fa..6b6d1a60f 100644 --- a/riscos/options.h +++ b/riscos/options.h @@ -45,6 +45,8 @@ extern bool option_background_images; extern bool option_background_blending; extern bool option_buffer_animations; extern bool option_buffer_everything; +extern char *option_homepage_url; +extern bool option_open_browser_at_startup; #define EXTRA_OPTION_DEFINE \ bool option_use_mouse_gestures = false;\ @@ -75,7 +77,9 @@ int option_minimum_gif_delay = 10; \ bool option_background_images = true; \ bool option_background_blending = true; \ bool option_buffer_animations = true; \ -bool option_buffer_everything = false; +bool option_buffer_everything = false; \ +char *option_homepage_url =0;\ +bool option_open_browser_at_startup = false; #define EXTRA_OPTION_TABLE \ { "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\ @@ -106,6 +110,7 @@ bool option_buffer_everything = false; { "background_images", OPTION_BOOL, &option_background_images }, \ { "background_blending", OPTION_BOOL, &option_background_blending }, \ { "buffer_animations", OPTION_BOOL, &option_buffer_animations }, \ -{ "buffer_everything", OPTION_BOOL, &option_buffer_animations } - +{ "buffer_everything", OPTION_BOOL, &option_buffer_animations }, \ +{ "homepage_url", OPTION_STRING, &option_homepage_url }, \ +{ "open_browser_at_startup",OPTION_BOOL, &option_open_browser_at_startup } #endif -- cgit v1.2.3