mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-03 00:14:12 -05:00 
			
		
		
		
	- rename methods with XML to Xml, CRS to Crs, WMS to Wms, ID to Id - rename methods with SRS to Crs - rename methods with abbreviations like "dest" to "destination" - rename methods with abbreviations like "src" to "source"
		
			
				
	
	
		
			33 lines
		
	
	
		
			748 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			748 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
class QgsGroupWmsDataDialog : QDialog
 | 
						|
{
 | 
						|
%TypeHeaderCode
 | 
						|
#include <qgsgroupwmsdatadialog.h>
 | 
						|
%End
 | 
						|
 | 
						|
  public:
 | 
						|
    //! Constructor
 | 
						|
    QgsGroupWmsDataDialog( QWidget *parent /TransferThis/ = nullptr, const Qt::WindowFlags& fl = QgisGui::ModalDialogFlags );
 | 
						|
    //~QgsGroupWmsDataDialog();
 | 
						|
 | 
						|
    //! return group WMS title
 | 
						|
    QString groupTitle();
 | 
						|
 | 
						|
    //! return group WMS short name
 | 
						|
    QString groupShortName();
 | 
						|
 | 
						|
    //! return group WMS abstract
 | 
						|
    QString groupAbstract();
 | 
						|
 | 
						|
 | 
						|
  public slots:
 | 
						|
    //! set group WMS title
 | 
						|
    void setGroupTitle( const QString& title );
 | 
						|
 | 
						|
    //! set group WMS short name
 | 
						|
    void setGroupShortName( const QString& shortName );
 | 
						|
 | 
						|
    //! set group WMS abstract
 | 
						|
    void setGroupAbstract( const QString& abstract );
 | 
						|
 | 
						|
};
 |