2022-01-05 16:10:18 +00:00
|
|
|
#include "ibutton_scene_select_key.h"
|
|
|
|
#include "../ibutton_app.h"
|
|
|
|
#include "../ibutton_event.h"
|
|
|
|
#include "../ibutton_key.h"
|
2021-05-21 11:21:20 +00:00
|
|
|
|
|
|
|
void iButtonSceneSelectKey::on_enter(iButtonApp* app) {
|
|
|
|
// Process file_select return
|
2021-05-26 16:50:16 +00:00
|
|
|
if(app->load_key()) {
|
2021-05-21 11:21:20 +00:00
|
|
|
app->switch_to_next_scene(iButtonApp::Scene::SceneSavedKeyMenu);
|
|
|
|
} else {
|
|
|
|
app->switch_to_previous_scene();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool iButtonSceneSelectKey::on_event(iButtonApp* app, iButtonEvent* event) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void iButtonSceneSelectKey::on_exit(iButtonApp* app) {
|
|
|
|
}
|