Class: QgsSourceSelectProvider

class qgis.gui.QgsSourceSelectProvider

Bases: sip.wrapper

This is the interface for those who want to add entries to the QgsDataSourceManagerDialog

New in version 3.0:

Methods

createDataSourceWidget

Create a new instance of QgsAbstractDataSourceWidget (or None).

icon

Creates a new instance of an QIcon for the menu item entry

name

Source select provider name, this is useful to retrieve a particular source select in case the provider has more than one, it should be unique among all providers.

ordering

Ordering: the source select provider registry will be able to sort the source selects (ascending) using this integer value

providerKey

Data Provider key

text

Text for the menu item entry, it will be visible to the user so make sure it's translatable

toolTip

Text for the tooltip menu item entry, it will be visible to the user so make sure it's translatable

Attributes

OrderDatabaseProvider

OrderGeoCmsProvider

OrderLocalProvider

OrderOtherProvider

OrderRemoteProvider

OrderDatabaseProvider = 1000
OrderGeoCmsProvider = 3000
OrderLocalProvider = 0
OrderOtherProvider = 4000
OrderRemoteProvider = 2000
class Ordering

Bases: int

createDataSourceWidget(self, parent: QWidget = None, fl: Union[Qt.WindowFlags, Qt.WindowType] = Qt.Widget, widgetMode: QgsProviderRegistry.WidgetMode = QgsProviderRegistry.WidgetMode.Embedded) QgsAbstractDataSourceWidget

Create a new instance of QgsAbstractDataSourceWidget (or None). Caller takes responsibility of deleting created.

Parameters
  • parent (QWidget = None) –

  • fl (Union[Qt.WindowFlags) –

  • widgetMode (QgsProviderRegistry.WidgetMode = QgsProviderRegistry.WidgetMode.Embedded) –

Return type

QgsAbstractDataSourceWidget

icon(self) QIcon

Creates a new instance of an QIcon for the menu item entry

Return type

QIcon

name(self) str

Source select provider name, this is useful to retrieve a particular source select in case the provider has more than one, it should be unique among all providers.

The default implementation returns the providerKey()

Return type

str

ordering(self) int

Ordering: the source select provider registry will be able to sort the source selects (ascending) using this integer value

Return type

int

providerKey(self) str

Data Provider key

Return type

str

text(self) str

Text for the menu item entry, it will be visible to the user so make sure it’s translatable

Return type

str

toolTip(self) str

Text for the tooltip menu item entry, it will be visible to the user so make sure it’s translatable

The default implementation returns an empty string.

Return type

str