eb31fed0e2
* Desktop: slideshow implementation * Updater: handling splashscreen installation; added format version field to slideshow binary * Desktop: added bidirectional slideshow navigation + instant cancel by "back" button; Updater: rebalanced update stages weights * Updater: fixed missing field init; fixed potential loop when baking slideshows * Assets: fixed "update complete" image to match original * Desktop: added check for slideshow file version * Scripts: slideshow.py cleanup * Desktop: removed first start intro sequence * Desktop: removed first start remnants
46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
#include <storage/storage.h>
|
|
|
|
#include "../desktop_i.h"
|
|
#include "../views/desktop_view_slideshow.h"
|
|
#include "../views/desktop_events.h"
|
|
|
|
void desktop_scene_slideshow_callback(DesktopEvent event, void* context) {
|
|
Desktop* desktop = (Desktop*)context;
|
|
view_dispatcher_send_custom_event(desktop->view_dispatcher, event);
|
|
}
|
|
|
|
void desktop_scene_slideshow_on_enter(void* context) {
|
|
Desktop* desktop = (Desktop*)context;
|
|
DesktopSlideshowView* slideshow_view = desktop->slideshow_view;
|
|
|
|
desktop_view_slideshow_set_callback(slideshow_view, desktop_scene_slideshow_callback, desktop);
|
|
|
|
view_dispatcher_switch_to_view(desktop->view_dispatcher, DesktopViewIdSlideshow);
|
|
}
|
|
|
|
bool desktop_scene_slideshow_on_event(void* context, SceneManagerEvent event) {
|
|
Desktop* desktop = (Desktop*)context;
|
|
bool consumed = false;
|
|
Storage* storage = NULL;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
switch(event.event) {
|
|
case DesktopSlideshowCompleted:
|
|
storage = furi_record_open("storage");
|
|
storage_common_remove(storage, "/int/slideshow");
|
|
furi_record_close("storage");
|
|
scene_manager_previous_scene(desktop->scene_manager);
|
|
consumed = true;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void desktop_scene_slideshow_on_exit(void* context) {
|
|
UNUSED(context);
|
|
}
|