Blame view

emulateur/epsilon-nofrendo/apps/shared/text_field_delegate.cpp 595 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
  #include "text_field_delegate.h"
  
  using namespace Poincare;
  
  namespace Shared {
  
  bool TextFieldDelegate::textFieldShouldFinishEditing(TextField * textField, Ion::Events::Event event) {
    return textFieldDelegateApp()->textFieldShouldFinishEditing(textField, event);
  }
  
  bool TextFieldDelegate::textFieldDidReceiveEvent(::TextField * textField, Ion::Events::Event event) {
    return textFieldDelegateApp()->textFieldDidReceiveEvent(textField, event);
  }
  
  Toolbox * TextFieldDelegate::toolboxForTextInput(TextInput * textInput) {
    return textFieldDelegateApp()->toolboxForTextInput(textInput);
  }
  
  }