[apps] Add a code app

Change-Id: Icc72c378a6434b5d3b0af74f23e31ea7514882b8
This commit is contained in:
Romain Goyet
2017-08-03 23:28:56 +02:00
parent 20e1554a13
commit 19cf3a4958
8 changed files with 114 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#ifndef CODE_EDITOR_CONTROLLER_H
#define CODE_EDITOR_CONTROLLER_H
#include <escher.h>
class EditorController : public ViewController {
public:
EditorController(Responder * parentResponder);
View * view() override;
void didBecomeFirstResponder() override;
private:
char buffer[256];
TextArea m_view;
};
#endif