From 4c48b59be8ba41b80350d5329d0f13240229da0a Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Sun, 16 Aug 2009 22:20:11 +0000 Subject: User definable UI viewport, to be able to restrict the UI into a viewport for all bitmap displays. Flyspray: FS#8799 This will allow for pretty themes, for example those with nice glass effects on their backdrops (some might argue they're wasting screen space but it's upto them), as well as allowing for future background WPS updates in the main UI. Plugins are not converted yet, they simply use the full screen. Ideally, any plugin that does *not* want the UI viewport, should take care of that itself (i.e. plugins should normally use the UI viewport). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22365 a1c6a512-1295-4272-9138-f99709370657 --- apps/menus/display_menu.c | 4 ++-- apps/menus/theme_menu.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/menus') diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c index 05b5bd268d..3989a6381b 100644 --- a/apps/menus/display_menu.c +++ b/apps/menus/display_menu.c @@ -39,6 +39,7 @@ #ifdef HAVE_TOUCHSCREEN #include "screens.h" #endif +#include "viewport.h" #ifdef HAVE_BACKLIGHT static int filterfirstkeypress_callback(int action,const struct menu_item_ex *this_item) @@ -313,8 +314,7 @@ static int statusbar_callback(int action,const struct menu_item_ex *this_item) { case ACTION_EXIT_MENUITEM: send_event(GUI_EVENT_STATUSBAR_TOGGLE, NULL); - /* this should be changed so only the viewports are reloaded */ - settings_apply(false); + send_event(GUI_EVENT_ACTIONUPDATE, (void*)true); break; } return action; diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c index d71ca71928..233d673da1 100644 --- a/apps/menus/theme_menu.c +++ b/apps/menus/theme_menu.c @@ -37,6 +37,7 @@ #include "lcd-remote.h" #include "backdrop.h" #include "exported_menus.h" +#include "appevents.h" #if LCD_DEPTH > 1 /** @@ -47,6 +48,7 @@ static int clear_main_backdrop(void) global_settings.backdrop_file[0]=0; backdrop_unload(BACKDROP_MAIN); backdrop_show(BACKDROP_MAIN); + send_event(GUI_EVENT_REFRESH, NULL); settings_save(); return 0; } -- cgit v1.2.3