mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 16:20:49 +01:00
18 lines
387 B
C++
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
|