QAbstractListModel Class
The QAbstractListModel class provides an abstract model that can be subclassed to create one-dimensional list models. 更多...
头文件: | #include <QAbstractListModel> |
qmake: | QT += core |
基类: | QAbstractItemModel |
派生类: |
公有函数
QAbstractListModel(QObject *parent = Q_NULLPTR) | |
~QAbstractListModel() |
重新实现的公有函数
virtual bool | dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) |
virtual Qt::ItemFlags | flags(const QModelIndex &index) const |
virtual QModelIndex | index(int row, int column = 0, const QModelIndex &parent = QModelIndex()) const |
virtual QModelIndex | sibling(int row, int column, const QModelIndex &idx) const |
- 39 个公有函数继承自 QAbstractItemModel
- 32 个公有函数继承自 QObject
其他继承的成员
- 1 个属性继承自 QObject
- 2 个公有槽函数继承自 QAbstractItemModel
- 1 个公有槽函数继承自 QObject
- 18 个信号继承自 QAbstractItemModel
- 2 个信号继承自 QObject
- 11 个静态公有成员继承自 QObject
- 19 个受保护的函数继承自 QAbstractItemModel
- 9 个受保护的函数继承自 QObject
- 1 个受保护的槽函数继承自 QAbstractItemModel
详细描述
The QAbstractListModel class provides an abstract model that can be subclassed to create one-dimensional list models.
QAbstractListModel provides a standard interface for models that represent their data as a simple non-hierarchical sequence of items. It is not used directly, but must be subclassed.
Since the model provides a more specialized interface than QAbstractItemModel, it is not suitable for use with tree views; you will need to subclass QAbstractItemModel if you want to provide a model for that purpose. If you need to use a number of list models to manage data, it may be more appropriate to subclass QAbstractTableModel instead.
Simple models can be created by subclassing this class and implementing the minimum number of required functions. For example, we could implement a simple read-only QStringList-based model that provides a list of strings to a QListView widget. In such a case, we only need to implement the rowCount() function to return the number of items in the list, and the data() function to retrieve items from the list.
Since the model represents a one-dimensional structure, the rowCount() function returns the total number of items in the model. The columnCount() function is implemented for interoperability with all kinds of views, but by default informs views that the model contains only one column.
Subclassing
When subclassing QAbstractListModel, you must provide implementations of the rowCount() and data() functions. Well behaved models also provide a headerData() implementation.
If your model is used within QML and requires roles other than the default ones provided by the roleNames() function, you must override it.
For editable list models, you must also provide an implementation of setData(), and implement the flags() function so that it returns a value containing Qt::ItemIsEditable.
Note that QAbstractListModel provides a default implementation of columnCount() that informs views that there is only a single column of items in this model.
Models that provide interfaces to resizable list-like data structures can provide implementations of insertRows() and removeRows(). When implementing these functions, it is important to call the appropriate functions so that all connected views are aware of any changes:
- An insertRows() implementation must call beginInsertRows() before inserting new rows into the data structure, and it must call endInsertRows() immediately afterwards.
- A removeRows() implementation must call beginRemoveRows() before the rows are removed from the data structure, and it must call endRemoveRows() immediately afterwards.
Note: Some general guidelines for subclassing models are available in the Model Subclassing Reference.
参见 Model Classes, Model Subclassing Reference, QAbstractItemView, QAbstractTableModel, and Item Views Puzzle Example.
成员函数
QAbstractListModel::QAbstractListModel(QObject *parent = Q_NULLPTR)
Constructs an abstract list model with the given parent.
QAbstractListModel::~QAbstractListModel()
Destroys the abstract list model.
[virtual]
bool QAbstractListModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
Reimplemented from QAbstractItemModel::dropMimeData().
[virtual]
Qt::ItemFlags QAbstractListModel::flags(const QModelIndex &index) const
Reimplemented from QAbstractItemModel::flags().
[virtual]
QModelIndex QAbstractListModel::index(int row, int column = 0, const QModelIndex &parent = QModelIndex()) const
Reimplemented from QAbstractItemModel::index().
Returns the index of the data in row and column with parent.
参见 parent().
[virtual]
QModelIndex QAbstractListModel::sibling(int row, int column, const QModelIndex &idx) const
Reimplemented from QAbstractItemModel::sibling().