summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar-skinned.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-21 06:04:19 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-21 06:04:19 +0000
commita398c2846aa86650aa386a68cb51929477b6aa23 (patch)
tree4fa695ba8ea3a2b0e0c1f1c1ab5ac9ce27430804 /apps/gui/statusbar-skinned.h
parent2b0ef19900295ef4e8da0fa52a13a04ccf76cb65 (diff)
downloadrockbox-a398c2846aa86650aa386a68cb51929477b6aa23.tar.gz
rockbox-a398c2846aa86650aa386a68cb51929477b6aa23.zip
Touchregion support for the Base Skin and FM Skins. display obviously needs to be in stylus mode for this to work. Just about all screens should be mostly useable if your sbs has the next/prev/select/cancel/menu regions defined.
Plenty of room to add new action abilities if they are wanted. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27004 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar-skinned.h')
-rw-r--r--apps/gui/statusbar-skinned.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/gui/statusbar-skinned.h b/apps/gui/statusbar-skinned.h
index eb27b06196..7925aa8093 100644
--- a/apps/gui/statusbar-skinned.h
+++ b/apps/gui/statusbar-skinned.h
@@ -43,6 +43,11 @@ void sb_skin_update(enum screen_type screen, bool force);
43void sb_skin_set_update_delay(int delay); 43void sb_skin_set_update_delay(int delay);
44bool sb_set_title_text(char* title, enum themable_icons icon, enum screen_type screen); 44bool sb_set_title_text(char* title, enum themable_icons icon, enum screen_type screen);
45 45
46#ifdef HAVE_TOUCHSCREEN
47void sb_bypass_touchregions(bool enable);
48int sb_touch_to_button(int context);
49#endif
50
46#if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1) 51#if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1)
47char* sb_get_backdrop(enum screen_type screen); 52char* sb_get_backdrop(enum screen_type screen);
48bool sb_set_backdrop(enum screen_type screen, char* filename); 53bool sb_set_backdrop(enum screen_type screen, char* filename);