Files
Upsilon/apps/calculation/text_field.h
Émilie Feral 8f1d37c28c [escher] Add a cursor to text fields
Change-Id: Ib4a80a3c6d4b5d76cb56645275e8ecc6d69528ca
2017-03-08 15:42:14 +01:00

17 lines
343 B
C++

#ifndef CALCULATION_TEXT_FIELD_H
#define CALCULATION_TEXT_FIELD_H
#include <escher.h>
namespace Calculation {
class TextField : public ::TextField {
public:
TextField(Responder * parentResponder, char * textBuffer, size_t textBufferSize, TextFieldDelegate * delegate);
bool handleEvent(Ion::Events::Event event) override;
};
}
#endif