2021-09-28 09:40:39 +00:00
|
|
|
#include "../desktop_i.h"
|
|
|
|
#include "../views/desktop_first_start.h"
|
|
|
|
|
|
|
|
void desktop_scene_first_start_callback(DesktopFirstStartEvent event, void* context) {
|
|
|
|
Desktop* desktop = (Desktop*)context;
|
|
|
|
view_dispatcher_send_custom_event(desktop->view_dispatcher, event);
|
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
void desktop_scene_first_start_on_enter(void* context) {
|
2021-09-28 09:40:39 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
|
|
|
DesktopFirstStartView* first_start_view = desktop->first_start_view;
|
|
|
|
|
|
|
|
desktop_first_start_set_callback(
|
|
|
|
first_start_view, desktop_scene_first_start_callback, desktop);
|
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(desktop->view_dispatcher, DesktopViewFirstStart);
|
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
bool desktop_scene_first_start_on_event(void* context, SceneManagerEvent event) {
|
2021-09-28 09:40:39 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
|
|
|
bool consumed = false;
|
2021-09-28 14:42:52 +00:00
|
|
|
Storage* storage = NULL;
|
2021-09-28 09:40:39 +00:00
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
switch(event.event) {
|
|
|
|
case DesktopFirstStartCompleted:
|
2021-09-28 14:42:52 +00:00
|
|
|
storage = furi_record_open("storage");
|
|
|
|
storage_common_remove(storage, "/int/first_start");
|
|
|
|
furi_record_close("storage");
|
|
|
|
scene_manager_previous_scene(desktop->scene_manager);
|
2021-09-28 09:40:39 +00:00
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
void desktop_scene_first_start_on_exit(void* context) {
|
2021-09-28 09:40:39 +00:00
|
|
|
}
|