Medical Imaging Interaction Toolkit
2023.12.00
Medical Imaging Interaction Toolkit
|
Allows threads to call some method from within the GUI thread. More...
#include <mitkCallbackFromGUIThread.h>
Public Member Functions | |
void | CallThisFromGUIThread (itk::Command *, itk::EventObject *e=nullptr) |
Change the current application cursor. More... | |
Static Public Member Functions | |
static CallbackFromGUIThread * | GetInstance () |
This class is a singleton. More... | |
static void | RegisterImplementation (CallbackFromGUIThreadImplementation *implementation) |
To be called by a toolkit specific CallbackFromGUIThreadImplementation. More... | |
Protected Member Functions | |
CallbackFromGUIThread () | |
Purposely hidden - singleton. More... | |
Allows threads to call some method from within the GUI thread.
This class is useful for use with GUI toolkits that are not thread-safe, e.g. Qt. Any thread that needs to work with the GUI at some time during its execution (e.g. at the end, to display some results) can use this class to ask for a call to a member function from the GUI thread.
Usage example
We assume that you have a class ThreadedClass, that basically lives in a thread that is different from the GUI thread. Now this class has to change some element of the GUI to indicate its status. This could be dangerous (with Qt it is for sure).
The solution is, that ThreadedClass asks mitk::CallbackFromGUIThread to call a method from the GUI thread (main thread).
Here is part of the header of ThreadedClass:
This obviously won't allow you to pass parameters to ChangeGUIElementsToIndicateProgress. If you need to do that, you have to create a kind of itk::EventObject that can be asked for a parameter (this solution is not nice, if you see a better solution, please mail to mitk-). user s@lis ts.s ource forg e.net
The itk::EventObject has to be created with "new" (which can also be done by calling MakeObject on an existing EventObject).
Definition at line 153 of file mitkCallbackFromGUIThread.h.
|
protected |
Purposely hidden - singleton.
void mitk::CallbackFromGUIThread::CallThisFromGUIThread | ( | itk::Command * | , |
itk::EventObject * | e = nullptr |
||
) |
Change the current application cursor.
|
static |
This class is a singleton.
|
static |
To be called by a toolkit specific CallbackFromGUIThreadImplementation.