* Makefile, Scripts: new linter * About: remove ID from IC * Firmware: remove double define for DIVC/DIVR * Scripts: check folder names too. Docker: replace syntax check with make lint. * Reformat Sources and Migrate to new file naming convention * Docker: symlink clang-format-12 to clang-format * Add coding style guide
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "../irda_app.h"
 | 
						|
#include "gui/modules/submenu.h"
 | 
						|
 | 
						|
static void submenu_callback(void* context, uint32_t index) {
 | 
						|
    IrdaApp* app = static_cast<IrdaApp*>(context);
 | 
						|
    IrdaAppEvent event;
 | 
						|
 | 
						|
    event.type = IrdaAppEvent::Type::MenuSelected;
 | 
						|
    event.payload.menu_index = index;
 | 
						|
 | 
						|
    app->get_view_manager()->send_event(&event);
 | 
						|
}
 | 
						|
 | 
						|
void IrdaAppSceneEditKeySelect::on_enter(IrdaApp* app) {
 | 
						|
    IrdaAppViewManager* view_manager = app->get_view_manager();
 | 
						|
    Submenu* submenu = view_manager->get_submenu();
 | 
						|
    int item_number = 0;
 | 
						|
 | 
						|
    const char* header = app->get_edit_action() == IrdaApp::EditAction::Rename ? "Rename key:" :
 | 
						|
                                                                                 "Delete key:";
 | 
						|
    submenu_set_header(submenu, header);
 | 
						|
 | 
						|
    auto remote_manager = app->get_remote_manager();
 | 
						|
    buttons_names = remote_manager->get_button_list();
 | 
						|
    for(const auto& it : buttons_names) {
 | 
						|
        submenu_add_item(submenu, it.c_str(), item_number++, submenu_callback, app);
 | 
						|
    }
 | 
						|
    if((item_number > 0) && (app->get_current_button() != IrdaApp::ButtonNA)) {
 | 
						|
        submenu_set_selected_item(submenu, app->get_current_button());
 | 
						|
        app->set_current_button(IrdaApp::ButtonNA);
 | 
						|
    }
 | 
						|
 | 
						|
    view_manager->switch_to(IrdaAppViewManager::ViewType::Submenu);
 | 
						|
}
 | 
						|
 | 
						|
bool IrdaAppSceneEditKeySelect::on_event(IrdaApp* app, IrdaAppEvent* event) {
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event->type == IrdaAppEvent::Type::MenuSelected) {
 | 
						|
        app->set_current_button(event->payload.menu_index);
 | 
						|
        consumed = true;
 | 
						|
        if(app->get_edit_action() == IrdaApp::EditAction::Rename) {
 | 
						|
            app->switch_to_next_scene(IrdaApp::Scene::EditRename);
 | 
						|
        } else {
 | 
						|
            app->switch_to_next_scene(IrdaApp::Scene::EditDelete);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void IrdaAppSceneEditKeySelect::on_exit(IrdaApp* app) {
 | 
						|
    IrdaAppViewManager* view_manager = app->get_view_manager();
 | 
						|
    Submenu* submenu = view_manager->get_submenu();
 | 
						|
 | 
						|
    submenu_clean(submenu);
 | 
						|
}
 |