mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
28 lines
720 B
Plaintext
28 lines
720 B
Plaintext
class QgsSublayersDialog : QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgssublayersdialog.h>
|
|
%End
|
|
public:
|
|
|
|
enum ProviderType
|
|
{
|
|
Ogr,
|
|
Gdal,
|
|
Vsifile
|
|
};
|
|
|
|
QgsSublayersDialog( ProviderType providerType, QString name, QWidget* parent /TransferThis/ = 0, Qt::WindowFlags fl = 0 );
|
|
~QgsSublayersDialog();
|
|
|
|
void populateLayerTable( QStringList theList, QString delim = ":" );
|
|
// Returns list of selected layers, if there are more layers with the same name,
|
|
// geometry type is appended separated by semicolon, example: <layer>:<geometryType>
|
|
QStringList selectionNames();
|
|
QList<int> selectionIndexes();
|
|
|
|
public slots:
|
|
void on_buttonBox_helpRequested();
|
|
int exec();
|
|
};
|