QGIS/python/core/qgsproviderregistry.sip.in

194 lines
5.8 KiB
Plaintext
Raw Normal View History

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsproviderregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
2016-02-14 03:50:23 +01:00
class QgsProviderRegistry
{
%Docstring
2017-12-15 10:36:55 -04:00
A registry / canonical manager of data providers.
2017-12-15 10:36:55 -04:00
This is a Singleton class that manages data provider access.
2017-12-15 10:36:55 -04:00
Providers can be either loaded via libraries or native providers that
are included in the core QGIS installation and accessed through function pointers.
2017-12-15 10:36:55 -04:00
Loaded providers may be restricted using QGIS_PROVIDER_FILE environment variable.
QGIS_PROVIDER_FILE is regexp pattern applied to provider file name (not provider key).
For example, if the variable is set to gdal|ogr|postgres it will load only providers gdal,
ogr and postgres.
%End
%TypeHeaderCode
#include "qgsproviderregistry.h"
%End
public:
enum WidgetMode
{
None,
Embedded,
Manager,
};
static QgsProviderRegistry *instance( const QString &pluginPath = QString() );
%Docstring
Means of accessing canonical single instance
%End
virtual ~QgsProviderRegistry();
QString library( const QString &providerKey ) const;
%Docstring
2017-12-15 10:36:55 -04:00
Return path for the library of the provider.
If the provider uses direct provider function pointers instead of a library an empty string will
be returned.
%End
QString pluginList( bool asHtml = false ) const;
%Docstring
Return list of provider plugins found
%End
QDir libraryDirectory() const;
%Docstring
2017-12-15 10:36:55 -04:00
Returns the library directory where plugins are found.
%End
void setLibraryDirectory( const QDir &path );
%Docstring
Set library directory where to search for plugins
%End
QgsDataProvider *createProvider( const QString &providerKey,
const QString &dataSource ) /Factory/;
%Docstring
2017-12-15 10:36:55 -04:00
Creates a new instance of a provider.
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param providerKey: identificator of the provider
:param dataSource: string containing data source for the provider
:return: new instance of provider or NULL on error
%End
int providerCapabilities( const QString &providerKey ) const;
%Docstring
2017-12-15 10:36:55 -04:00
Return the provider capabilities
2017-12-15 21:36:08 -04:00
:param providerKey: identificator of the provider
2017-12-15 10:36:55 -04:00
.. versionadded:: 2.6
%End
QWidget *createSelectionWidget( const QString &providerKey,
QWidget *parent = 0,
Qt::WindowFlags fl = Qt::WindowFlags(),
QgsProviderRegistry::WidgetMode widgetMode = QgsProviderRegistry::WidgetMode::None );
%Docstring
2017-12-15 10:36:55 -04:00
Returns a new widget for selecting layers from a provider.
Either the ``parent`` widget must be set or the caller becomes
responsible for deleting the returned widget.
%End
QFunctionPointer function( const QString &providerKey,
const QString &functionName );
%Docstring
2017-12-15 10:36:55 -04:00
Get pointer to provider function
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param providerKey: identificator of the provider
:param functionName: name of function
:return: pointer to function or NULL on error. If the provider uses direct provider
function pointers instead of a library None will be returned.
%End
QLibrary *createProviderLibrary( const QString &providerKey ) const /Factory/;
%Docstring
2017-12-15 10:36:55 -04:00
Returns a new QLibrary for the specified ``providerKey``. Ownership of the returned
object is transferred to the caller and the caller is responsible for deleting it.
If the provider uses direct provider function pointers instead of a library None will
be returned.
%End
QStringList providerList() const;
%Docstring
Return list of available providers by their keys
%End
const QgsProviderMetadata *providerMetadata( const QString &providerKey ) const;
%Docstring
Return metadata of the provider or NULL if not found
%End
virtual QString fileVectorFilters() const;
%Docstring
2017-12-15 10:36:55 -04:00
Return vector file filter string
Returns a string suitable for a QFileDialog of vector file formats
supported by all data providers.
This walks through all data providers appending calls to their
fileVectorFilters to a string, which is then returned.
\note
It'd be nice to eventually be raster/vector neutral.
%End
virtual QString fileRasterFilters() const;
%Docstring
2017-12-15 10:36:55 -04:00
Return raster file filter string
Returns a string suitable for a QFileDialog of raster file formats
supported by all data providers.
This walks through all data providers appending calls to their
buildSupportedRasterFileFilter to a string, which is then returned.
2014-01-26 18:35:21 +01:00
.. note::
2017-12-19 11:43:52 -04:00
This replaces :py:func:`QgsRasterLayer.buildSupportedRasterFileFilter()`
%End
virtual QString databaseDrivers() const;
%Docstring
Return a string containing the available database drivers
%End
virtual QString directoryDrivers() const;
%Docstring
Return a string containing the available directory drivers
%End
virtual QString protocolDrivers() const;
%Docstring
Return a string containing the available protocol drivers
%End
void registerGuis( QWidget *widget );
private:
QgsProviderRegistry( const QString &pluginPath );
}; // class QgsProviderRegistry
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsproviderregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/