Files
Upsilon/apps/calculation/text_field.h
Émilie Feral 8c284ba34f [escher][apps] CHange textField API
Change-Id: I766d153b7f7429473f297707a08358051123accc
2016-12-15 13:51:40 +01:00

18 lines
387 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;
void setEditing(bool isEditing) override;
};
}
#endif