2021-10-27 17:37:11 +00:00
|
|
|
#include "../subghz_i.h"
|
|
|
|
#include "../helpers/subghz_custom_event.h"
|
|
|
|
|
|
|
|
void subghz_scene_need_saving_callback(GuiButtonType result, InputType type, void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
|
|
|
if((result == GuiButtonTypeRight) && (type == InputTypeShort)) {
|
2022-03-03 09:48:56 +00:00
|
|
|
view_dispatcher_send_custom_event(subghz->view_dispatcher, SubGhzCustomEventSceneStay);
|
2021-10-27 17:37:11 +00:00
|
|
|
} else if((result == GuiButtonTypeLeft) && (type == InputTypeShort)) {
|
2022-03-03 09:48:56 +00:00
|
|
|
view_dispatcher_send_custom_event(subghz->view_dispatcher, SubGhzCustomEventSceneExit);
|
2021-10-27 17:37:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void subghz_scene_need_saving_on_enter(void* context) {
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
widget_add_string_multiline_element(
|
2023-03-08 11:27:21 +00:00
|
|
|
subghz->widget, 64, 13, AlignCenter, AlignCenter, FontPrimary, "Exit to Sub-GHz Menu?");
|
2021-10-27 17:37:11 +00:00
|
|
|
widget_add_string_multiline_element(
|
|
|
|
subghz->widget,
|
|
|
|
64,
|
2021-11-24 13:59:45 +00:00
|
|
|
32,
|
2021-10-27 17:37:11 +00:00
|
|
|
AlignCenter,
|
|
|
|
AlignCenter,
|
|
|
|
FontSecondary,
|
2023-03-08 11:27:21 +00:00
|
|
|
"All unsaved data\nwill be lost!");
|
2021-10-27 17:37:11 +00:00
|
|
|
|
|
|
|
widget_add_button_element(
|
2021-11-24 13:59:45 +00:00
|
|
|
subghz->widget, GuiButtonTypeRight, "Stay", subghz_scene_need_saving_callback, subghz);
|
2021-10-27 17:37:11 +00:00
|
|
|
widget_add_button_element(
|
2021-11-24 13:59:45 +00:00
|
|
|
subghz->widget, GuiButtonTypeLeft, "Exit", subghz_scene_need_saving_callback, subghz);
|
2021-10-27 17:37:11 +00:00
|
|
|
|
2022-03-03 09:48:56 +00:00
|
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdWidget);
|
2021-10-27 17:37:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool subghz_scene_need_saving_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
SubGhz* subghz = context;
|
2021-11-24 13:59:45 +00:00
|
|
|
if(event.type == SceneManagerEventTypeBack) {
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateBack;
|
|
|
|
scene_manager_previous_scene(subghz->scene_manager);
|
|
|
|
return true;
|
|
|
|
} else if(event.type == SceneManagerEventTypeCustom) {
|
2022-03-03 09:48:56 +00:00
|
|
|
if(event.event == SubGhzCustomEventSceneStay) {
|
2021-11-24 13:59:45 +00:00
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateBack;
|
2021-10-27 17:37:11 +00:00
|
|
|
scene_manager_previous_scene(subghz->scene_manager);
|
|
|
|
return true;
|
2022-03-03 09:48:56 +00:00
|
|
|
} else if(event.event == SubGhzCustomEventSceneExit) {
|
2021-10-27 17:37:11 +00:00
|
|
|
if(subghz->txrx->rx_key_state == SubGhzRxKeyStateExit) {
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
|
2022-07-26 14:16:59 +00:00
|
|
|
subghz_preset_init(
|
|
|
|
subghz,
|
|
|
|
"AM650",
|
|
|
|
subghz_setting_get_default_frequency(subghz->setting),
|
|
|
|
NULL,
|
|
|
|
0);
|
2021-10-27 17:37:11 +00:00
|
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
subghz->scene_manager, SubGhzSceneStart);
|
|
|
|
} else {
|
|
|
|
subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
|
|
|
|
scene_manager_previous_scene(subghz->scene_manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void subghz_scene_need_saving_on_exit(void* context) {
|
|
|
|
SubGhz* subghz = context;
|
2022-02-02 19:59:28 +00:00
|
|
|
widget_reset(subghz->widget);
|
2021-10-27 17:37:11 +00:00
|
|
|
}
|