mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-28 18:20:14 +01:00
[apps] Add a code app
Change-Id: Icc72c378a6434b5d3b0af74f23e31ea7514882b8
This commit is contained in:
17
apps/code/editor_controller.h
Normal file
17
apps/code/editor_controller.h
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user