2022-09-08 16:40:33 +00:00
|
|
|
#include "../lfrfid_i.h"
|
|
|
|
|
|
|
|
void lfrfid_scene_raw_success_on_enter(void* context) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
Widget* widget = app->widget;
|
|
|
|
|
2024-03-29 03:32:43 +00:00
|
|
|
widget_add_text_box_element(
|
2022-09-08 16:40:33 +00:00
|
|
|
widget,
|
|
|
|
0,
|
2024-03-29 03:32:43 +00:00
|
|
|
0,
|
|
|
|
128,
|
|
|
|
64,
|
2022-09-08 16:40:33 +00:00
|
|
|
AlignLeft,
|
|
|
|
AlignTop,
|
2024-03-29 03:32:43 +00:00
|
|
|
"\e#RAW RFID Read Success\e#\n"
|
|
|
|
"Now you can analyze files or\n"
|
|
|
|
"send them to developers",
|
|
|
|
false);
|
|
|
|
|
|
|
|
widget_add_button_element(widget, GuiButtonTypeCenter, "OK", lfrfid_widget_callback, app);
|
2022-09-08 16:40:33 +00:00
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool lfrfid_scene_raw_success_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
SceneManager* scene_manager = app->scene_manager;
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
if(event.event == GuiButtonTypeCenter) {
|
|
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
scene_manager, LfRfidSceneExtraActions);
|
|
|
|
}
|
2024-03-29 03:32:43 +00:00
|
|
|
consumed = true;
|
|
|
|
|
|
|
|
} else if(event.type == SceneManagerEventTypeBack) {
|
|
|
|
consumed = true;
|
2022-09-08 16:40:33 +00:00
|
|
|
}
|
2024-03-29 03:32:43 +00:00
|
|
|
|
2022-09-08 16:40:33 +00:00
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lfrfid_scene_raw_success_on_exit(void* context) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
widget_reset(app->widget);
|
|
|
|
}
|