* C++ apps: templated scene controller * templated app: fix type names * templated app: text store component * Applications: add "Templated Scene" application * templated app: refractoring * Gui module byte input: fix docs * templated app: new byte input scene * templated app: dialog ex view module * templated app: popup view module * templated app: dialog-ex view module, fix docs * templated app: text input view module * Gui module text input: fix docs * Furi: duplicated include * templated app: record holder (controller) class * templated app: view modules can now be accessed via cast * templated app: remove unused includes * templated app: fix return code
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "scened-app-scene-start.h"
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    SubmenuByteInput,
 | 
						|
} SubmenuIndex;
 | 
						|
 | 
						|
void ScenedAppSceneStart::on_enter(ScenedApp* app, bool need_restore) {
 | 
						|
    auto submenu = app->view_controller.get<SubmenuVM>();
 | 
						|
    auto callback = cbc::obtain_connector(this, &ScenedAppSceneStart::submenu_callback);
 | 
						|
 | 
						|
    submenu->add_item("Byte Input", SubmenuByteInput, callback, app);
 | 
						|
 | 
						|
    if(need_restore) {
 | 
						|
        submenu->set_selected_item(submenu_item_selected);
 | 
						|
    }
 | 
						|
    app->view_controller.switch_to<SubmenuVM>();
 | 
						|
}
 | 
						|
 | 
						|
bool ScenedAppSceneStart::on_event(ScenedApp* app, ScenedApp::Event* event) {
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event->type == ScenedApp::EventType::MenuSelected) {
 | 
						|
        submenu_item_selected = event->payload.menu_index;
 | 
						|
        switch(event->payload.menu_index) {
 | 
						|
        case SubmenuByteInput:
 | 
						|
            app->scene_controller.switch_to_next_scene(ScenedApp::SceneType::ByteInputScene);
 | 
						|
            break;
 | 
						|
        }
 | 
						|
        consumed = true;
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void ScenedAppSceneStart::on_exit(ScenedApp* app) {
 | 
						|
    app->view_controller.get<SubmenuVM>()->clean();
 | 
						|
}
 | 
						|
 | 
						|
void ScenedAppSceneStart::submenu_callback(void* context, uint32_t index) {
 | 
						|
    ScenedApp* app = static_cast<ScenedApp*>(context);
 | 
						|
    ScenedApp::Event event;
 | 
						|
 | 
						|
    event.type = ScenedApp::EventType::MenuSelected;
 | 
						|
    event.payload.menu_index = index;
 | 
						|
 | 
						|
    app->view_controller.send_event(&event);
 | 
						|
}
 |