This kind of object is posted into the Qt event queue in order to call some method from the GUI thread. More...
Public Member Functions | |
QmitkCallbackEvent (itk::Command *cmd, itk::EventObject *e) | |
~QmitkCallbackEvent () | |
itk::Command * | command () |
itk::EventObject * | itkevent () |
Protected Attributes | |
itk::Command::Pointer | m_Command |
itk::EventObject * | m_Event |
This kind of object is posted into the Qt event queue in order to call some method from the GUI thread.
Definition at line 24 of file QmitkCallbackFromGUIThread.cpp.
QmitkCallbackEvent::QmitkCallbackEvent | ( | itk::Command * | cmd, |
itk::EventObject * | e | ||
) | [inline] |
Definition at line 23 of file QmitkCallbackFromGUIThread.cpp.
: public QEvent { public:
QmitkCallbackEvent::~QmitkCallbackEvent | ( | ) | [inline] |
Definition at line 30 of file QmitkCallbackFromGUIThread.cpp.
itk::Command* QmitkCallbackEvent::command | ( | ) | [inline] |
Definition at line 35 of file QmitkCallbackFromGUIThread.cpp.
References m_Event.
Referenced by QmitkCallbackFromGUIThread::event().
{ delete m_Event;
itk::EventObject* QmitkCallbackEvent::itkevent | ( | ) | [inline] |
Definition at line 40 of file QmitkCallbackFromGUIThread.cpp.
References m_Command.
Referenced by QmitkCallbackFromGUIThread::event().
{ return m_Command;
itk::Command::Pointer QmitkCallbackEvent::m_Command [protected] |
Definition at line 47 of file QmitkCallbackFromGUIThread.cpp.
Referenced by itkevent().
itk::EventObject* QmitkCallbackEvent::m_Event [protected] |
Definition at line 48 of file QmitkCallbackFromGUIThread.cpp.
Referenced by command().