RAII component that displays a wait cursor during a long operation. More...
#include <pqWaitCursor.h>
Public Member Functions | |
pqWaitCursor () | |
~pqWaitCursor () override=default | |
Public Member Functions inherited from pqScopedOverrideCursor | |
pqScopedOverrideCursor ()=delete | |
pqScopedOverrideCursor (Qt::CursorShape cursorShape) | |
virtual | ~pqScopedOverrideCursor () |
RAII component that displays a wait cursor during a long operation.
The normal cursor is restored when the pqWaitCursor object goes out-of-scope:
/code { pqWaitCursor cursor; for(i = 0; i != really_big_number; ++i) { DoSomethingTimeConsuming(); } } /endcode
Definition at line 27 of file pqWaitCursor.h.
pqWaitCursor::pqWaitCursor | ( | ) |
|
overridedefault |