2021-09-28 00:05:40 +00:00
|
|
|
#include "../subghz_i.h"
|
2021-10-25 14:37:14 +00:00
|
|
|
#include "../helpers/subghz_custom_event.h"
|
2021-09-28 00:05:40 +00:00
|
|
|
|
|
|
|
void subghz_scene_delete_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, SubGhzCustomEventSceneDelete);
|
2021-09-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void subghz_scene_delete_on_enter(void* context) {
|
|
|
|
SubGhz* subghz = context;
|
2021-11-11 12:49:19 +00:00
|
|
|
string_t frequency_str;
|
|
|
|
string_t modulation_str;
|
|
|
|
string_t text;
|
|
|
|
|
|
|
|
string_init(frequency_str);
|
|
|
|
string_init(modulation_str);
|
|
|
|
string_init(text);
|
2021-09-28 00:05:40 +00:00
|
|
|
|
2021-11-11 12:49:19 +00:00
|
|
|
subghz_get_frequency_modulation(subghz, frequency_str, modulation_str);
|
2021-09-28 00:05:40 +00:00
|
|
|
widget_add_string_element(
|
2021-11-11 12:49:19 +00:00
|
|
|
subghz->widget, 78, 0, AlignLeft, AlignTop, FontSecondary, string_get_cstr(frequency_str));
|
|
|
|
|
2021-09-28 00:05:40 +00:00
|
|
|
widget_add_string_element(
|
2021-11-11 12:49:19 +00:00
|
|
|
subghz->widget,
|
|
|
|
113,
|
|
|
|
0,
|
|
|
|
AlignLeft,
|
|
|
|
AlignTop,
|
|
|
|
FontSecondary,
|
|
|
|
string_get_cstr(modulation_str));
|
2022-03-03 09:48:56 +00:00
|
|
|
subghz_protocol_decoder_base_get_string(subghz->txrx->decoder_result, text);
|
2021-09-28 00:05:40 +00:00
|
|
|
widget_add_string_multiline_element(
|
|
|
|
subghz->widget, 0, 0, AlignLeft, AlignTop, FontSecondary, string_get_cstr(text));
|
2021-11-11 12:49:19 +00:00
|
|
|
|
|
|
|
string_clear(frequency_str);
|
|
|
|
string_clear(modulation_str);
|
2021-09-28 00:05:40 +00:00
|
|
|
string_clear(text);
|
|
|
|
|
|
|
|
widget_add_button_element(
|
|
|
|
subghz->widget, GuiButtonTypeRight, "Delete", subghz_scene_delete_callback, subghz);
|
|
|
|
|
2022-03-03 09:48:56 +00:00
|
|
|
view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdWidget);
|
2021-09-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool subghz_scene_delete_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
SubGhz* subghz = context;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
2022-03-03 09:48:56 +00:00
|
|
|
if(event.event == SubGhzCustomEventSceneDelete) {
|
2022-05-27 11:19:21 +00:00
|
|
|
string_set(subghz->file_path_tmp, subghz->file_path);
|
2021-09-28 00:05:40 +00:00
|
|
|
if(subghz_delete_file(subghz)) {
|
|
|
|
scene_manager_next_scene(subghz->scene_manager, SubGhzSceneDeleteSuccess);
|
|
|
|
} else {
|
|
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
subghz->scene_manager, SubGhzSceneStart);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void subghz_scene_delete_on_exit(void* context) {
|
|
|
|
SubGhz* subghz = context;
|
2022-02-02 19:59:28 +00:00
|
|
|
widget_reset(subghz->widget);
|
2021-09-28 00:05:40 +00:00
|
|
|
}
|