diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-10-20 21:54:59 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-10-20 21:54:59 +0000 |
| commit | d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e (patch) | |
| tree | 2f51ed47fee689024ed8c145634044362c8ed7d5 /apps/plugins | |
| parent | 774bacc692b4d5c7b769bb88d24e182db9e4656f (diff) | |
| download | rockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.zip rockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.tar.gz rockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.tar.bz2 rockbox-d85c3ec41020a6c56b0d5d95a9ed790f57d73c6e.tar.xz | |
Convert lcd_activation callbacks to use the event system to allow for multiple parallel callbacks (for custom statusbar).
Increase maximum event count as we need more (I actually had a report about it during custom statusbar testing).
Removed corresponding functions from the core and plugin api. Bump min version and sort.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23302 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/mpegplayer/mpeg_settings.c | 7 | ||||
| -rw-r--r-- | apps/plugins/mpegplayer/mpegplayer.c | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c index df926f4..eb55c14 100644 --- a/apps/plugins/mpegplayer/mpeg_settings.c +++ b/apps/plugins/mpegplayer/mpeg_settings.c @@ -599,8 +599,9 @@ static uint32_t increment_time(uint32_t val, int32_t amount, uint32_t range) } #if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) -static void get_start_time_lcd_enable_hook(void) +static void get_start_time_lcd_enable_hook(void *param) { + (void)param; rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_0, 0); } #endif /* HAVE_LCD_ENABLE */ @@ -619,7 +620,7 @@ static int get_start_time(uint32_t duration) lcd_(update)(); #if defined(HAVE_LCD_ENABLE) && defined(HAVE_LCD_COLOR) - rb->lcd_activation_set_hook(get_start_time_lcd_enable_hook); + rb->add_event(LCD_EVENT_ACTIVATION, false, get_start_time_lcd_enable_hook); #endif draw_slider(0, 100, &rc_bound); @@ -810,7 +811,7 @@ static int get_start_time(uint32_t duration) } #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) - rb->lcd_activation_set_hook(NULL); + rb->remove_event(LCD_EVENT_ACTIVATION, get_start_time_lcd_enable_hook); #endif #ifndef HAVE_LCD_COLOR stream_gray_show(false); diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c index 0cb5f94..7c52a47 100644 --- a/apps/plugins/mpegplayer/mpegplayer.c +++ b/apps/plugins/mpegplayer/mpegplayer.c @@ -652,8 +652,9 @@ static void draw_putsxy_oriented(int x, int y, const char *str) #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) /* So we can refresh the overlay */ -static void wvs_lcd_enable_hook(void) +static void wvs_lcd_enable_hook(void* param) { + (void)param; rb->queue_post(rb->button_queue, LCD_ENABLE_EVENT_1, 0); } #endif @@ -665,11 +666,11 @@ static void wvs_backlight_on_video_mode(bool video_on) /* backlight control in lib/helper.c */ backlight_force_on(); #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) - rb->lcd_activation_set_hook(NULL); + rb->remove_event(LCD_EVENT_ACTIVATION, wvs_lcd_enable_hook); #endif } else { #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) - rb->lcd_activation_set_hook(wvs_lcd_enable_hook); + rb->add_event(LCD_EVENT_ACTIVATION, false, wvs_lcd_enable_hook); #endif /* Revert to user's backlight settings */ backlight_use_settings(); @@ -1671,7 +1672,7 @@ static void button_loop(void) #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) /* Be sure hook is removed before exiting since the stop will put it * back because of the backlight restore. */ - rb->lcd_activation_set_hook(NULL); + rb->remove_event(LCD_EVENT_ACTIVATION, wvs_lcd_enable_hook); #endif rb->lcd_setfont(FONT_UI); |