summaryrefslogtreecommitdiff
path: root/apps/action.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-05-15 05:36:16 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-05-15 05:36:16 +0000
commitc1267dc70088474731ab360244d90340d7c877ad (patch)
tree2b598f63148415b5c703eeeb9c536c85f08d4184 /apps/action.h
parent33d08e831514025504e91283fc9d3a426c972a61 (diff)
downloadrockbox-c1267dc70088474731ab360244d90340d7c877ad.tar.gz
rockbox-c1267dc70088474731ab360244d90340d7c877ad.zip
allow the user to change the shuffle and repeat modes from the touchscreen, update the mr500 default wps to show how to do it (hint, press the shuffle/rep icon)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20937 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.h')
-rw-r--r--apps/action.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/action.h b/apps/action.h
index 743e1470dc..bd215debb8 100644
--- a/apps/action.h
+++ b/apps/action.h
@@ -228,6 +228,14 @@ enum {
228 ACTION_KBD_DOWN, 228 ACTION_KBD_DOWN,
229 ACTION_KBD_MORSE_INPUT, 229 ACTION_KBD_MORSE_INPUT,
230 ACTION_KBD_MORSE_SELECT, 230 ACTION_KBD_MORSE_SELECT,
231
232#ifdef HAVE_TOUCHSCREEN
233 /* the following are helper actions for touchscreen targets,
234 * These are for actions which are not doable or required if buttons are
235 * being used, but are nice additions if the touchscreen is used */
236 ACTION_TOUCH_SHUFFLE,
237 ACTION_TOUCH_REPMODE,
238#endif
231 239
232 240
233 LAST_ACTION_PLACEHOLDER, /* custom actions should be this + something */ 241 LAST_ACTION_PLACEHOLDER, /* custom actions should be this + something */