2022-02-10 13:01:49 +00:00
|
|
|
#include "../archive_i.h"
|
|
|
|
#include "../helpers/archive_favorites.h"
|
|
|
|
#include "../helpers/archive_files.h"
|
|
|
|
#include "../helpers/archive_apps.h"
|
|
|
|
#include "../helpers/archive_browser.h"
|
|
|
|
|
|
|
|
#define SCENE_DELETE_CUSTOM_EVENT (0UL)
|
|
|
|
#define MAX_TEXT_INPUT_LEN 22
|
|
|
|
|
|
|
|
void archive_scene_delete_widget_callback(GuiButtonType result, InputType type, void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
ArchiveApp* app = (ArchiveApp*)context;
|
|
|
|
if(type == InputTypeShort) {
|
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void archive_scene_delete_on_enter(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
ArchiveApp* app = (ArchiveApp*)context;
|
|
|
|
|
|
|
|
widget_add_button_element(
|
2022-04-19 08:07:35 +00:00
|
|
|
app->widget, GuiButtonTypeLeft, "Cancel", archive_scene_delete_widget_callback, app);
|
2022-02-10 13:01:49 +00:00
|
|
|
widget_add_button_element(
|
|
|
|
app->widget, GuiButtonTypeRight, "Delete", archive_scene_delete_widget_callback, app);
|
|
|
|
|
|
|
|
ArchiveFile_t* current = archive_get_current_file(app->browser);
|
|
|
|
strlcpy(app->text_store, string_get_cstr(current->name), MAX_NAME_LEN);
|
|
|
|
char* name = strrchr(app->text_store, '/');
|
|
|
|
if(name != NULL) {
|
|
|
|
name++;
|
|
|
|
}
|
|
|
|
|
|
|
|
char delete_str[64];
|
|
|
|
snprintf(delete_str, sizeof(delete_str), "\e#Delete %s?\e#", name);
|
2022-04-19 19:23:50 +00:00
|
|
|
widget_add_text_box_element(
|
|
|
|
app->widget, 0, 0, 128, 23, AlignCenter, AlignCenter, delete_str, false);
|
2022-02-10 13:01:49 +00:00
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, ArchiveViewWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool archive_scene_delete_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
furi_assert(context);
|
|
|
|
ArchiveApp* app = (ArchiveApp*)context;
|
|
|
|
|
|
|
|
ArchiveBrowserView* browser = app->browser;
|
|
|
|
ArchiveFile_t* selected = archive_get_current_file(browser);
|
|
|
|
const char* name = archive_get_name(browser);
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
if(event.event == GuiButtonTypeRight) {
|
|
|
|
if(selected->is_app) {
|
|
|
|
archive_app_delete_file(browser, name);
|
|
|
|
} else {
|
|
|
|
archive_delete_file(browser, "%s", name);
|
|
|
|
}
|
|
|
|
archive_show_file_menu(browser, false);
|
|
|
|
return scene_manager_previous_scene(app->scene_manager);
|
|
|
|
} else if(event.event == GuiButtonTypeLeft) {
|
|
|
|
return scene_manager_previous_scene(app->scene_manager);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void archive_scene_delete_on_exit(void* context) {
|
|
|
|
furi_assert(context);
|
|
|
|
ArchiveApp* app = (ArchiveApp*)context;
|
|
|
|
|
|
|
|
widget_reset(app->widget);
|
|
|
|
}
|