1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgssublayersdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSublayersDialog : QDialog
{
%Docstring(signature="appended")
.. deprecated:: 3.40
Will be removed in QGIS 4.0.
%End
%TypeHeaderCode
#include "qgssublayersdialog.h"
%End
public:
enum PromptMode /BaseType=IntEnum/
{
PromptAlways,
PromptIfNeeded,
PromptNever,
PromptLoadAll
};
enum ProviderType /BaseType=IntEnum/
{
Ogr,
Gdal,
Vsifile,
Mdal
};
struct LayerDefinition
{
int layerId;
QString layerName;
int count;
QString type;
QString description;
};
typedef QList<QgsSublayersDialog::LayerDefinition> LayerDefinitionList;
QgsSublayersDialog( ProviderType providerType, const QString &name, QWidget *parent /TransferThis/ = 0, Qt::WindowFlags fl = Qt::WindowFlags(), const QString &dataSourceUri = QString() ) /Deprecated/;
%Docstring
Construct a new QgsSublayersDialog object - a dialog to select which sub
layers to be imported from a data source (e.g. from geopackage or
zipfile)
:param providerType: provider type
:param name: provider type name
:param parent: parent widget of the dialog
:param fl: window flags
:param dataSourceUri: data source URI
.. deprecated:: 3.40
Will be removed in QGIS 4.0.
%End
~QgsSublayersDialog();
void populateLayerTable( const LayerDefinitionList &list );
%Docstring
Populate the table with layers
%End
LayerDefinitionList selection();
%Docstring
Returns list of selected layers
%End
void setShowAddToGroupCheckbox( bool showAddToGroupCheckbox );
%Docstring
Set if we should display the add to group checkbox
%End
bool showAddToGroupCheckbox() const;
%Docstring
If we should display the add to group checkbox
%End
bool addToGroupCheckbox() const;
%Docstring
If we should add layers in a group
%End
int countColumn() const;
%Docstring
Returns column with count or -1
%End
public slots:
virtual int exec();
protected:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgssublayersdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|