#include "../nfc_magic_i.h"
 
void nfc_magic_scene_rekey_fail_widget_callback(
    GuiButtonType result,
    InputType type,
    void* context) {
    NfcMagic* nfc_magic = context;
    if(type == InputTypeShort) {
        view_dispatcher_send_custom_event(nfc_magic->view_dispatcher, result);
    }
}
 
void nfc_magic_scene_rekey_fail_on_enter(void* context) {
    NfcMagic* nfc_magic = context;
    Widget* widget = nfc_magic->widget;
 
    notification_message(nfc_magic->notifications, &sequence_error);
 
    widget_add_icon_element(widget, 72, 17, &I_DolphinCommon_56x48);
    widget_add_string_element(
        widget, 7, 4, AlignLeft, AlignTop, FontPrimary, "Can't change password!");
 
    widget_add_button_element(
        widget, GuiButtonTypeLeft, "Finish", nfc_magic_scene_rekey_fail_widget_callback, nfc_magic);
 
    // Setup and start worker
    view_dispatcher_switch_to_view(nfc_magic->view_dispatcher, NfcMagicViewWidget);
}
 
bool nfc_magic_scene_rekey_fail_on_event(void* context, SceneManagerEvent event) {
    NfcMagic* nfc_magic = context;
    bool consumed = false;
 
    if(event.type == SceneManagerEventTypeCustom) {
        if(event.event == GuiButtonTypeLeft) {
            consumed = scene_manager_search_and_switch_to_previous_scene(
                nfc_magic->scene_manager, NfcMagicSceneStart);
        }
    } else if(event.type == SceneManagerEventTypeBack) {
        consumed = scene_manager_search_and_switch_to_previous_scene(
            nfc_magic->scene_manager, NfcMagicSceneStart);
    }
    return consumed;
}
 
void nfc_magic_scene_rekey_fail_on_exit(void* context) {
    NfcMagic* nfc_magic = context;
 
    widget_reset(nfc_magic->widget);
}

V008 Unable to start the analysis on this file.