aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-03-24 17:07:29 +0100
committerWladimir J. van der Laan <[email protected]>2012-04-04 08:46:12 +0200
commit7e7bcce2d992c6fd53fdc4d9eb40f21c951d5347 (patch)
treebe52dbc136cd0e88a89dfe4487f8ee09d142bfa1 /src/qt/guiutil.h
parentmove QT_PLUGINS stuff to qt main file, where it belongs (diff)
downloaddiscoin-7e7bcce2d992c6fd53fdc4d9eb40f21c951d5347.tar.xz
discoin-7e7bcce2d992c6fd53fdc4d9eb40f21c951d5347.zip
Code deduplication: make function in GUIUtil to get connection type to call object slot in GUI thread
with invokeMethod.
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r--src/qt/guiutil.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h
index 75ba53f20..06426d76b 100644
--- a/src/qt/guiutil.h
+++ b/src/qt/guiutil.h
@@ -60,6 +60,14 @@ public:
const QString &dir=QString(), const QString &filter=QString(),
QString *selectedSuffixOut=0);
+
+ /** Get connection type to call object slot in GUI thread with invokeMethod. The call will be blocking.
+
+ @returns If called from the GUI thread, return a Qt::DirectConnection.
+ If called from another thread, return a Qt::BlockingQueuedConnection.
+ */
+ static Qt::ConnectionType blockingGUIThreadConnection();
+
};
#endif // GUIUTIL_H