mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
23 lines
659 B
Plaintext
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 );
|
||
|
};
|