Blame view

Modif/epsilon-master/apps/shared/parameter_text_field_delegate.h 481 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #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