mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
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.
32 lines
726 B
Plaintext
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 );
|
|
|
|
};
|