Editbox delgate class. More...
Public Member Functions | |
virtual void | editBoxEditingDidBegin (EditBox *editBox) |
This method is called when an edit box gains focus after keyboard is shown. More... | |
virtual void | editBoxEditingDidEnd (EditBox *editBox) |
This method is called when an edit box loses focus after keyboard is hidden. More... | |
virtual void | editBoxTextChanged (EditBox *editBox, const std::string &text) |
This method is called when the edit box text was changed. More... | |
virtual void | editBoxReturn (EditBox *editBox)=0 |
This method is called when the return button was pressed or the outside area of keyboard was touched. More... | |
Editbox delgate class.
It's useful when you want to do some customization duing Editbox input event
|
inlinevirtual |
This method is called when an edit box gains focus after keyboard is shown.
The edit box object that generated the event.
|
inlinevirtual |
This method is called when an edit box loses focus after keyboard is hidden.
The edit box object that generated the event.
|
inlinevirtual |
This method is called when the edit box text was changed.
The edit box object that generated the event. The new text.
|
pure virtual |
This method is called when the return button was pressed or the outside area of keyboard was touched.
The edit box object that generated the event.