Files
Upsilon/apps/expression_text_field_delegate.h
Émilie Feral a6b251510f [apps] Handle math error in expression text field
Change-Id: I908e96cbe1d88e519020b83ddc8f06c7b1240aaa
2016-11-07 09:54:01 +01:00

14 lines
352 B
C++

#ifndef APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
#define APPS_EXPRESSION_TEXT_FIELD_DELEGATE_H
#include <escher.h>
#include <poincare.h>
class ExpressionTextFieldDelegate : public TextFieldDelegate {
public:
virtual Context * evaluateContext() = 0;
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
};
#endif