Added utilities > Frequency manager + load/save

This commit is contained in:
furrtek
2016-12-26 01:31:38 +01:00
parent ad2a4b6743
commit 7df5987b3b
21 changed files with 526 additions and 219 deletions
+8 -1
View File
@@ -20,14 +20,21 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __UI_TEXTENTRY_H__
#define __UI_TEXTENTRY_H__
#include "ui.hpp"
#include "ui_navigation.hpp"
#include "ui_handwrite.hpp"
#include "ui_alphanum.hpp"
#include "portapack_persistent_memory.hpp"
// TODO: Make class
namespace ui {
bool textentry(NavigationView& nav, char * str, size_t max_length);
bool textentry(NavigationView& nav, char * str, size_t max_length, const std::function<void(char *)> on_done = nullptr);
} /* namespace ui */
#endif/*__UI_TEXTENTRY_H__*/