QStringListModel露
- PyQt5.QtCore.QStringListModel
Inherits from QAbstractListModel.
Inherited by QHelpIndexModel.
Description露
The QStringListModel class provides a model that supplies strings to views.
QStringListModel is an editable model that can be used for simple cases where you need to display a number of strings in a view widget, such as a QListView or a QComboBox.
The model provides all the standard functions of an editable model, representing the data in the string list as a model with one column and a number of rows equal to the number of items in the list.
Model indexes corresponding to items are obtained with the index() function, and item flags are obtained with flags(). Item data is read with the data() function and written with setData(). The number of rows (and number of items in the string list) can be found with the rowCount() function.
The model can be constructed with an existing string list, or strings can be set later with the setStringList() convenience function. Strings can also be inserted in the usual way with the insertRows() function, and removed with removeRows(). The contents of the string list can be retrieved with the stringList() convenience function.
An example usage of QStringListModel:
# QStringListModel *model = new QStringListModel();
# QStringList list;
# list << "a" << "b" << "c";
# model->setStringList(list);
See also
Methods露
- __init__(parent: QObject = None)
Constructs a string list model with the given parent.
- __init__(Iterable[str], parent: QObject = None)
Constructs a string list model containing the specified strings with the given parent.
- data(QModelIndex, int) → Any
TODO
- flags(QModelIndex) → ItemFlags
TODO
- insertRows(int, int, parent: QModelIndex = QModelIndex()) → bool
TODO
- itemData(QModelIndex) → Dict[int, Any]
TODO
- moveRows(QModelIndex, int, int, QModelIndex, int) → bool
TODO
- removeRows(int, int, parent: QModelIndex = QModelIndex()) → bool
TODO
- rowCount(parent: QModelIndex = QModelIndex()) → int
TODO
- setData(QModelIndex, Any, role: int = EditRole) → bool
TODO
- setItemData(QModelIndex, Dict[int, Any]) → bool
TODO
- setStringList(Iterable[str])
Sets the model鈥檚 internal string list to strings. The model will notify any attached views that its underlying data has changed.
See also
stringList(), dataChanged().
- sibling(int, int, QModelIndex) → QModelIndex
TODO
- sort(int, order: SortOrder = AscendingOrder)
TODO
- stringList() → List[str]
Returns the string list used by the model to store data.
See also
- supportedDropActions() → DropActions
TODO