summaryrefslogtreecommitdiffstats
path: root/apps/plugins/rockpaint.c
diff options
context:
space:
mode:
authorNils Stec <nils.stec@gmail.com>2014-06-30 20:24:15 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2014-06-30 21:20:15 +0200
commitc9816f57bf8782fd2ce6487aa0dc0f739145b631 (patch)
treeaf0f7314182fb8ee278ced53b7f79615312f32d2 /apps/plugins/rockpaint.c
parent6e575b6c7011827c042cba7b27537c1ceec9ef24 (diff)
downloadrockbox-c9816f57bf8782fd2ce6487aa0dc0f739145b631.tar.gz
rockbox-c9816f57bf8782fd2ce6487aa0dc0f739145b631.zip
Introduce plugin keymaps for the Sony NWZ Series
Change-Id: I46b8766bd44118bce4931b7ee71815ae5f51cb2e Reviewed-on: http://gerrit.rockbox.org/879 Reviewed-by: Amaury Pouly <amaury.pouly@gmail.com>
Diffstat (limited to 'apps/plugins/rockpaint.c')
-rw-r--r--apps/plugins/rockpaint.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c
index ce1b911e43..ab384e7644 100644
--- a/apps/plugins/rockpaint.c
+++ b/apps/plugins/rockpaint.c
@@ -288,6 +288,17 @@
#define ROCKPAINT_LEFT BUTTON_LEFT
#define ROCKPAINT_RIGHT BUTTON_RIGHT
+#elif CONFIG_KEYPAD == SONY_NWZ_PAD
+#define ROCKPAINT_QUIT (BUTTON_BACK|BUTTON_REPEAT)
+#define ROCKPAINT_DRAW BUTTON_PLAY
+#define ROCKPAINT_MENU BUTTON_BACK
+#define ROCKPAINT_UP BUTTON_UP
+#define ROCKPAINT_DOWN BUTTON_DOWN
+#define ROCKPAINT_LEFT BUTTON_LEFT
+#define ROCKPAINT_RIGHT BUTTON_RIGHT
+#define ROCKPAINT_TOOLBAR BUTTON_POWER
+#define ROCKPAINT_TOOLBAR2 (BUTTON_POWER|BUTTON_REPEAT)
+
#else
#error "Please define keys for this keypad"
#endif