Files
Upsilon/apps/shared/parameter_text_field_delegate.h
Émilie Feral 83b5798850 [apps] Factorize code: textFieldDidReceiveEvent implementation is
identical for all parameters controller
2017-12-20 17:41:03 +01:00

21 lines
481 B
C++

#ifndef SHARED_PARAMETER_TEXT_FIELD_DELEGATE_H
#define SHARED_PARAMETER_TEXT_FIELD_DELEGATE_H
#include <escher.h>
#include "text_field_delegate.h"
#include "text_field_delegate_app.h"
namespace Shared {
/* This textField delegate implements the behaviour of textField delegate in
* parameter menu. */
class ParameterTextFieldDelegate : public TextFieldDelegate {
public:
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
};
}
#endif