summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-05-04 22:23:44 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-05-04 22:23:44 +0000
commite7da747f5f51a71254113552087e07d67efe0851 (patch)
treea031b0e1683678fc4c6f4c95bc181a8b8429cb1f /riscos/options.h
parent1692e9c33d59ba8794d134d5f40cdad9c1572522 (diff)
downloadnetsurf-e7da747f5f51a71254113552087e07d67efe0851.tar.gz
netsurf-e7da747f5f51a71254113552087e07d67efe0851.tar.bz2
[project @ 2004-05-04 22:21:37 by rjw]
Revised GUI. svn path=/import/netsurf/; revision=823
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/riscos/options.h b/riscos/options.h
index 9f9642175..095a799c8 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -25,6 +25,13 @@ extern bool option_filter_sprites;
extern bool option_thumbnail_32bpp;
extern int option_thumbnail_oversampling;
extern bool option_history_tooltip;
+extern int option_scale;
+extern int option_toolbar_status_width;
+extern bool option_toolbar_show_status;
+extern bool option_toolbar_show_buttons;
+extern bool option_toolbar_show_address;
+extern bool option_toolbar_show_throbber;
+extern bool option_animate_images;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -36,7 +43,14 @@ bool option_dither_sprites = true;\
bool option_filter_sprites = false;\
bool option_thumbnail_32bpp = true;\
int option_thumbnail_oversampling = 0;\
-bool option_history_tooltip = true;
+bool option_history_tooltip = true; \
+int option_scale = 100; \
+int option_toolbar_status_width = 640; \
+bool option_toolbar_show_status = true; \
+bool option_toolbar_show_buttons = true; \
+bool option_toolbar_show_address = true; \
+bool option_toolbar_show_throbber = true; \
+bool option_animate_images = true;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -48,6 +62,13 @@ bool option_history_tooltip = true;
{ "filter_sprites", OPTION_BOOL, &option_filter_sprites },\
{ "thumbnail_32bpp", OPTION_BOOL, &option_thumbnail_32bpp },\
{ "thumbnail_oversampling", OPTION_INTEGER, &option_thumbnail_oversampling },\
-{ "history_tooltip", OPTION_BOOL, &option_history_tooltip }
+{ "history_tooltip", OPTION_BOOL, &option_history_tooltip }, \
+{ "scale", OPTION_INTEGER, &option_scale }, \
+{ "toolbar_show_status", OPTION_BOOL, &option_toolbar_show_status }, \
+{ "toolbar_status_width", OPTION_INTEGER, &option_toolbar_status_width }, \
+{ "toolbar_show_buttons", OPTION_BOOL, &option_toolbar_show_buttons }, \
+{ "toolbar_show_address", OPTION_BOOL, &option_toolbar_show_address }, \
+{ "toolbar_show_throbber", OPTION_BOOL, &option_toolbar_show_throbber }, \
+{ "animate_images", OPTION_BOOL, &option_animate_images }
#endif