Go to the
documentation of this file.
00001
00004 #ifndef FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_H
00005 #define FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_H
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #include <fbxfilesdk/fbxfilesdk_def.h>
00042
00043
00044 #include <fbxfilesdk/kfbxevents/kfbxevents.h>
00045
00046
00047 #include <fbxfilesdk/components/kbaselib/klib/kintrusivelist.h>
00048
00049
00050 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00051 namespace kfbxevents
00052 {
00053 class KFbxListener;
00054
00055
00072 class KFbxEventHandler
00073 {
00074 public:
00075 enum
00076 {
00077 eNODE_LISTENER = 0,
00078 eNODE_EMITTER,
00079 eNODE_COUNT
00080 };
00081
00084 KFbxEventHandler(){}
00085
00088 virtual ~KFbxEventHandler(){}
00089
00090
00094 virtual int GetHandlerEventType() = 0;
00095
00100 virtual void FunctionCall(const KFbxEventBase& pEvent) = 0;
00101
00105 virtual KFbxListener* GetListener() = 0;
00106
00107 KFBX_LISTNODE(KFbxEventHandler, eNODE_COUNT);
00108 };
00109
00111
00112
00113
00114
00115
00116
00118 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00119
00120 template <typename EventType, typename ListenerType>
00121 class KFbxMemberFuncEventHandler : public KFbxEventHandler
00122 {
00123
00124
00125 typedef void (ListenerType::*CBFunction)(const EventType*);
00126
00127 public:
00128 KFbxMemberFuncEventHandler(ListenerType* pListenerInstance, CBFunction pFunc) :
00129 mListener(pListenerInstance),
00130 mFunc(pFunc)
00131 {
00132 }
00133
00134
00135 virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }
00136 virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mListener.*mFunc)(reinterpret_cast<const EventType*>(&pEvent)); }
00137 virtual KFbxListener* GetListener(){ return mListener;}
00138 private:
00139 ListenerType* mListener;
00140
00141
00142 CBFunction mFunc;
00143 };
00144
00145
00146 template <typename EventType, typename ListenerType>
00147 class KFbxConstMemberFuncEventHandler : public KFbxEventHandler
00148 {
00149
00150
00151
00152 typedef void (ListenerType::*CBFunction)(const EventType*)const;
00153
00154 public:
00155 KFbxConstMemberFuncEventHandler(ListenerType* pListenerInstance, CBFunction pFunc) :
00156 mListener(pListenerInstance),
00157 mFunc(pFunc)
00158 {
00159 }
00160
00161
00162 virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }
00163 virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mListener.*mFunc)(reinterpret_cast<const EventType*>(&pEvent)); }
00164 virtual KFbxListener* GetListener(){ return mListener;}
00165 private:
00166 ListenerType* mListener;
00167
00168
00169 CBFunction mFunc;
00170 };
00171
00172
00173 template <typename EventType>
00174 class KFbxFuncEventHandler : public KFbxEventHandler
00175 {
00176
00177
00178 typedef void (*CBFunction)(const EventType*,KFbxListener*);
00179
00180 public:
00181 KFbxFuncEventHandler(KFbxListener* pListener, CBFunction pFunc) :
00182 mListener(pListener),
00183 mFunc(pFunc)
00184 {
00185 }
00186
00187
00188 virtual int GetHandlerEventType(){ return EventType::GetStaticTypeId(); }
00189 virtual void FunctionCall(const KFbxEventBase& pEvent){ (*mFunc)(reinterpret_cast<const EventType*>(&pEvent),mListener); }
00190 virtual KFbxListener* GetListener(){ return mListener; }
00191 private:
00192 KFbxListener* mListener;
00193
00194
00195 CBFunction mFunc;
00196 };
00197 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00198 }
00199
00200 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00201
00202 #endif // FBXFILESDK_KFBXEVENTS_KFBXEVENTHANDLER_H
00203