fetchmore.py¶
from PySide6 import QtCore, QtWidgets
class FileListModel(QtCore.QAbstractListModel):
numberPopulated = QtCore.Signal(int)
def __init__(self, parent=None):
super(FileListModel, self).__init__(parent)
self.fileCount = 0
self.fileList = []
def rowCount(self, parent=QtCore.QModelIndex()):
return self.fileCount
def data(self, index, role=QtCore.Qt.DisplayRole):
if not index.isValid():
return None
if index.row() >= len(self.fileList) or index.row() < 0:
return None
if role == QtCore.Qt.DisplayRole:
return self.fileList[index.row()]
if role == QtCore.Qt.BackgroundRole:
batch = (index.row() // 100) % 2
# FIXME: QGuiApplication::palette() required
if batch == 0:
return qApp.palette().base()
return qApp.palette().alternateBase()
return None
def canFetchMore(self, index):
return self.fileCount < len(self.fileList)
def fetchMore(self, index):
remainder = len(self.fileList) - self.fileCount
itemsToFetch = min(100, remainder)
self.beginInsertRows(QtCore.QModelIndex(), self.fileCount,
self.fileCount + itemsToFetch)
self.fileCount += itemsToFetch
self.endInsertRows()
self.numberPopulated.emit(itemsToFetch)
def setDirPath(self, path):
dir = QtCore.QDir(path)
self.beginResetModel()
self.fileList = list(dir.entryList())
self.fileCount = 0
self.endResetModel()
class Window(QtWidgets.QWidget):
def __init__(self, parent=None):
super(Window, self).__init__(parent)
model = FileListModel(self)
model.setDirPath(QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.PrefixPath))
label = QtWidgets.QLabel("Directory")
lineEdit = QtWidgets.QLineEdit()
label.setBuddy(lineEdit)
view = QtWidgets.QListView()
view.setModel(model)
self.logViewer = QtWidgets.QTextBrowser()
self.logViewer.setSizePolicy(QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred))
lineEdit.textChanged.connect(model.setDirPath)
lineEdit.textChanged.connect(self.logViewer.clear)
model.numberPopulated.connect(self.updateLog)
layout = QtWidgets.QGridLayout()
layout.addWidget(label, 0, 0)
layout.addWidget(lineEdit, 0, 1)
layout.addWidget(view, 1, 0, 1, 2)
layout.addWidget(self.logViewer, 2, 0, 1, 2)
self.setLayout(layout)
self.setWindowTitle("Fetch More Example")
def updateLog(self, number):
self.logViewer.append("%d items added." % number)
if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec_())
© 2021 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.