diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-04 05:03:07 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-04 05:03:07 -0700 |
commit | b0a7e05a45a925d78efd00ecca6dce9b7a9530f9 (patch) | |
tree | 13d0f8f8650b545b767c3e6b8de3e2effa385f2f /src/qt/guiutil.h | |
parent | cadae3588c5553b8c7ef76c14d07041f639fb926 (diff) | |
parent | 5cccb13dad589b66957772ee36b3be0ef06ed0dc (diff) |
Merge pull request #1019 from laanwj/2012_03_uirefactor
Streamline UI ↔ Core interface
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r-- | src/qt/guiutil.h | 8 |
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 |