Blame view

Giac_maj/epsilon-giac/apps/calculation/text_field.h 343 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef CALCULATION_TEXT_FIELD_H
  #define CALCULATION_TEXT_FIELD_H
  
  #include <escher.h>
  
  namespace Calculation {
  
  class TextField : public ::TextField {
  public:
    TextField(Responder * parentResponder, char * textBuffer, size_t textBufferSize, TextFieldDelegate * delegate);
    bool handleEvent(Ion::Events::Event event) override;
  };
  
  }
  
  #endif