mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 15:50:49 +01:00
18 lines
456 B
C++
18 lines
456 B
C++
#ifndef CALCULATION_EDITABLE_EXPRESSION_VIEW_H
|
|
#define CALCULATION_EDITABLE_EXPRESSION_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Calculation {
|
|
|
|
class EditableExpressionView : public ::EditableExpressionView {
|
|
public:
|
|
EditableExpressionView(Responder * parentResponder, Poincare::ExpressionLayout * expressionLayout, EditableExpressionViewDelegate * delegate = nullptr);
|
|
protected:
|
|
bool privateHandleEvent(Ion::Events::Event event) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|