Skip to content

Commit

Permalink
add missing sip bindings to QgsSublayersDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed May 28, 2013
1 parent 81139a6 commit 34ef14a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/gui/gui.sip
Expand Up @@ -64,6 +64,7 @@
%Include qgssearchquerybuilder.sip
%Include qgstextannotationitem.sip
%Include qgsvertexmarker.sip
%Include qgssublayersdialog.sip

%Include attributetable/qgsattributetableview.sip

Expand Down
24 changes: 24 additions & 0 deletions python/gui/qgssublayersdialog.sip
@@ -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();
};

0 comments on commit 34ef14a

Please sign in to comment.