QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
This class keeps a list of source select providers that may add items to the QgsDataSourceManagerDialog When created, it automatically adds providers from data provider plugins (e.g. More...
#include <qgssourceselectproviderregistry.h>
Public Member Functions | |
QgsSourceSelectProviderRegistry () | |
QgsSourceSelectProviderRegistry (const QgsSourceSelectProviderRegistry &rh)=delete | |
QgsDataItemProviderRegistry cannot be copied. More... | |
~QgsSourceSelectProviderRegistry () | |
void | addProvider (QgsSourceSelectProvider *provider) |
Add a provider implementation. Takes ownership of the object. More... | |
QgsAbstractDataSourceWidget * | createSelectionWidget (const QString &name, QWidget *parent, Qt::WindowFlags fl, QgsProviderRegistry::WidgetMode widgetMode) |
Gets select widget from provider with name. More... | |
void | initializeFromProviderGuiRegistry (QgsProviderGuiRegistry *providerGuiRegistry) |
Initializes the registry. More... | |
QgsSourceSelectProviderRegistry & | operator= (const QgsSourceSelectProviderRegistry &rh)=delete |
QgsDataItemProviderRegistry cannot be copied. More... | |
QgsSourceSelectProvider * | providerByName (const QString &name) |
Returns a provider by name or nullptr if not found. More... | |
QList< QgsSourceSelectProvider * > | providers () |
Gets list of available providers. More... | |
QList< QgsSourceSelectProvider * > | providersByKey (const QString &providerKey) |
Returns a (possibly empty) list of providers by data providerkey. More... | |
bool | removeProvider (QgsSourceSelectProvider *provider) |
Remove provider implementation from the list (provider object is deleted) More... | |
This class keeps a list of source select providers that may add items to the QgsDataSourceManagerDialog When created, it automatically adds providers from data provider plugins (e.g.
PostGIS, WMS, ...)
QgsSourceSelectProviderRegistry is not usually directly created, but rather accessed through QgsGui::sourceSelectProviderRegistry().
Definition at line 41 of file qgssourceselectproviderregistry.h.
|
default |
QgsSourceSelectProviderRegistry::~QgsSourceSelectProviderRegistry | ( | ) |
Definition at line 24 of file qgssourceselectproviderregistry.cpp.
|
delete |
QgsDataItemProviderRegistry cannot be copied.
void QgsSourceSelectProviderRegistry::addProvider | ( | QgsSourceSelectProvider * | provider | ) |
Add a provider implementation. Takes ownership of the object.
Definition at line 34 of file qgssourceselectproviderregistry.cpp.
QgsAbstractDataSourceWidget * QgsSourceSelectProviderRegistry::createSelectionWidget | ( | const QString & | name, |
QWidget * | parent, | ||
Qt::WindowFlags | fl, | ||
QgsProviderRegistry::WidgetMode | widgetMode | ||
) |
Gets select widget from provider with name.
The function is replacement of QgsProviderRegistry::createSelectionWidget() from QGIS 3.8
Definition at line 99 of file qgssourceselectproviderregistry.cpp.
void QgsSourceSelectProviderRegistry::initializeFromProviderGuiRegistry | ( | QgsProviderGuiRegistry * | providerGuiRegistry | ) |
Initializes the registry.
The registry needs to be passed explicitly (instead of using singleton) because this gets called from QgsGui constructor.
Definition at line 55 of file qgssourceselectproviderregistry.cpp.
|
delete |
QgsDataItemProviderRegistry cannot be copied.
QgsSourceSelectProvider * QgsSourceSelectProviderRegistry::providerByName | ( | const QString & | name | ) |
Returns a provider by name or nullptr
if not found.
Definition at line 72 of file qgssourceselectproviderregistry.cpp.
QList< QgsSourceSelectProvider * > QgsSourceSelectProviderRegistry::providers | ( | ) |
Gets list of available providers.
Definition at line 29 of file qgssourceselectproviderregistry.cpp.
QList< QgsSourceSelectProvider * > QgsSourceSelectProviderRegistry::providersByKey | ( | const QString & | providerKey | ) |
Returns a (possibly empty) list of providers by data providerkey.
Definition at line 85 of file qgssourceselectproviderregistry.cpp.
bool QgsSourceSelectProviderRegistry::removeProvider | ( | QgsSourceSelectProvider * | provider | ) |
Remove provider implementation from the list (provider object is deleted)
true
if the provider was actually removed and deleted Definition at line 43 of file qgssourceselectproviderregistry.cpp.