aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-03-24 17:07:29 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2012-04-04 08:46:12 +0200
commit7e7bcce2d992c6fd53fdc4d9eb40f21c951d5347 (patch)
treebe52dbc136cd0e88a89dfe4487f8ee09d142bfa1 /src/qt/guiutil.h
parent55f69a47002a1fc5bdf4e0c345e61ec955fa664b (diff)
downloadbitcoin-7e7bcce2d992c6fd53fdc4d9eb40f21c951d5347.tar.xz
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 75ba53f206..06426d76bc 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