cocos2d-x  3.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
EditBoxDelegate Class Referenceabstract

#include <UIEditBox.h>

Public Member Functions

virtual ~EditBoxDelegate ()
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...
 

Constructor & Destructor Documentation

virtual ~EditBoxDelegate ( )
inlinevirtual

Member Function Documentation

virtual void editBoxEditingDidBegin ( EditBox editBox)
inlinevirtual

This method is called when an edit box gains focus after keyboard is shown.

Parameters
editBoxThe edit box object that generated the event.
virtual void editBoxEditingDidEnd ( EditBox editBox)
inlinevirtual

This method is called when an edit box loses focus after keyboard is hidden.

Parameters
editBoxThe edit box object that generated the event.
virtual void editBoxReturn ( EditBox editBox)
pure virtual

This method is called when the return button was pressed or the outside area of keyboard was touched.

Parameters
editBoxThe edit box object that generated the event.
virtual void editBoxTextChanged ( EditBox editBox,
const std::string &  text 
)
inlinevirtual

This method is called when the edit box text was changed.

Parameters
editBoxThe edit box object that generated the event.
textThe new text.

The documentation for this class was generated from the following file: