core: add uploadStatus signal to uploadDiveLogsDE

The uploadStatus signal can be used to inform the user about
the process e.g.
- preparing zip file
- starting actual upload

It is a suplement to uploadProgress, that only informs about
the network part.

Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2019-12-09 13:52:34 +01:00 committed by Dirk Hohndel
parent 9fd95c18bd
commit 5a4128a8f2
2 changed files with 5 additions and 0 deletions

View file

@ -25,6 +25,7 @@ private slots:
signals:
void uploadFinish(bool success, const QString &text);
void uploadProgress(qreal percentage, qreal total);
void uploadStatus(const QString &text);
private:
uploadDiveLogsDE();