diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-01 06:55:12 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-04 12:00:24 -0700 |
commit | f58bc91d8bb81feb02d059a8f69025f8f6f5a6b0 (patch) | |
tree | fe9e3a9bcb2e69fa09caef6a1c3ab6c20e19c9dc /core/qthelper.cpp | |
parent | a37499bccd9135a01fedf0d89ddb5de5d9c43f01 (diff) | |
download | subsurface-f58bc91d8bb81feb02d059a8f69025f8f6f5a6b0.tar.gz |
core: add additional notification callback
Especially on slower devices with a large dive list the startup time has
become really long. This callback allows us to give the user an idea of
what the app is doing during that time.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/qthelper.cpp')
-rw-r--r-- | core/qthelper.cpp | 9 |
1 files changed, 9 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; |