* IR: Doxygen docs, some rename * Rename irda -> infrared * Rollback collateral renames Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			936 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			936 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* app) {
 | 
						|
}
 |