QGIS/python/gui/qgsgroupwmsdatadialog.sip
Nyall Dawson 881074b194 Boost coverage of SIP bindings
Now all classes and members are either exposed to bindings or marked
as "not available in Python bindings" in the docs.

Drop test thresholds to 0. Now it should be much easier to determine
what missing members have been added which are causing test
failures.
2016-01-05 11:16:15 +11:00

32 lines
726 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( QString title );
//! set group WMS short name
void setGroupShortName( QString shortName );
//! set group WMS abstract
void setGroupAbstract( QString abstract );
};