summaryrefslogtreecommitdiff
path: root/amiga/options.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-05-05 19:09:42 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-05-05 19:09:42 +0000
commit7003f6932efd8a118acbd30fba85e15bd76238dd (patch)
tree3fc9c5a8ee2828213249001ff953f2fea78c2391 /amiga/options.h
parent2f7061b894af10797003eaa37a3fb8c3aeeaf079 (diff)
downloadnetsurf-7003f6932efd8a118acbd30fba85e15bd76238dd.tar.gz
netsurf-7003f6932efd8a118acbd30fba85e15bd76238dd.tar.bz2
Use font_unicode option as preferred (first scanned) font. Ideally need to
expand this so multiple fonts can be specified. Allow disabling of scanning other fonts. Add stubs for a scanning progress GUI. svn path=/trunk/netsurf/; revision=13907
Diffstat (limited to 'amiga/options.h')
-rw-r--r--amiga/options.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/amiga/options.h b/amiga/options.h
index 6d4211892..49dfc5323 100644
--- a/amiga/options.h
+++ b/amiga/options.h
@@ -55,7 +55,8 @@
bool close_no_quit; \
bool hide_docky_icon; \
char *font_unicode; \
- char *font_unicode_file; \
+ char *font_unicode_file; \
+ bool font_unicode_only; \
bool drag_save_icons; \
int hotlist_window_xpos; \
int hotlist_window_ypos; \
@@ -113,6 +114,7 @@
.hide_docky_icon = false, \
.font_unicode = NULL, \
.font_unicode_file = NULL, \
+ .font_unicode_only = false, \
.drag_save_icons = true, \
.hotlist_window_xpos = 0, \
.hotlist_window_ypos = 0, \
@@ -169,6 +171,7 @@
{ "hide_docky_icon", OPTION_BOOL, &nsoptions.hide_docky_icon}, \
{ "font_unicode", OPTION_STRING, &nsoptions.font_unicode }, \
{ "font_unicode_file", OPTION_STRING, &nsoptions.font_unicode_file }, \
+{ "font_unicode_only", OPTION_BOOL, &nsoptions.font_unicode_only }, \
{ "drag_save_icons", OPTION_BOOL, &nsoptions.drag_save_icons}, \
{ "hotlist_window_xpos", OPTION_INTEGER, &nsoptions.hotlist_window_xpos}, \
{ "hotlist_window_ypos", OPTION_INTEGER, &nsoptions.hotlist_window_ypos}, \