4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
31 lines
931 B
C++
31 lines
931 B
C++
#include "../infrared_app.h"
|
|
|
|
void InfraredAppSceneEditRenameDone::on_enter(InfraredApp* app) {
|
|
InfraredAppViewManager* view_manager = app->get_view_manager();
|
|
Popup* popup = view_manager->get_popup();
|
|
|
|
popup_set_icon(popup, 32, 5, &I_DolphinNice_96x59);
|
|
popup_set_header(popup, "Saved!", 5, 7, AlignLeft, AlignTop);
|
|
|
|
popup_set_callback(popup, InfraredApp::popup_callback);
|
|
popup_set_context(popup, app);
|
|
popup_set_timeout(popup, 1500);
|
|
popup_enable_timeout(popup);
|
|
|
|
view_manager->switch_to(InfraredAppViewManager::ViewId::Popup);
|
|
}
|
|
|
|
bool InfraredAppSceneEditRenameDone::on_event(InfraredApp* app, InfraredAppEvent* event) {
|
|
bool consumed = false;
|
|
|
|
if(event->type == InfraredAppEvent::Type::PopupTimer) {
|
|
app->switch_to_next_scene(InfraredApp::Scene::Remote);
|
|
consumed = true;
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void InfraredAppSceneEditRenameDone::on_exit(InfraredApp*) {
|
|
}
|