QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Abstract base Data Source Widget to create connections and add layers This class provides common functionality and the interface for all source select dialogs used by data providers to configure data sources and add layers. More...
#include <qgsabstractdatasourcewidget.h>
Public Slots | |
virtual void | addButtonClicked () |
Triggered when the add button is clicked, the add layer signal is emitted Concrete classes should implement the right behavior depending on the layer being added. More... | |
virtual void | refresh () |
Triggered when the provider's connections need to be refreshed The default implementation does nothing. More... | |
virtual void | reset () |
Called when this source select widget is being shown in a "new and clean" dialog. More... | |
Signals | |
void | addDatabaseLayers (const QStringList &paths, const QString &providerKey) |
Emitted when a DB layer has been selected for addition. More... | |
void | addMeshLayer (const QString &url, const QString &baseName, const QString &providerKey) |
Emitted when a mesh layer has been selected for addition. More... | |
void | addPointCloudLayer (const QString &url, const QString &baseName, const QString &providerKey) |
Emitted when a point cloud layer has been selected for addition. More... | |
void | addRasterLayer (const QString &rasterLayerPath, const QString &baseName, const QString &providerKey) |
Emitted when a raster layer has been selected for addition. More... | |
void | addRasterLayers (const QStringList &layersList) |
Emitted when one or more GDAL supported layers are selected for addition. More... | |
void | addVectorLayer (const QString &uri, const QString &layerName, const QString &providerKey=QString()) |
Emitted when a vector layer has been selected for addition. More... | |
void | addVectorLayers (const QStringList &layerList, const QString &encoding, const QString &dataSourceType) |
Emitted when one or more OGR supported layers are selected for addition. More... | |
void | addVectorTileLayer (const QString &url, const QString &baseName) |
Emitted when a vector tile layer has been selected for addition. More... | |
void | connectionsChanged () |
Emitted when the provider's connections have changed This signal is normally forwarded the app and used to refresh browser items. More... | |
void | enableButtons (bool enable) |
Emitted when the ok/add buttons should be enabled/disabled. More... | |
Q_DECL_DEPRECATED void | progress (int, int) |
Emitted when a progress dialog is shown by the provider dialog. More... | |
void | progressMessage (QString message) |
Emitted when a progress dialog is shown by the provider dialog. More... | |
void | pushMessage (const QString &title, const QString &message, const Qgis::MessageLevel level=Qgis::MessageLevel::Info) |
Emitted when a message with title and level must be shown to the user using the parent visible message bar. More... | |
void | replaceVectorLayer (const QString &oldId, const QString &source, const QString &name, const QString &provider) |
Emitted when a layer needs to be replaced. More... | |
Public Member Functions | |
void | setBrowserModel (QgsBrowserModel *model) |
Sets a browser model to use with the widget. More... | |
void | setMapCanvas (const QgsMapCanvas *mapCanvas) |
Store a pointer to the map canvas to retrieve extent and CRS Used to select an appropriate CRS and possibly to retrieve data only in the current extent. More... | |
Protected Member Functions | |
QgsAbstractDataSourceWidget (QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags, QgsProviderRegistry::WidgetMode widgetMode=QgsProviderRegistry::WidgetMode::None) | |
Constructor. More... | |
QPushButton * | addButton () const |
Returns the add Button. More... | |
QgsBrowserModel * | browserModel () |
Returns the associated browser model (may be nullptr ). More... | |
const QgsMapCanvas * | mapCanvas () const |
Returns the map canvas (can be nullptr ) More... | |
void | setupButtons (QDialogButtonBox *buttonBox) |
Connect the ok and apply/add buttons to the slots. More... | |
QgsProviderRegistry::WidgetMode | widgetMode () const |
Returns the widget mode. More... | |
Abstract base Data Source Widget to create connections and add layers This class provides common functionality and the interface for all source select dialogs used by data providers to configure data sources and add layers.
Definition at line 43 of file qgsabstractdatasourcewidget.h.
|
protected |
Constructor.
Definition at line 22 of file qgsabstractdatasourcewidget.cpp.
|
inlineprotected |
Returns the add Button.
Definition at line 195 of file qgsabstractdatasourcewidget.h.
|
virtualslot |
Triggered when the add button is clicked, the add layer signal is emitted Concrete classes should implement the right behavior depending on the layer being added.
Definition at line 71 of file qgsabstractdatasourcewidget.cpp.
|
signal |
Emitted when a DB layer has been selected for addition.
|
signal |
Emitted when a mesh layer has been selected for addition.
|
signal |
Emitted when a point cloud layer has been selected for addition.
|
signal |
Emitted when a raster layer has been selected for addition.
|
signal |
Emitted when one or more GDAL supported layers are selected for addition.
layersList | list of layers protocol URIs |
|
signal |
Emitted when a vector layer has been selected for addition.
If providerKey is not specified, the default provider key associated with the source will be used.
|
signal |
Emitted when one or more OGR supported layers are selected for addition.
layerList | list of layers protocol URIs |
encoding | encoding |
dataSourceType | string (can be "file" or "database") |
|
signal |
Emitted when a vector tile layer has been selected for addition.
|
protected |
Returns the associated browser model (may be nullptr
).
Definition at line 38 of file qgsabstractdatasourcewidget.cpp.
|
signal |
Emitted when the provider's connections have changed This signal is normally forwarded the app and used to refresh browser items.
|
signal |
Emitted when the ok/add buttons should be enabled/disabled.
|
protected |
Returns the map canvas (can be nullptr
)
Definition at line 33 of file qgsabstractdatasourcewidget.cpp.
|
signal |
Emitted when a progress dialog is shown by the provider dialog.
|
signal |
Emitted when a progress dialog is shown by the provider dialog.
|
signal |
Emitted when a message with title and level must be shown to the user using the parent visible message bar.
|
inlinevirtualslot |
Triggered when the provider's connections need to be refreshed The default implementation does nothing.
Reimplemented in QgsOWSSourceSelect.
Definition at line 69 of file qgsabstractdatasourcewidget.h.
|
signal |
Emitted when a layer needs to be replaced.
oldId | old layer ID |
source | URI of the layer |
name | of the layer |
provider | key |
|
virtualslot |
Called when this source select widget is being shown in a "new and clean" dialog.
The data source manager recycles existing source select widgets but will call this method on every reopening. This should clear any selection that has previously been done.
Reimplemented in QgsOWSSourceSelect.
Definition at line 75 of file qgsabstractdatasourcewidget.cpp.
void QgsAbstractDataSourceWidget::setBrowserModel | ( | QgsBrowserModel * | model | ) |
Sets a browser model to use with the widget.
Definition at line 66 of file qgsabstractdatasourcewidget.cpp.
void QgsAbstractDataSourceWidget::setMapCanvas | ( | const QgsMapCanvas * | mapCanvas | ) |
Store a pointer to the map canvas to retrieve extent and CRS Used to select an appropriate CRS and possibly to retrieve data only in the current extent.
Definition at line 61 of file qgsabstractdatasourcewidget.cpp.
|
protected |
Connect the ok and apply/add buttons to the slots.
Definition at line 43 of file qgsabstractdatasourcewidget.cpp.
|
protected |
Returns the widget mode.
Definition at line 28 of file qgsabstractdatasourcewidget.cpp.