pdf/plugin_impl/listeners.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef UTILS_LISTENER_H_
00028 #define UTILS_LISTENER_H_
00029
00030
00031 #include <vector>
00032 #include <map>
00033 #include "plugin_inc.h"
00034
00035 namespace utils
00036 {
00037
00038
00039
00040
00041
00042 class Listeners
00043 {
00044 public:
00045 Listeners(void);
00046 ~Listeners(void);
00047
00048 public:
00049
00050
00051
00052 unsigned long add_listener(const PluginEvent event_type,
00053 EventFunc callback,
00054 void * user_data);
00055
00056
00057 bool remove_listener(unsigned long handler_id);
00058
00059
00060 void broadcast(IPluginUnknown *sender,
00061 const PluginEvent event_type,
00062 const PluginEventAttrs *plugin_data);
00063
00064 private:
00065
00066
00067 struct ListenerData
00068 {
00069 EventFunc callback;
00070 void * user_data;
00071 unsigned long handler_id;
00072 };
00073 typedef ListenerData * DataPtr;
00074 typedef std::vector<DataPtr> Datas;
00075 typedef std::vector<DataPtr>::iterator DatasIter;
00076 typedef std::map<PluginEvent, Datas> ListenerMap;
00077 typedef std::map<PluginEvent, Datas>::iterator ListenerMapIter;
00078 ListenerMap listeners;
00079 unsigned long handler_id;
00080
00081 private:
00082 void broadcast_to_vector(Datas & listeners,
00083 IPluginUnknown *sender,
00084 const PluginEvent event_type,
00085 const PluginEventAttrs *plugin_data);
00086
00087 bool remove_from_vector(unsigned long handler_id,
00088 Datas & listeners);
00089
00090 };
00091
00092 };
00093
00094 #endif // UTILS_LISTENER_H_
00095