mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
EditableExpressionView is renamed ScrollableViewWithCursor. EditableExpressionView is now a View that displays either a TextField or a ScrollableViewWithCursor, depending on Poincare::Preferences. Change-Id: Id44ddcd9a83f5fd17d65753ca4c94c5c7cda9b8a
18 lines
477 B
C++
18 lines
477 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, TextFieldDelegate * textFieldDelegate, ScrollableExpressionViewWithCursorDelegate * scrollableExpressionViewWithCursorDelegate);
|
|
protected:
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|