QGIS API Documentation
3.0.2-Girona (307d082)
|
This is the interface for those who want to add custom data items to the browser tree. More...
#include <qgsdataitemprovider.h>
Public Member Functions | |
virtual | ~QgsDataItemProvider ()=default |
virtual int | capabilities ()=0 |
Return combination of flags from QgsDataProvider::DataCapabilities. More... | |
virtual QgsDataItem * | createDataItem (const QString &path, QgsDataItem *parentItem)=0 |
Create a new instance of QgsDataItem (or null) for given path and parent item. More... | |
virtual QVector< QgsDataItem * > | createDataItems (const QString &path, QgsDataItem *parentItem) |
Create a vector of instances of QgsDataItem (or null) for given path and parent item. More... | |
virtual bool | handlesDirectoryPath (const QString &path) |
Returns true if the provider will handle the directory at the specified path. More... | |
virtual QString | name ()=0 |
Human-readable name of the provider name. More... | |
This is the interface for those who want to add custom data items to the browser tree.
The method createDataItem() is ever called only if capabilities() return non-zero value. There are two occasions when createDataItem() is called:
Definition at line 44 of file qgsdataitemprovider.h.
|
virtualdefault |
|
pure virtual |
Return combination of flags from QgsDataProvider::DataCapabilities.
Implemented in QgsDataItemProviderFromPlugin.
|
pure virtual |
Create a new instance of QgsDataItem (or null) for given path and parent item.
Caller takes responsibility of deleting created items.
Implemented in QgsDataItemProviderFromPlugin.
|
inlinevirtual |
Create a vector of instances of QgsDataItem (or null) for given path and parent item.
Caller takes responsibility of deleting created items.
Definition at line 65 of file qgsdataitemprovider.h.
|
virtual |
Returns true if the provider will handle the directory at the specified path.
If the provider indicates that it will handle the directory, the default creation and population of directory items for the path will be avoided and it is left to the provider to correctly populate relevant entries for the path.
The default implementation returns false for all paths.
Reimplemented in QgsDataItemProviderFromPlugin.
Definition at line 20 of file qgsdataitemprovider.cpp.
|
pure virtual |
Human-readable name of the provider name.
Implemented in QgsDataItemProviderFromPlugin.