Custom event listener. More...
Inherits EventListener.
Inherited by EventListenerPhysicsContact, and EventListenerAssetsManagerEx.
Public Member Functions | |
virtual bool | checkAvailable () override |
Overrides. | |
virtual EventListenerCustom * | clone () override |
Clones the listener, its subclasses have to override this method. | |
Public Member Functions inherited from EventListener | |
virtual | ~EventListener () |
Destructor. | |
local | ~EventListener () |
Destructor. | |
void | setEnabled (bool enabled) |
Enables or disables the listener. More... | |
local | setEnabled ( local enabled) |
Enables or disables the listener. More... | |
bool | isEnabled () const |
Checks whether the listener is enabled. More... | |
local | isEnabled () |
Checks whether the listener is enabled. More... | |
Public Member Functions inherited from Ref | |
void | retain () |
Retains the ownership. More... | |
local | retain () |
Retains the ownership. More... | |
void | release () |
Releases the ownership immediately. More... | |
Ref * | autorelease () |
Releases the ownership sometime soon automatically. More... | |
unsigned int | getReferenceCount () const |
Returns the Ref's current reference count. More... | |
local | getReferenceCount () |
Returns the Ref's current reference count. More... | |
virtual | ~Ref () |
Destructor. | |
Static Public Member Functions | |
static EventListenerCustom * | create (const std::string &eventName, const std::function< void(EventCustom *)> &callback) |
Creates an event listener with name and callback. More... | |
local | create ( local eventName, local callback) |
Creates an event listener with name and callback. More... | |
Protected Member Functions | |
EventListenerCustom () | |
Constructor. | |
bool | init (const ListenerID &listenerId, const std::function< void(EventCustom *)> &callback) |
Initializes event with callback function. | |
Protected Member Functions inherited from EventListener | |
EventListener () | |
Constructor. | |
EventListener () | |
Constructor. | |
bool | init (Type t, const ListenerID &listenerID, const std::function< void(Event *)> &callback) |
Initializes event with type and callback function. | |
local | init ( local t, local listenerID, local callback) |
Initializes event with type and callback function. | |
Additional Inherited Members | |
Public Types inherited from EventListener | |
enum | Type |
Type Event type. | |
Public Attributes inherited from Ref | |
unsigned int | _ID |
object id, ScriptSupport need public _ID | |
local | _ID |
object id, ScriptSupport need public _ID | |
int | _luaID |
Lua reference id. | |
local | _luaID |
Lua reference id. | |
void * | _scriptObject |
scriptObject, support for swift | |
local | _scriptObject |
scriptObject, support for swift | |
bool | _rooted |
When true, it means that the object was already rooted. | |
local | _rooted |
When true, it means that the object was already rooted. | |
bool | _scriptOwned |
The life of the object is scrolled by the scripting engine. More... | |
local | _scriptOwned |
The life of the object is scrolled by the scripting engine. More... | |
Custom event listener.
auto dispatcher = Director::getInstance()->getEventDispatcher(); Adds a listener:
auto callback = [](EventCustom* event){ do_some_thing(); }; auto listener = EventListenerCustom::create(callback); dispatcher->addEventListenerWithSceneGraphPriority(listener, one_node);
Dispatches a custom event:
EventCustom event("your_event_type"); dispatcher->dispatchEvent(&event);
Removes a listener
dispatcher->removeEventListener(listener);
|
static |
Creates an event listener with name and callback.
The name of the event. The callback function when the specified event was emitted. An autoreleased EventListenerCustom object.
|
static |
Creates an event listener with name and callback.
The name of the event. The callback function when the specified event was emitted. An autoreleased EventListenerCustom object.
|
static |
Creates an event listener with name and callback.
The name of the event. The callback function when the specified event was emitted. An autoreleased EventListenerCustom object.