axmol/tools/tolua++/CCKeypadDelegate.pkg

30 lines
492 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
namespace cocos2d {
class CCKeypadDelegate
{
void KeypadDestroy();
void KeypadKeep();
// The back key clicked
void keyBackClicked();
// The menu key clicked. only avialble on wophone & android
void keyMenuClicked();
};
class CCKeypadHandler : public CCObject
{
CCKeypadDelegate* getDelegate();
void setDelegate(CCKeypadDelegate *pDelegate);
bool initWithDelegate(CCKeypadDelegate *pDelegate);
};
} //namespace cocos2d