2022-05-06 16:48:39 +00:00
|
|
|
#include "../ibutton_i.h"
|
2022-05-27 11:19:21 +00:00
|
|
|
#include <toolbox/path.h>
|
2022-05-06 16:48:39 +00:00
|
|
|
|
|
|
|
static void ibutton_scene_delete_confirm_widget_callback(
|
|
|
|
GuiButtonType result,
|
|
|
|
InputType type,
|
|
|
|
void* context) {
|
|
|
|
iButton* ibutton = context;
|
|
|
|
if(type == InputTypeShort) {
|
|
|
|
view_dispatcher_send_custom_event(ibutton->view_dispatcher, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ibutton_scene_delete_confirm_on_enter(void* context) {
|
|
|
|
iButton* ibutton = context;
|
|
|
|
Widget* widget = ibutton->widget;
|
|
|
|
iButtonKey* key = ibutton->key;
|
|
|
|
const uint8_t* key_data = ibutton_key_get_data_p(key);
|
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
FuriString* key_name;
|
|
|
|
key_name = furi_string_alloc();
|
2022-05-27 11:19:21 +00:00
|
|
|
path_extract_filename(ibutton->file_path, key_name, true);
|
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
ibutton_text_store_set(ibutton, "\e#Delete %s?\e#", furi_string_get_cstr(key_name));
|
2022-05-06 16:48:39 +00:00
|
|
|
widget_add_text_box_element(
|
2022-09-30 12:56:12 +00:00
|
|
|
widget, 0, 0, 128, 27, AlignCenter, AlignCenter, ibutton->text_store, true);
|
2022-05-06 16:48:39 +00:00
|
|
|
widget_add_button_element(
|
|
|
|
widget, GuiButtonTypeLeft, "Cancel", ibutton_scene_delete_confirm_widget_callback, ibutton);
|
|
|
|
widget_add_button_element(
|
|
|
|
widget,
|
|
|
|
GuiButtonTypeRight,
|
|
|
|
"Delete",
|
|
|
|
ibutton_scene_delete_confirm_widget_callback,
|
|
|
|
ibutton);
|
|
|
|
|
|
|
|
switch(ibutton_key_get_type(key)) {
|
|
|
|
case iButtonKeyDS1990:
|
|
|
|
ibutton_text_store_set(
|
|
|
|
ibutton,
|
|
|
|
"%02X %02X %02X %02X %02X %02X %02X %02X",
|
|
|
|
key_data[0],
|
|
|
|
key_data[1],
|
|
|
|
key_data[2],
|
|
|
|
key_data[3],
|
|
|
|
key_data[4],
|
|
|
|
key_data[5],
|
|
|
|
key_data[6],
|
|
|
|
key_data[7]);
|
|
|
|
widget_add_string_element(
|
2022-09-30 12:56:12 +00:00
|
|
|
widget, 64, 34, AlignCenter, AlignBottom, FontSecondary, "Dallas");
|
2022-05-06 16:48:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case iButtonKeyCyfral:
|
|
|
|
ibutton_text_store_set(ibutton, "%02X %02X", key_data[0], key_data[1]);
|
|
|
|
widget_add_string_element(
|
2022-09-30 12:56:12 +00:00
|
|
|
widget, 64, 34, AlignCenter, AlignBottom, FontSecondary, "Cyfral");
|
2022-05-06 16:48:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case iButtonKeyMetakom:
|
|
|
|
ibutton_text_store_set(
|
|
|
|
ibutton, "%02X %02X %02X %02X", key_data[0], key_data[1], key_data[2], key_data[3]);
|
|
|
|
widget_add_string_element(
|
2022-09-30 12:56:12 +00:00
|
|
|
widget, 64, 34, AlignCenter, AlignBottom, FontSecondary, "Metakom");
|
2022-05-06 16:48:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
widget_add_string_element(
|
2022-09-30 12:56:12 +00:00
|
|
|
widget, 64, 46, AlignCenter, AlignBottom, FontSecondary, ibutton->text_store);
|
2022-05-06 16:48:39 +00:00
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewWidget);
|
2022-05-27 11:19:21 +00:00
|
|
|
|
2022-10-05 15:15:23 +00:00
|
|
|
furi_string_free(key_name);
|
2022-05-06 16:48:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ibutton_scene_delete_confirm_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
iButton* ibutton = context;
|
|
|
|
SceneManager* scene_manager = ibutton->scene_manager;
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
consumed = true;
|
|
|
|
if(event.event == GuiButtonTypeRight) {
|
|
|
|
if(ibutton_delete_key(ibutton)) {
|
|
|
|
scene_manager_next_scene(scene_manager, iButtonSceneDeleteSuccess);
|
|
|
|
}
|
|
|
|
//TODO: What if the key could not be deleted?
|
|
|
|
} else if(event.event == GuiButtonTypeLeft) {
|
|
|
|
scene_manager_previous_scene(scene_manager);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ibutton_scene_delete_confirm_on_exit(void* context) {
|
|
|
|
iButton* ibutton = context;
|
|
|
|
ibutton_text_store_clear(ibutton);
|
|
|
|
widget_reset(ibutton->widget);
|
|
|
|
}
|