summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorAndrew Timmins <atimmins@blueyonder.co.uk>2004-07-26 20:13:45 +0000
committerAndrew Timmins <atimmins@blueyonder.co.uk>2004-07-26 20:13:45 +0000
commitb59616c9ab85b0f58c0318f62e39f197932a712b (patch)
tree72e5c3ffa27800e21be5f1a7d74e97a006fc7bd6 /riscos/options.h
parent8e7d298c65440ab93e8061a934c76076b934eddd (diff)
downloadnetsurf-b59616c9ab85b0f58c0318f62e39f197932a712b.tar.gz
netsurf-b59616c9ab85b0f58c0318f62e39f197932a712b.tar.bz2
[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
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h11
1 files changed, 8 insertions, 3 deletions
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