mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-03 00:14:12 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			712 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			712 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.
 | 
						|
     * @param message Text to show above busy progress indicator.
 | 
						|
     * @param parent parent object (owner)
 | 
						|
     * @param fl widget flags
 | 
						|
     */
 | 
						|
    QgsBusyIndicatorDialog( const QString& message = "", QWidget *parent /TransferThis/ = 0, const Qt::WindowFlags& fl = QgisGui::ModalDialogFlags );
 | 
						|
    ~QgsBusyIndicatorDialog();
 | 
						|
 | 
						|
    QString message() const;
 | 
						|
    void setMessage( const QString& message );
 | 
						|
};
 |