summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-06-27 14:41:14 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-06-27 14:41:14 +0000
commit50e0ebf3fa1fa09603371d81b971f5f95331ecd2 (patch)
treedbacc563d47e7b6ac7440fba12f2d61861ac2f64 /riscos/options.h
parentafceb17b80b04a8f98676d430d0b87c6ac66c4eb (diff)
downloadnetsurf-50e0ebf3fa1fa09603371d81b971f5f95331ecd2.tar.gz
netsurf-50e0ebf3fa1fa09603371d81b971f5f95331ecd2.tar.bz2
[project @ 2004-06-27 14:41:14 by rjw]
Improved window positioning svn path=/import/netsurf/; revision=1018
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/riscos/options.h b/riscos/options.h
index bb00506ff..fc9401563 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -39,6 +39,7 @@ extern int option_window_width;
extern int option_window_height;
extern int option_window_screen_width;
extern int option_window_screen_height;
+extern bool option_window_stagger;
extern int option_minimum_gif_delay;
extern bool option_background_images;
extern bool option_background_blending;
@@ -67,6 +68,7 @@ int option_window_width = 0; \
int option_window_height = 0; \
int option_window_screen_width = 0; \
int option_window_screen_height = 0; \
+bool option_window_stagger = true; \
int option_minimum_gif_delay = 10; \
bool option_background_images = true; \
bool option_background_blending = false;
@@ -95,6 +97,7 @@ bool option_background_blending = false;
{ "window_height", OPTION_INTEGER, &option_window_height }, \
{ "window_screen_width", OPTION_INTEGER, &option_window_screen_width }, \
{ "window_screen_height", OPTION_INTEGER, &option_window_screen_height }, \
+{ "window_stagger", OPTION_BOOL, &option_window_stagger }, \
{ "minimum_gif_delay", OPTION_INTEGER, &option_minimum_gif_delay }, \
{ "background_images", OPTION_BOOL, &option_background_images }, \
{ "background_blending", OPTION_BOOL, &option_background_blending }