-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add Database error scene * More general popup callback name
- Loading branch information
Showing
11 changed files
with
66 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
applications/infrared/scenes/infrared_scene_error_databases.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#include "../infrared_i.h" | ||
|
||
void infrared_scene_error_databases_on_enter(void* context) { | ||
Infrared* infrared = context; | ||
Popup* popup = infrared->popup; | ||
|
||
popup_set_icon(popup, 5, 11, &I_SDQuestion_35x43); | ||
popup_set_text( | ||
popup, "Function requires\nSD card with fresh\ndatabases.", 47, 17, AlignLeft, AlignTop); | ||
|
||
popup_set_context(popup, context); | ||
popup_set_callback(popup, infrared_popup_closed_callback); | ||
|
||
infrared_play_notification_message(infrared, InfraredNotificationMessageYellowOn); | ||
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewPopup); | ||
} | ||
|
||
bool infrared_scene_error_databases_on_event(void* context, SceneManagerEvent event) { | ||
Infrared* infrared = context; | ||
bool consumed = false; | ||
|
||
if(event.type == SceneManagerEventTypeCustom) { | ||
if(event.event == InfraredCustomEventTypePopupClosed) { | ||
scene_manager_search_and_switch_to_previous_scene( | ||
infrared->scene_manager, InfraredSceneUniversal); | ||
consumed = true; | ||
} | ||
} | ||
|
||
return consumed; | ||
} | ||
|
||
void infrared_scene_error_databases_on_exit(void* context) { | ||
Infrared* infrared = context; | ||
popup_reset(infrared->popup); | ||
infrared_play_notification_message(infrared, InfraredNotificationMessageYellowOff); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters