mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
25 lines
525 B
Plaintext
25 lines
525 B
Plaintext
|
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();
|
||
|
};
|