summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-10-19 15:28:15 +0000
committerThomas Martitz <kugel@rockbox.org>2009-10-19 15:28:15 +0000
commit1016ee4e809776619fa9e4e773ceb1523bd7bc66 (patch)
tree585cd873c118bee7c2459205e6eb54ff3e76a21b /apps/settings.h
parent00695baac0b797cbe46e7bc2999a83f73b36aae8 (diff)
downloadrockbox-1016ee4e809776619fa9e4e773ceb1523bd7bc66.tar.gz
rockbox-1016ee4e809776619fa9e4e773ceb1523bd7bc66.zip
Initial custom statusbar commit.
The custom statusbar can be used as a WPS for the main UI, using .(r)sbs files. It's using the skin engine and knows all tags the WPS also knows. The default folder for .sbs is the wps folder to reuse images used in the WPS. As it can be shown in the WPS also, it's useful to move shared parts to the custom statusbar in order to save skin buffer space. There are a few restrictions/TODOs: *) Peak meter doesn't redraw nicely(not frequent enough), as very frequent updates would slow the UI down as hell (some targets fight with it in the WPS already: FS#10686) *) No touchregion support as the statusbar doesn't have any action handling (it won't fail to parse though). *) Drawing stuff into the default VP is forbidden (loading images in it is not). You *need* to use viewports for the displaying stuff (parsing fails if no viewport is used). *) Themes that don't use a custom ui viewport can be fixed up using the new %Vi tag to avoid nasty redraw effectts (you must not draw into it as well, it's used to fix up the ui viewport). %Vi describes the viewport that the lists can use without getting in the way of the statusbar. Otherwise, it behaves like the classic statusbar, it can be configured in the theme settings, and can be turned off in the wps using %wd. Note to translaters: When translating LANG_STATUSBAR_CUSTOM, please consider using the same translation as for LANG_CHANNEL_CUSTOM if it's compatible. They could be combined later then. Flyspray: FS#10566 Author: myself git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23258 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index ad250ed3b7..7ad139e485 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -60,6 +60,7 @@ struct opt_items {
60#define FONT_DIR ROCKBOX_DIR "/fonts" 60#define FONT_DIR ROCKBOX_DIR "/fonts"
61#define LANG_DIR ROCKBOX_DIR "/langs" 61#define LANG_DIR ROCKBOX_DIR "/langs"
62#define WPS_DIR ROCKBOX_DIR "/wps" 62#define WPS_DIR ROCKBOX_DIR "/wps"
63#define SBS_DIR WPS_DIR
63#define THEME_DIR ROCKBOX_DIR "/themes" 64#define THEME_DIR ROCKBOX_DIR "/themes"
64#define ICON_DIR ROCKBOX_DIR "/icons" 65#define ICON_DIR ROCKBOX_DIR "/icons"
65 66
@@ -548,6 +549,13 @@ struct user_settings
548 int peak_meter_max; /* range maximum */ 549 int peak_meter_max; /* range maximum */
549 550
550 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */ 551 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
552#ifdef HAVE_LCD_BITMAP
553 unsigned char sbs_file[MAX_FILENAME+1]; /* last statusbar skin */
554#endif
555#ifdef HAVE_REMOTE_LCD
556 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
557 unsigned char rsbs_file[MAX_FILENAME+1]; /* last remote statusbar skin */
558#endif
551 unsigned char lang_file[MAX_FILENAME+1]; /* last language */ 559 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
552 unsigned char playlist_catalog_dir[MAX_FILENAME+1]; 560 unsigned char playlist_catalog_dir[MAX_FILENAME+1];
553 int skip_length; /* skip length */ 561 int skip_length; /* skip length */
@@ -722,7 +730,6 @@ struct user_settings
722 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */ 730 bool remote_bl_filter_first_keypress; /* filter first remote keypress when remote dark? */
723 unsigned char remote_icon_file[MAX_FILENAME+1]; 731 unsigned char remote_icon_file[MAX_FILENAME+1];
724 unsigned char remote_viewers_icon_file[MAX_FILENAME+1]; 732 unsigned char remote_viewers_icon_file[MAX_FILENAME+1];
725 unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */
726#ifdef HAS_REMOTE_BUTTON_HOLD 733#ifdef HAS_REMOTE_BUTTON_HOLD
727 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold 734 int remote_backlight_on_button_hold; /* what to do with remote backlight when hold
728 switch is on */ 735 switch is on */