mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
22 lines
573 B
C++
22 lines
573 B
C++
#ifndef SHARED_TEXT_FIELD_DELEGATE_H
|
|
#define SHARED_TEXT_FIELD_DELEGATE_H
|
|
|
|
#include <escher.h>
|
|
#include "text_field_delegate_app.h"
|
|
#include <poincare.h>
|
|
|
|
namespace Shared {
|
|
|
|
class TextFieldDelegate : public ::TextFieldDelegate {
|
|
public:
|
|
bool textFieldShouldFinishEditing(TextField * textField, Ion::Events::Event event) override;
|
|
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
|
|
Toolbox * toolboxForTextInput(TextInput * textInput) override;
|
|
private:
|
|
virtual TextFieldDelegateApp * textFieldDelegateApp() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|