mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
19 lines
424 B
C++
19 lines
424 B
C++
#ifndef SHARED_PARAMETER_TEXT_FIELD_DELEGATE_H
|
|
#define SHARED_PARAMETER_TEXT_FIELD_DELEGATE_H
|
|
|
|
#include "text_field_delegate.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
|