summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-11-03 11:11:07 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-11-03 11:11:07 +0000
commitedcacaa787d770cd5b944c18082b5b80128f7e4e (patch)
treec9c15530510a02327bcd20808ac470304781879e /apps/settings.h
parent5395957549c9b04fefa87a0aedb6bc15bf360739 (diff)
downloadrockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.tar.gz
rockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.zip
FS#9515 - customisable quickscreen. Allows you to choose which setting you want displayed on the quickscreen.
Allows almost every available setting. (change the options in settings > general settings > quickscreen items) Not every setting will work perfectly, some might need aditional handling if the change doesnt take effect straight away (let us know which are problematic so they can be fixed) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18984 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 8c206053aa..8448059308 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -751,6 +751,12 @@ struct user_settings
751#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING 751#ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
752 int touchpad_sensitivity; 752 int touchpad_sensitivity;
753#endif 753#endif
754#ifdef HAVE_QUICKSCREEN
755 /* these are split because settings_list cant handle arrays */
756 int qs_item_left;
757 int qs_item_right;
758 int qs_item_bottom;
759#endif
754}; 760};
755 761
756/** global variables **/ 762/** global variables **/