diff options
-rw-r--r-- | core/qthelper.cpp | 9 | ||||
-rw-r--r-- | core/qthelper.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index 7e3b58b11..7b879e7d6 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1642,6 +1642,15 @@ char *copy_qstring(const QString &s) return strdup(qPrintable(s)); } +// function to call to allow the UI to show updates for longer running activities +void (*uiNotificationCallback)(QString msg) = nullptr; + +void uiNotification(const QString &msg) +{ + if (uiNotificationCallback != nullptr) + uiNotificationCallback(msg); +} + // function to call to get changes for a git commit QString (*changesCallback)() = nullptr; diff --git a/core/qthelper.h b/core/qthelper.h index 6e23e6768..bb8876383 100644 --- a/core/qthelper.h +++ b/core/qthelper.h @@ -85,6 +85,7 @@ QString getUserAgent(); QString printGPSCoords(const location_t *loc); extern QString (*changesCallback)(); +void uiNotification(const QString &msg); #if defined __APPLE__ #define TITLE_OR_TEXT(_t, _m) "", _t + "\n" + _m |