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)
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 {
ACTION_KBD_DOWN,
ACTION_KBD_MORSE_INPUT,
ACTION_KBD_MORSE_SELECT,
+
+#ifdef HAVE_TOUCHSCREEN
+ /* the following are helper actions for touchscreen targets,
+ * These are for actions which are not doable or required if buttons are
+ * being used, but are nice additions if the touchscreen is used */
+ ACTION_TOUCH_SHUFFLE,
+ ACTION_TOUCH_REPMODE,
+#endif
LAST_ACTION_PLACEHOLDER, /* custom actions should be this + something */