add missing sip bindings to QgsSublayersDialog

This commit is contained in:
Juergen E. Fischer 2013-05-29 01:31:09 +02:00
parent 81139a6554
commit 34ef14acb0
2 changed files with 25 additions and 0 deletions

View File

@ -64,6 +64,7 @@
%Include qgssearchquerybuilder.sip
%Include qgstextannotationitem.sip
%Include qgsvertexmarker.sip
%Include qgssublayersdialog.sip
%Include attributetable/qgsattributetableview.sip

View 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();
};