axmol/extensions/fairygui/event/UIEventDispatcher.h

80 lines
2.2 KiB
C++

#ifndef __UIEVENTDISPATCHER_H__
#define __UIEVENTDISPATCHER_H__
#include "FairyGUIMacros.h"
#include "cocos2d.h"
#include "EventContext.h"
#include "UIEventType.h"
NS_FGUI_BEGIN
typedef std::function<void(EventContext* context)> EventCallback;
class EventTag
{
public:
static const EventTag None;
EventTag();
explicit EventTag(void* ptr);
explicit EventTag(int value);
explicit EventTag(const EventTag& other);
explicit EventTag(EventTag&& other);
~EventTag();
EventTag& operator= (const EventTag& other);
EventTag& operator= (EventTag&& other);
EventTag& operator= (void* ptr);
EventTag& operator= (int v);
bool operator!= (const EventTag& v);
bool operator!= (const EventTag& v) const;
bool operator== (const EventTag& v);
bool operator== (const EventTag& v) const;
bool isNone() const { return _value == 0; }
private:
uintptr_t _value;
};
class InputProcessor;
class UIEventDispatcher : public ax::Ref
{
public:
UIEventDispatcher();
virtual ~UIEventDispatcher();
void addEventListener(int eventType, const EventCallback& callback) { return addEventListener(eventType, callback, EventTag::None); }
void addEventListener(int eventType, const EventCallback& callback, const EventTag& tag);
void removeEventListener(int eventType) { removeEventListener(eventType, EventTag::None); }
void removeEventListener(int eventType, const EventTag& tag);
void removeEventListeners();
bool hasEventListener(int eventType) const { return hasEventListener(eventType, EventTag::None); }
bool hasEventListener(int eventType, const EventTag& tag) const;
bool dispatchEvent(int eventType, void* data = nullptr, const ax::Value& dataValue = ax::Value::Null);
bool bubbleEvent(int eventType, void* data = nullptr, const ax::Value& dataValue = ax::Value::Null);
bool isDispatchingEvent(int eventType);
private:
void doDispatch(int eventType, EventContext* context);
void doBubble(int eventType, EventContext* context);
struct EventCallbackItem
{
EventCallback callback;
int eventType;
EventTag tag;
int dispatching;
};
std::vector<EventCallbackItem*> _callbacks;
int _dispatching;
};
NS_FGUI_END
#endif