axmol/extensions/GUI/CCControlExtension/CCInvocation.h

45 lines
1.1 KiB
C
Raw Normal View History

/*
*
* Helper class to store targets and selectors (and eventually, params?) in the same CCMutableArray. Basically a very crude form of a NSInvocation
*/
#ifndef __CCINVOCATION_H__
#define __CCINVOCATION_H__
#include "cocoa/CCObject.h"
#include "ExtensionMacros.h"
NS_CC_EXT_BEGIN
2012-06-20 18:09:11 +08:00
/**
* @addtogroup GUI
* @{
* @addtogroup control_extension
* @{
*/
typedef unsigned int CCControlEvent;
typedef void (CCObject::*SEL_CCControlHandler)(CCObject*, CCControlEvent);
#define cccontrol_selector(_SELECTOR) (SEL_CCControlHandler)(&_SELECTOR)
class CCInvocation : public CCObject
{
CC_SYNTHESIZE_READONLY(SEL_CCControlHandler, m_action, Action);
CC_SYNTHESIZE_READONLY(CCObject*, m_target, Target);
CC_SYNTHESIZE_READONLY(CCControlEvent, m_controlEvent, ControlEvent);
public:
static CCInvocation* create(CCObject* target, SEL_CCControlHandler action, CCControlEvent controlEvent);
CCInvocation(CCObject* target, SEL_CCControlHandler action, CCControlEvent controlEvent);
void invoke(CCObject* sender);
};
2012-06-20 18:09:11 +08:00
// end of GUI group
/// @}
/// @}
NS_CC_EXT_END
2012-04-16 18:58:43 +08:00
#endif