4cf000f270
* Update MLib to latest master. * Archive: update string_t usage, add unsafe usage TODO, change model type to blocking and fix invalid usage. * Gui: update text_input API and it's usage. * fix blocking model issues * fix unsafe string_t usage Co-authored-by: Igor Baranov <bedtimeposts@gmail.com> Co-authored-by: its your bedtime <23366927+itsyourbedtime@users.noreply.github.com>
12 lines
311 B
C++
12 lines
311 B
C++
#pragma once
|
|
#include "ibutton-scene-generic.h"
|
|
|
|
class iButtonSceneSaveName : public iButtonScene {
|
|
public:
|
|
void on_enter(iButtonApp* app) final;
|
|
bool on_event(iButtonApp* app, iButtonEvent* event) final;
|
|
void on_exit(iButtonApp* app) final;
|
|
|
|
private:
|
|
void text_input_callback(void* context);
|
|
}; |