QGIS/python/gui/qgsbusyindicatordialog.sip

23 lines
659 B
Plaintext

/** \ingroup gui
* \class QgsBusyIndicatorDialog
* A simple dialog to show an indeterminate busy progress indicator.
*/
class QgsBusyIndicatorDialog : QDialog
{
%TypeHeaderCode
#include <qgsbusyindicatordialog.h>
%End
public:
/** Constructor
* Modal busy indicator dialog with no buttons that deletes on close.
* @param message Text to show above busy progress indicator.
* @note added in 1.9
*/
QgsBusyIndicatorDialog( const QString& message = "", QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
~QgsBusyIndicatorDialog();
QString message() const;
void setMessage( const QString& message );
};