* Do not load all signals at once (Draft) * Minor cleanup * Refactor remote renaming * Improve function signatures * Rename infrared_remote functions * Optimise signal loading * Implement adding signals to remote * Add read_name() method * Deprecate a function * Partially implement deleting signals (draft) * Use m-array instead of m-list for signal name directory * Use plain C strings instead of furi_string * Implement deleting signals * Implement deleting signals via generalised callback * Implement renaming signals * Rename some types * Some more renaming * Remove unused type * Implement inserting signals (internal use) * Improve InfraredMoveView * Send an event to move a signal * Remove unused type * Implement moving signals * Implement creating new remotes with one signal * Un-deprecate and rename a function * Add InfraredRemote API docs * Add InfraredSignal API docs * Better error messages * Show progress pop-up when moving buttons in a remote * Copy labels to the InfraredMoveView to avoid pointer invalidation * Improve file selection scene * Show progress pop-up when renaming buttons in a remote * Refactor a scene * Show progress when deleting a button from remote * Use a random name for temp files * Add docs to infrared_brute_force.h * Rename Infrared type to InfraredApp * Add docs to infrared_app_i.h Co-authored-by: あく <alleteam@gmail.com>
49 lines
1.8 KiB
C
49 lines
1.8 KiB
C
#include "../infrared_app_i.h"
|
|
|
|
void infrared_scene_edit_delete_done_on_enter(void* context) {
|
|
InfraredApp* infrared = context;
|
|
Popup* popup = infrared->popup;
|
|
|
|
popup_set_icon(popup, 0, 2, &I_DolphinMafia_115x62);
|
|
popup_set_header(popup, "Deleted", 83, 19, AlignLeft, AlignBottom);
|
|
|
|
popup_set_callback(popup, infrared_popup_closed_callback);
|
|
popup_set_context(popup, context);
|
|
popup_set_timeout(popup, 1500);
|
|
popup_enable_timeout(popup);
|
|
|
|
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewPopup);
|
|
}
|
|
|
|
bool infrared_scene_edit_delete_done_on_event(void* context, SceneManagerEvent event) {
|
|
InfraredApp* infrared = context;
|
|
SceneManager* scene_manager = infrared->scene_manager;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == InfraredCustomEventTypePopupClosed) {
|
|
const InfraredEditTarget edit_target = infrared->app_state.edit_target;
|
|
if(edit_target == InfraredEditTargetButton) {
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
scene_manager, InfraredSceneRemote);
|
|
} else if(edit_target == InfraredEditTargetRemote) {
|
|
const uint32_t possible_scenes[] = {InfraredSceneStart, InfraredSceneRemoteList};
|
|
if(!scene_manager_search_and_switch_to_previous_scene_one_of(
|
|
scene_manager, possible_scenes, COUNT_OF(possible_scenes))) {
|
|
view_dispatcher_stop(infrared->view_dispatcher);
|
|
}
|
|
} else {
|
|
furi_assert(0);
|
|
}
|
|
consumed = true;
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void infrared_scene_edit_delete_done_on_exit(void* context) {
|
|
InfraredApp* infrared = context;
|
|
UNUSED(infrared);
|
|
}
|