summaryrefslogtreecommitdiffstats
path: root/async/src/future.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r--async/src/future.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/async/src/future.cpp b/async/src/future.cpp
index 970060b..4f3cd80 100644
--- a/async/src/future.cpp
+++ b/async/src/future.cpp
@@ -102,6 +102,21 @@ QString FutureBase::errorMessage() const
102 return d->errorMessage; 102 return d->errorMessage;
103} 103}
104 104
105void FutureBase::setProgress(int processed, int total)
106{
107 setProgress((qreal) processed / total);
108}
109
110void FutureBase::setProgress(qreal progress)
111{
112 for (auto watcher : d->watchers) {
113 if (watcher) {
114 watcher->futureProgressCallback(progress);
115 }
116 }
117}
118
119
105 120
106void FutureBase::addWatcher(FutureWatcherBase* watcher) 121void FutureBase::addWatcher(FutureWatcherBase* watcher)
107{ 122{
@@ -128,6 +143,11 @@ void FutureWatcherBase::futureReadyCallback()
128 Q_EMIT futureReady(); 143 Q_EMIT futureReady();
129} 144}
130 145
146void FutureWatcherBase::futureProgressCallback(qreal progress)
147{
148 Q_EMIT futureProgress(progress);
149}
150
131void FutureWatcherBase::setFutureImpl(const FutureBase &future) 151void FutureWatcherBase::setFutureImpl(const FutureBase &future)
132{ 152{
133 d->future = future; 153 d->future = future;