diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2008-01-23 08:25:04 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2008-01-23 08:25:04 +0000 |
| commit | ebe5acfb9dd80bfce2c915a568e2c86244b67510 (patch) | |
| tree | c7c6894575e6c5b3d318556cc439d5aa8783061a /apps/plugins/lib/pluginlib_actions.h | |
| parent | 8a91c19f7003a34a650b6baf52b23cbdaf767919 (diff) | |
| download | rockbox-ebe5acfb9dd80bfce2c915a568e2c86244b67510.zip rockbox-ebe5acfb9dd80bfce2c915a568e2c86244b67510.tar.gz rockbox-ebe5acfb9dd80bfce2c915a568e2c86244b67510.tar.bz2 rockbox-ebe5acfb9dd80bfce2c915a568e2c86244b67510.tar.xz | |
Fixed the problems on the new version of the fire plugin (so repush it), added new actions to the pluginlib_actions to fix the keymaps on the Sansa e200 for the clock and fire plugins. Also slightly simplified the metronome plugin's key mapping with those new actions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16148 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/pluginlib_actions.h')
| -rw-r--r-- | apps/plugins/lib/pluginlib_actions.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/lib/pluginlib_actions.h b/apps/plugins/lib/pluginlib_actions.h index b0b9871..c11a087 100644 --- a/apps/plugins/lib/pluginlib_actions.h +++ b/apps/plugins/lib/pluginlib_actions.h @@ -35,7 +35,12 @@ enum { PLA_DOWN_REPEAT, PLA_LEFT_REPEAT, PLA_RIGHT_REPEAT, - + + PLA_INC, + PLA_DEC, + PLA_INC_REPEAT, + PLA_DEC_REPEAT, + PLA_QUIT, PLA_START, PLA_MENU, @@ -51,6 +56,7 @@ extern const struct button_mapping remote_directions[]; extern const struct button_mapping generic_directions[]; extern const struct button_mapping generic_left_right_fire[]; extern const struct button_mapping generic_actions[]; +extern const struct button_mapping generic_increase_decrease[]; int pluginlib_getaction(struct plugin_api *api,int timeout, const struct button_mapping *plugin_contexts[], |