#include <map>
#include <functional>
#include <corelib/ncbiexpt.hpp>
#include <corelib/ncbimtx.hpp>
#include <gui/utils/event.hpp>
Go to the source code of this file.
Go to the SVN repository for this file.
|
#define | DECLARE_EVENT_MAP() |
|
#define | BEGIN_EVENT_MAP(thisClass, baseClass) |
| Begins definition of Command Map for CEventHandler-derived class. More...
|
|
#define | END_EVENT_MAP() |
| Ends definition of Command Map. More...
|
|
#define | ON_EVENT(type, id, handler) { ncbi::CEvent::eEvent_Message, typeid(type).name(), id, id, (FEventHandler) handler }, |
|
#define | ON_EVENT_RANGE(type, id, id_last, handler) { CEvent::eEvent_Message, typeid(type).name(), id, id_last, (FEventHandler) handler }, |
|