Files
Upsilon/apps/calculation/expression_field.h
Léa Saviot 117a6d460a [poincare] Stop exposing text/expressionlayout fields in ExpressionField
Change-Id: Ic1afb3f7c1f6bff5ea3bedc6f96bef986b74f6a8
2018-04-23 11:33:53 +02:00

18 lines
492 B
C++

#ifndef CALCULATION_EXPRESSION_FIELD_H
#define CALCULATION_EXPRESSION_FIELD_H
#include <escher.h>
namespace Calculation {
class ExpressionField : public ::ExpressionField {
public:
ExpressionField(Responder * parentResponder, char * textBuffer, int textBufferLength, Poincare::ExpressionLayout * layout, TextFieldDelegate * textFieldDelegate, ExpressionLayoutFieldDelegate * expressionLayoutFieldDelegate);
protected:
bool handleEvent(Ion::Events::Event event) override;
};
}
#endif