#include <qfuture.h>
Public Member Functions |
|
| QFuture () | |
| QFuture (QFutureInterfaceBase *p) | |
| QFuture (const QFuture &other) | |
| ~QFuture () | |
| QFuture & | operator= (const QFuture &other) |
| bool | operator== (const QFuture &other) const |
| bool | operator!= (const QFuture &other) const |
| template<typename T > | |
| QFuture (const QFuture< T > &other) | |
| template<typename T > | |
| QFuture< void > & | operator= (const QFuture< T > &other) |
| void | cancel () |
| bool | isCanceled () const |
| void | setPaused (bool paused) |
| bool | isPaused () const |
| void | pause () |
| void | resume () |
| void | togglePaused () |
| bool | isStarted () const |
| bool | isFinished () const |
| bool | isRunning () const |
| int | resultCount () const |
| int | progressValue () const |
| int | progressMinimum () const |
| int | progressMaximum () const |
| QString | progressText () const |
| void | waitForFinished () |
Friends |
|
| class | QFutureWatcher< void > |
| QFuture | ( | ) | [inline] |
Definition at line 197 of file qfuture.h.
: d(QFutureInterface<void>::canceledResult())
{ }
| QFuture | ( | QFutureInterfaceBase * | p | ) | [inline, explicit] |
| ~QFuture | ( | ) | [inline] |
| bool operator== | ( | const QFuture< void > & | other | ) | const [inline] |
| bool operator!= | ( | const QFuture< void > & | other | ) | const [inline] |
| void cancel | ( | ) | [inline] |
| bool isCanceled | ( | ) | const [inline] |
| void setPaused | ( | bool | paused | ) | [inline] |
| bool isPaused | ( | ) | const [inline] |
| void pause | ( | ) | [inline] |
| void resume | ( | ) | [inline] |
| void togglePaused | ( | ) | [inline] |
| bool isStarted | ( | ) | const [inline] |
| bool isFinished | ( | ) | const [inline] |
| bool isRunning | ( | ) | const [inline] |
| int resultCount | ( | ) | const [inline] |
| int progressValue | ( | ) | const [inline] |
| int progressMinimum | ( | ) | const [inline] |
Definition at line 242 of file qfuture.h.
{ return d.progressMinimum(); }
| int progressMaximum | ( | ) | const [inline] |
Definition at line 243 of file qfuture.h.
{ return d.progressMaximum(); }
| QString progressText | ( | ) | const [inline] |
| void waitForFinished | ( | ) | [inline] |
friend class QFutureWatcher< void >
[friend] |