Numworks Epsilon  1.4.1
Graphing Calculator Operating System
text_field.h
Go to the documentation of this file.
1 #ifndef CALCULATION_TEXT_FIELD_H
2 #define CALCULATION_TEXT_FIELD_H
3 
4 #include <escher.h>
5 
6 namespace Calculation {
7 
8 class TextField : public ::TextField {
9 public:
10  TextField(Responder * parentResponder, char * textBuffer, size_t textBufferSize, TextFieldDelegate * delegate);
11  bool handleEvent(Ion::Events::Event event) override;
12 };
13 
14 }
15 
16 #endif
bool handleEvent(Ion::Events::Event event) override
Definition: text_field.cpp:11
Responder * parentResponder() const
Definition: responder.cpp:12
TextField(Responder *parentResponder, char *textBuffer, size_t textBufferSize, TextFieldDelegate *delegate)
Definition: text_field.cpp:5