mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
add missing sip bindings to QgsSublayersDialog
This commit is contained in:
parent
81139a6554
commit
34ef14acb0
@ -64,6 +64,7 @@
|
||||
%Include qgssearchquerybuilder.sip
|
||||
%Include qgstextannotationitem.sip
|
||||
%Include qgsvertexmarker.sip
|
||||
%Include qgssublayersdialog.sip
|
||||
|
||||
%Include attributetable/qgsattributetableview.sip
|
||||
|
||||
|
24
python/gui/qgssublayersdialog.sip
Normal file
24
python/gui/qgssublayersdialog.sip
Normal file
@ -0,0 +1,24 @@
|
||||
class QgsSublayersDialog : QDialog
|
||||
{
|
||||
%TypeHeaderCode
|
||||
#include <qgssublayersdialog.h>
|
||||
%End
|
||||
public:
|
||||
enum ProviderType
|
||||
{
|
||||
Ogr,
|
||||
Gdal,
|
||||
Vsifile
|
||||
};
|
||||
|
||||
QgsSublayersDialog( ProviderType providerType, QString name, QWidget* parent = 0, Qt::WFlags fl = 0 );
|
||||
~QgsSublayersDialog();
|
||||
|
||||
void populateLayerTable( QStringList theList, QString delim = ":" );
|
||||
QStringList selectionNames();
|
||||
QList<int> selectionIndexes();
|
||||
|
||||
public slots:
|
||||
void on_buttonBox_helpRequested();
|
||||
int exec();
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user