Skip to content

Commit 34ef14a

Browse files
committedMay 28, 2013
add missing sip bindings to QgsSublayersDialog
1 parent 81139a6 commit 34ef14a

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
 

‎python/gui/gui.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
%Include qgssearchquerybuilder.sip
6565
%Include qgstextannotationitem.sip
6666
%Include qgsvertexmarker.sip
67+
%Include qgssublayersdialog.sip
6768

6869
%Include attributetable/qgsattributetableview.sip
6970

‎python/gui/qgssublayersdialog.sip

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class QgsSublayersDialog : QDialog
2+
{
3+
%TypeHeaderCode
4+
#include <qgssublayersdialog.h>
5+
%End
6+
public:
7+
enum ProviderType
8+
{
9+
Ogr,
10+
Gdal,
11+
Vsifile
12+
};
13+
14+
QgsSublayersDialog( ProviderType providerType, QString name, QWidget* parent = 0, Qt::WFlags fl = 0 );
15+
~QgsSublayersDialog();
16+
17+
void populateLayerTable( QStringList theList, QString delim = ":" );
18+
QStringList selectionNames();
19+
QList<int> selectionIndexes();
20+
21+
public slots:
22+
void on_buttonBox_helpRequested();
23+
int exec();
24+
};

0 commit comments

Comments
 (0)
Please sign in to comment.