Obsolete Members for QAbstractItemModel

The following members of class QAbstractItemModel are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.

Public Functions

(obsolete) void setSupportedDragActions(Qt::DropActions actions)

Protected Functions

(obsolete) void reset()
(obsolete) void setRoleNames(const QHash<int, QByteArray> &roleNames)

Member Function Documentation

[protected] void QAbstractItemModel::reset()

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

Resets the model to its original state in any attached views.

This function emits the signals modelAboutToBeReset() and modelReset().

Note: Use beginResetModel() and endResetModel() instead whenever possible. Use this method only if there is no way to call beginResetModel() before invalidating the model. Otherwise it could lead to unexpected behaviour, especially when used with proxy models.

For example, in this code both signals modelAboutToBeReset() and modelReset() are emitted after the data changes:

myData.clear();
reset();

Instead you should use:

beginResetModel();
myData.clear();
endResetModel();

[protected] void QAbstractItemModel::setRoleNames(const QHash<int, QByteArray> &roleNames)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This function is obsolete. Reimplement roleNames() instead.

Sets the model's role names to roleNames.

This function allows mapping of role identifiers to role property names in scripting languages.

This function was introduced in Qt 4.6.

See also roleNames().

void QAbstractItemModel::setSupportedDragActions(Qt::DropActions actions)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This function is obsolete. Reimplement supportedDragActions() instead.

Sets the supported drag actions for the items in the model.

This function was introduced in Qt 4.2.

See also supportedDragActions() and Using drag and drop with item views.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.