Files
Upsilon/apps/shared/text_field_delegate.h
Émilie Feral c584d1fb4e [escher] Add toolbox event handling in responder [apps] Correct the text
field delegate app accordingly

Change-Id: I180fe53aaa1e0929b357d3985f584937fba2ecca
2017-02-20 10:48:50 +01:00

21 lines
478 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 textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
Toolbox * toolboxForTextField(TextField * textField) override;
private:
virtual TextFieldDelegateApp * textFieldDelegateApp() = 0;
};
}
#endif