QGIS API Documentation  3.37.0-Master (a5b4d9743e8)
Public Slots | Signals | Public Member Functions | Static Public Member Functions | Protected Slots | Protected Member Functions | Protected Attributes | List of all members
QgsDataItem Class Reference

Base class for all items in the model. More...

#include <qgsdataitem.h>

Inheritance diagram for QgsDataItem:
Inheritance graph
[legend]

Public Slots

virtual void childrenCreated ()
 
virtual void deleteLater ()
 Safely delete the item: More...
 
virtual void depopulate ()
 Remove children recursively and set as not populated. This is used when refreshing collapsed items. More...
 
virtual void populate (bool foreground=false)
 
virtual void refresh ()
 
virtual void refreshConnections (const QString &providerKey=QString())
 Causes a data item provider to refresh all registered connections. More...
 

Signals

void beginInsertItems (QgsDataItem *parent, int first, int last)
 
void beginRemoveItems (QgsDataItem *parent, int first, int last)
 
void connectionsChanged (const QString &providerKey=QString())
 Emitted when the connections of the provider with the specified providerKey have changed. More...
 
void dataChanged (QgsDataItem *item)
 
void endInsertItems ()
 
void endRemoveItems ()
 
void stateChanged (QgsDataItem *item, Qgis::BrowserItemState oldState)
 Emitted when an item's state is changed. More...
 

Public Member Functions

 QgsDataItem (Qgis::BrowserItemType type, QgsDataItem *parent, const QString &name, const QString &path, const QString &providerKey=QString())
 Constructor for QgsDataItem, with the specified parent item. More...
 
 ~QgsDataItem () override
 
virtual Q_DECL_DEPRECATED bool acceptDrop ()
 Returns whether the item accepts drag and dropped layers - e.g. More...
 
virtual QList< QAction * > actions (QWidget *parent)
 Returns the list of actions available for this item. More...
 
virtual void addChildItem (QgsDataItem *child, bool refresh=false)
 Inserts a new child item. More...
 
virtual Qgis::BrowserItemCapabilities capabilities2 () const
 Returns the capabilities for the data item. More...
 
QVector< QgsDataItem * > children () const
 
virtual QVector< QgsDataItem * > createChildren ()
 Create children. More...
 
virtual QgsAbstractDatabaseProviderConnectiondatabaseConnection () const
 For data items that represent a DB connection or one of its children, this method returns a connection. More...
 
virtual void deleteChildItem (QgsDataItem *child)
 Removes and deletes a child item, emitting relevant signals to the model. More...
 
virtual bool equal (const QgsDataItem *other)
 Returns true if this item is equal to another item (by testing item type and path). More...
 
virtual bool handleDoubleClick ()
 Called when a user double clicks on the item. More...
 
virtual Q_DECL_DEPRECATED bool handleDrop (const QMimeData *, Qt::DropAction)
 Attempts to process the mime data dropped on this item. More...
 
bool hasChildren ()
 
virtual bool hasDragEnabled () const
 Returns true if the item may be dragged. More...
 
virtual QIcon icon ()
 
virtual bool layerCollection () const
 Returns true if the data item is a collection of layers The default implementation returns false, subclasses must implement this method if their children are layers. More...
 
virtual QList< QMenu * > menus (QWidget *parent)
 Returns the list of menus available for this item. More...
 
virtual Q_DECL_DEPRECATED QgsMimeDataUtils::Uri mimeUri () const
 Returns mime URI for the data item. More...
 
virtual QgsMimeDataUtils::UriList mimeUris () const
 Returns mime URIs for the data item, most data providers will only return a single URI but some data collection items (e.g. More...
 
void moveToThread (QThread *targetThread)
 Move object and all its descendants to thread. More...
 
QString name () const
 Returns the name of the item (the displayed text for the item). More...
 
virtual Q_DECL_DEPRECATED QWidget * paramWidget ()
 Returns source widget from data item for QgsBrowserPropertiesWidget. More...
 
QgsDataItemparent () const
 Gets item parent. More...
 
QString path () const
 
QString providerKey () const
 Returns the provider key that created this item (e.g. More...
 
virtual QgsDataItemremoveChildItem (QgsDataItem *child)
 Removes a child item and returns it without deleting it. More...
 
virtual Q_DECL_DEPRECATED bool rename (const QString &name)
 Sets a new name for the item, and returns true if the item was successfully renamed. More...
 
int rowCount ()
 
Q_DECL_DEPRECATED void setCapabilities (int capabilities)
 
virtual void setCapabilities (Qgis::BrowserItemCapabilities capabilities)
 Sets the capabilities for the data item. More...
 
virtual Q_DECL_DEPRECATED bool setCrs (const QgsCoordinateReferenceSystem &crs)
 Writes the selected crs into data source. More...
 
void setIcon (const QIcon &icon)
 
void setIconName (const QString &iconName)
 
void setName (const QString &name)
 Sets the name of the item (the displayed text for the item). More...
 
void setParent (QgsDataItem *parent)
 Set item parent and connect / disconnect parent to / from item signals. More...
 
void setPath (const QString &path)
 
void setProviderKey (const QString &value)
 Sets the provider key that created this item (e.g. More...
 
void setSortKey (const QVariant &key)
 Sets a custom sorting key for the item. More...
 
virtual void setState (Qgis::BrowserItemState state)
 Set item state. More...
 
void setToolTip (const QString &msg)
 
virtual QVariant sortKey () const
 Returns the sorting key for the item. More...
 
Qgis::BrowserItemState state () const
 
QString toolTip () const
 
Qgis::BrowserItemType type () const
 

Static Public Member Functions

static void deleteLater (QVector< QgsDataItem * > &items)
 
static int findItem (QVector< QgsDataItem * > items, QgsDataItem *item)
 
static QString pathComponent (const QString &component)
 Create path component replacing path separators. More...
 

Protected Slots

void updateIcon ()
 Will request a repaint of this icon. More...
 

Protected Member Functions

bool deferredDelete ()
 The item is scheduled to be deleted. More...
 
virtual void populate (const QVector< QgsDataItem * > &children)
 
virtual void refresh (const QVector< QgsDataItem * > &children)
 Refresh the items from a specified list of child items. More...
 

Protected Attributes

Qgis::BrowserItemCapabilities mCapabilities = Qgis::BrowserItemCapability::NoCapabilities
 
QVector< QgsDataItem * > mChildren
 
QIcon mIcon
 
QMap< QString, QIcon > mIconMap
 
QString mIconName
 
QString mName
 
QgsDataItemmParent = nullptr
 
QString mPath
 
QString mProviderKey
 
QVariant mSortKey
 Custom sort key. If invalid, name() will be used for sorting instead. More...
 
Qgis::BrowserItemState mState = Qgis::BrowserItemState::NotPopulated
 
QString mToolTip
 
Qgis::BrowserItemType mType
 

Detailed Description

Base class for all items in the model.

Parent/children hierarchy is not based on QObject.

Definition at line 45 of file qgsdataitem.h.

Constructor & Destructor Documentation

◆ QgsDataItem()

QgsDataItem::QgsDataItem ( Qgis::BrowserItemType  type,
QgsDataItem parent,
const QString &  name,
const QString &  path,
const QString &  providerKey = QString() 
)

Constructor for QgsDataItem, with the specified parent item.

The name argument specifies the text to show in the model for the item. A translated string should be used wherever appropriate.

The path argument gives the item path in the browser tree. The path string can take any form, but QgsDataItem items pointing to different logical locations should always use a different item path.

The optional providerKey string (added in QGIS 3.12) can be used to specify the key for the QgsDataItemProvider that created this item.

Definition at line 57 of file qgsdataitem.cpp.

◆ ~QgsDataItem()

QgsDataItem::~QgsDataItem ( )
override

Definition at line 67 of file qgsdataitem.cpp.

Member Function Documentation

◆ acceptDrop()

virtual Q_DECL_DEPRECATED bool QgsDataItem::acceptDrop ( )
inlinevirtual

Returns whether the item accepts drag and dropped layers - e.g.

for importing a dataset to a provider. Subclasses should override this and handleDrop() to accept dropped layers.

See also
handleDrop()
QgsDataItemGuiProvider::handleDrop()
Deprecated:
QGIS 3.10

Definition at line 215 of file qgsdataitem.h.

◆ actions()

QList< QAction * > QgsDataItem::actions ( QWidget *  parent)
virtual

Returns the list of actions available for this item.

This is usually used for the popup menu on right-clicking the item. Subclasses should override this to provide actions.

Subclasses should ensure that ownership of created actions is correctly handled by parenting them to the specified parent widget.

Definition at line 504 of file qgsdataitem.cpp.

◆ addChildItem()

void QgsDataItem::addChildItem ( QgsDataItem child,
bool  refresh = false 
)
virtual

Inserts a new child item.

The child will be inserted at a position using an alphabetical order based on mName.

Parameters
childchild item to insert. Ownership is transferred, and item parent will be set and relevant connections made.
refresh- set to true to refresh populated item, emitting relevant signals to the model
See also
deleteChildItem()

Definition at line 422 of file qgsdataitem.cpp.

◆ beginInsertItems

void QgsDataItem::beginInsertItems ( QgsDataItem parent,
int  first,
int  last 
)
signal

◆ beginRemoveItems

void QgsDataItem::beginRemoveItems ( QgsDataItem parent,
int  first,
int  last 
)
signal

◆ capabilities2()

virtual Qgis::BrowserItemCapabilities QgsDataItem::capabilities2 ( ) const
inlinevirtual

Returns the capabilities for the data item.

See also
setCapabilities()

Definition at line 297 of file qgsdataitem.h.

◆ children()

QVector<QgsDataItem *> QgsDataItem::children ( ) const
inline

Definition at line 331 of file qgsdataitem.h.

◆ childrenCreated

void QgsDataItem::childrenCreated ( )
virtualslot

Definition at line 235 of file qgsdataitem.cpp.

◆ connectionsChanged

void QgsDataItem::connectionsChanged ( const QString &  providerKey = QString())
signal

Emitted when the connections of the provider with the specified providerKey have changed.

This signal is normally forwarded to the app in order to refresh the connection item in the provider dialogs and to refresh the connection items in the other open browsers.

◆ createChildren()

QVector< QgsDataItem * > QgsDataItem::createChildren ( )
virtual

Create children.

Children are not expected to have parent set.

Warning
This method MUST BE THREAD SAFE.

Reimplemented in QgsZipItem, QgsRelationshipsItem, QgsFileDataCollectionItem, QgsProviderSublayerItem, QgsFieldsItem, QgsFieldDomainsItem, QgsFavoritesItem, and QgsDirectoryItem.

Definition at line 184 of file qgsdataitem.cpp.

◆ databaseConnection()

QgsAbstractDatabaseProviderConnection * QgsDataItem::databaseConnection ( ) const
virtual

For data items that represent a DB connection or one of its children, this method returns a connection.

All other data items will return NULL.

Ownership of the returned objects is transferred to the caller.

Since
QGIS 3.16

Reimplemented in QgsLayerItem, QgsFileDataCollectionItem, QgsProviderSublayerItem, QgsDataCollectionItem, and QgsDatabaseSchemaItem.

Definition at line 157 of file qgsdataitem.cpp.

◆ dataChanged

void QgsDataItem::dataChanged ( QgsDataItem item)
signal

◆ deferredDelete()

bool QgsDataItem::deferredDelete ( )
inlineprotected

The item is scheduled to be deleted.

E.g. if deleteLater() is called when item is in Populating state (createChildren() running in another thread), the deferredDelete() returns true and item will be deleted once Populating finished. Items with slow reateChildren() (for example network or database based) may check during createChildren() if deferredDelete() returns true and return from createChildren() immediately because result will be useless.

Definition at line 434 of file qgsdataitem.h.

◆ deleteChildItem()

void QgsDataItem::deleteChildItem ( QgsDataItem child)
virtual

Removes and deletes a child item, emitting relevant signals to the model.

Parameters
childchild to remove. Item must exist as a current child.
See also
addChildItem()

Definition at line 458 of file qgsdataitem.cpp.

◆ deleteLater [1/2]

void QgsDataItem::deleteLater ( )
virtualslot

Safely delete the item:

  • disconnects parent
  • unsets parent (but does not remove itself)
  • deletes all its descendants recursively
  • waits until Populating state (createChildren() in thread) finished without blocking main thread
  • calls QObject::deleteLater()

Definition at line 106 of file qgsdataitem.cpp.

◆ deleteLater() [2/2]

void QgsDataItem::deleteLater ( QVector< QgsDataItem * > &  items)
static

Definition at line 130 of file qgsdataitem.cpp.

◆ depopulate

void QgsDataItem::depopulate ( )
virtualslot

Remove children recursively and set as not populated. This is used when refreshing collapsed items.

Definition at line 277 of file qgsdataitem.cpp.

◆ endInsertItems

void QgsDataItem::endInsertItems ( )
signal

◆ endRemoveItems

void QgsDataItem::endRemoveItems ( )
signal

◆ equal()

bool QgsDataItem::equal ( const QgsDataItem other)
virtual

Returns true if this item is equal to another item (by testing item type and path).

Reimplemented in QgsLayerItem, QgsFieldItem, and QgsDirectoryItem.

Definition at line 498 of file qgsdataitem.cpp.

◆ findItem()

int QgsDataItem::findItem ( QVector< QgsDataItem * >  items,
QgsDataItem item 
)
static

Definition at line 486 of file qgsdataitem.cpp.

◆ handleDoubleClick()

bool QgsDataItem::handleDoubleClick ( )
virtual

Called when a user double clicks on the item.

Subclasses should return true if they have implemented a double-click handler and do not want the default double-click behavior for items.

Definition at line 510 of file qgsdataitem.cpp.

◆ handleDrop()

virtual Q_DECL_DEPRECATED bool QgsDataItem::handleDrop ( const QMimeData *  ,
Qt::DropAction   
)
inlinevirtual

Attempts to process the mime data dropped on this item.

Subclasses must override this and acceptDrop() if they accept dropped layers.

See also
acceptDrop()
QgsDataItemGuiProvider::handleDrop()
Deprecated:
QGIS 3.10

Definition at line 230 of file qgsdataitem.h.

◆ hasChildren()

bool QgsDataItem::hasChildren ( )

Definition at line 394 of file qgsdataitem.cpp.

◆ hasDragEnabled()

virtual bool QgsDataItem::hasDragEnabled ( ) const
inlinevirtual

Returns true if the item may be dragged.

Default implementation returns false. A draggable item has to implement mimeUris() that will be used to pass data.

See also
mimeUris()

Reimplemented in QgsZipItem, QgsProjectItem, QgsLayerItem, QgsFileDataCollectionItem, QgsFileDataCollectionGroupItem, and QgsDirectoryItem.

Definition at line 248 of file qgsdataitem.h.

◆ icon()

QIcon QgsDataItem::icon ( )
virtual

◆ layerCollection()

bool QgsDataItem::layerCollection ( ) const
virtual

Returns true if the data item is a collection of layers The default implementation returns false, subclasses must implement this method if their children are layers.

Since
QGIS 3.14

Definition at line 399 of file qgsdataitem.cpp.

◆ menus()

QList< QMenu * > QgsDataItem::menus ( QWidget *  parent)
virtual

Returns the list of menus available for this item.

This is usually used for the popup menu on right-clicking the item. Subclasses should override this to provide actions. Subclasses should ensure that ownership of created menus is correctly handled by parenting them to the specified parent widget.

Parameters
parenta parent widget of the menu
Returns
list of menus

Definition at line 585 of file qgsdataitem.cpp.

◆ mimeUri()

QgsMimeDataUtils::Uri QgsDataItem::mimeUri ( ) const
virtual

Returns mime URI for the data item.

Items that return valid URI will be returned in mime data when dragging a selection from browser model.

See also
hasDragEnabled()
Deprecated:
since QGIS 3.18, use mimeUris() instead

Definition at line 515 of file qgsdataitem.cpp.

◆ mimeUris()

QgsMimeDataUtils::UriList QgsDataItem::mimeUris ( ) const
virtual

Returns mime URIs for the data item, most data providers will only return a single URI but some data collection items (e.g.

GPKG, OGR) may report multiple URIs (e.g. for vector and raster layer types).

Items that return valid URI will be returned in mime data when dragging a selection from browser model.

Since
QGIS 3.18

Reimplemented in QgsZipItem, QgsProjectItem, QgsLayerItem, QgsFileDataCollectionItem, QgsFileDataCollectionGroupItem, and QgsDirectoryItem.

Definition at line 520 of file qgsdataitem.cpp.

◆ moveToThread()

void QgsDataItem::moveToThread ( QThread *  targetThread)

Move object and all its descendants to thread.

Definition at line 142 of file qgsdataitem.cpp.

◆ name()

QString QgsDataItem::name ( ) const
inline

Returns the name of the item (the displayed text for the item).

See also
setName()

Definition at line 339 of file qgsdataitem.h.

◆ paramWidget()

virtual Q_DECL_DEPRECATED QWidget* QgsDataItem::paramWidget ( )
inlinevirtual

Returns source widget from data item for QgsBrowserPropertiesWidget.

Use QgsDataItemGuiProvider::createParamWidget() instead

Deprecated:
QGIS 3.10

Reimplemented in QgsDirectoryItem.

Definition at line 187 of file qgsdataitem.h.

◆ parent()

QgsDataItem* QgsDataItem::parent ( ) const
inline

Gets item parent.

QgsDataItem maintains its own items hierarchy, it does not use QObject hierarchy.

Definition at line 324 of file qgsdataitem.h.

◆ path()

QString QgsDataItem::path ( ) const
inline

Definition at line 348 of file qgsdataitem.h.

◆ pathComponent()

QString QgsDataItem::pathComponent ( const QString &  component)
static

Create path component replacing path separators.

Definition at line 90 of file qgsdataitem.cpp.

◆ populate [1/2]

void QgsDataItem::populate ( bool  foreground = false)
virtualslot

Definition at line 189 of file qgsdataitem.cpp.

◆ populate() [2/2]

void QgsDataItem::populate ( const QVector< QgsDataItem * > &  children)
protectedvirtual

Definition at line 263 of file qgsdataitem.cpp.

◆ providerKey()

QString QgsDataItem::providerKey ( ) const

Returns the provider key that created this item (e.g.

"PostGIS")

If key has a prefix "special:", it marks that the item was not created with a provider, but manually. For example "special:Favorites", "special:Home"

Since
QGIS 3.12

Definition at line 380 of file qgsdataitem.cpp.

◆ refresh [1/2]

void QgsDataItem::refresh ( )
virtualslot

Definition at line 291 of file qgsdataitem.cpp.

◆ refresh() [2/2]

void QgsDataItem::refresh ( const QVector< QgsDataItem * > &  children)
protectedvirtual

Refresh the items from a specified list of child items.

Definition at line 329 of file qgsdataitem.cpp.

◆ refreshConnections

void QgsDataItem::refreshConnections ( const QString &  providerKey = QString())
virtualslot

Causes a data item provider to refresh all registered connections.

If providerKey is specified then only the matching provider will be refreshed. Otherwise, all providers will be refreshed (which is potentially very expensive!).

Definition at line 314 of file qgsdataitem.cpp.

◆ removeChildItem()

QgsDataItem * QgsDataItem::removeChildItem ( QgsDataItem child)
virtual

Removes a child item and returns it without deleting it.

Emits relevant signals to model as required.

Parameters
childchild to remove
Returns
pointer to the removed item or nullptr if no such item was found

Definition at line 469 of file qgsdataitem.cpp.

◆ rename()

bool QgsDataItem::rename ( const QString &  name)
virtual

Sets a new name for the item, and returns true if the item was successfully renamed.

Items which implement this method should return the QgsDataItem::Rename capability.

The default implementation does nothing.

Use QgsDataItemGuiProvider:

Since
QGIS 3.4
Deprecated:
QGIS 3.10

Reimplemented in QgsFavoriteItem.

Definition at line 539 of file qgsdataitem.cpp.

◆ rowCount()

int QgsDataItem::rowCount ( )

Definition at line 390 of file qgsdataitem.cpp.

◆ setCapabilities() [1/2]

void QgsDataItem::setCapabilities ( int  capabilities)
Deprecated:
use setCapabilitiesV2 instead.

Definition at line 544 of file qgsdataitem.cpp.

◆ setCapabilities() [2/2]

virtual void QgsDataItem::setCapabilities ( Qgis::BrowserItemCapabilities  capabilities)
inlinevirtual

Sets the capabilities for the data item.

See also
capabilities2()

Definition at line 304 of file qgsdataitem.h.

◆ setCrs()

bool QgsDataItem::setCrs ( const QgsCoordinateReferenceSystem crs)
virtual

Writes the selected crs into data source.

The original data source will be modified when calling this method.

Deprecated:
since QGIS 3.6. This method is no longer used by QGIS and will be removed in QGIS 4.0.

Definition at line 533 of file qgsdataitem.cpp.

◆ setIcon()

void QgsDataItem::setIcon ( const QIcon &  icon)
inline

Definition at line 395 of file qgsdataitem.h.

◆ setIconName()

void QgsDataItem::setIconName ( const QString &  iconName)
inline

Definition at line 396 of file qgsdataitem.h.

◆ setName()

void QgsDataItem::setName ( const QString &  name)

Sets the name of the item (the displayed text for the item).

See also
name()

Definition at line 178 of file qgsdataitem.cpp.

◆ setParent()

void QgsDataItem::setParent ( QgsDataItem parent)

Set item parent and connect / disconnect parent to / from item signals.

It does not add itself to parents children (mChildren)

Definition at line 404 of file qgsdataitem.cpp.

◆ setPath()

void QgsDataItem::setPath ( const QString &  path)
inline

Definition at line 349 of file qgsdataitem.h.

◆ setProviderKey()

void QgsDataItem::setProviderKey ( const QString &  value)

Sets the provider key that created this item (e.g.

"PostGIS")

If key has a prefix "special:", it marks that the item was not created with a provider, but manually. For example "special:Favorites"

Since
QGIS 3.12

Definition at line 385 of file qgsdataitem.cpp.

◆ setSortKey()

void QgsDataItem::setSortKey ( const QVariant &  key)

Sets a custom sorting key for the item.

See also
sortKey()

Definition at line 101 of file qgsdataitem.cpp.

◆ setState()

void QgsDataItem::setState ( Qgis::BrowserItemState  state)
virtual

Set item state.

It also take care about starting/stopping loading icon animation.

Parameters
state

Reimplemented in QgsDirectoryItem.

Definition at line 554 of file qgsdataitem.cpp.

◆ setToolTip()

void QgsDataItem::setToolTip ( const QString &  msg)
inline

Definition at line 398 of file qgsdataitem.h.

◆ sortKey()

QVariant QgsDataItem::sortKey ( ) const
virtual

Returns the sorting key for the item.

By default name() is returned, but setSortKey() can be used to set a custom sort key for the item.

Alternatively subclasses can override this method to return a custom sort key.

See also
setSortKey()

Reimplemented in QgsFavoritesItem, and QgsProjectHomeItem.

Definition at line 96 of file qgsdataitem.cpp.

◆ state()

Qgis::BrowserItemState QgsDataItem::state ( ) const

Definition at line 549 of file qgsdataitem.cpp.

◆ stateChanged

void QgsDataItem::stateChanged ( QgsDataItem item,
Qgis::BrowserItemState  oldState 
)
signal

Emitted when an item's state is changed.

◆ toolTip()

QString QgsDataItem::toolTip ( ) const
inline

Definition at line 399 of file qgsdataitem.h.

◆ type()

Qgis::BrowserItemType QgsDataItem::type ( ) const
inline

Definition at line 318 of file qgsdataitem.h.

◆ updateIcon

void QgsDataItem::updateIcon ( )
protectedslot

Will request a repaint of this icon.

Definition at line 258 of file qgsdataitem.cpp.

Member Data Documentation

◆ mCapabilities

Definition at line 437 of file qgsdataitem.h.

◆ mChildren

QVector<QgsDataItem *> QgsDataItem::mChildren
protected

Definition at line 439 of file qgsdataitem.h.

◆ mIcon

QIcon QgsDataItem::mIcon
protected

Definition at line 450 of file qgsdataitem.h.

◆ mIconMap

QMap<QString, QIcon> QgsDataItem::mIconMap
protected

Definition at line 451 of file qgsdataitem.h.

◆ mIconName

QString QgsDataItem::mIconName
protected

Definition at line 449 of file qgsdataitem.h.

◆ mName

QString QgsDataItem::mName
protected

Definition at line 441 of file qgsdataitem.h.

◆ mParent

QgsDataItem* QgsDataItem::mParent = nullptr
protected

Definition at line 438 of file qgsdataitem.h.

◆ mPath

QString QgsDataItem::mPath
protected

Definition at line 447 of file qgsdataitem.h.

◆ mProviderKey

QString QgsDataItem::mProviderKey
protected

Definition at line 442 of file qgsdataitem.h.

◆ mSortKey

QVariant QgsDataItem::mSortKey
protected

Custom sort key. If invalid, name() will be used for sorting instead.

Definition at line 454 of file qgsdataitem.h.

◆ mState

Definition at line 440 of file qgsdataitem.h.

◆ mToolTip

QString QgsDataItem::mToolTip
protected

Definition at line 448 of file qgsdataitem.h.

◆ mType

Qgis::BrowserItemType QgsDataItem::mType
protected

Definition at line 436 of file qgsdataitem.h.


The documentation for this class was generated from the following files: