QTableView中的搜索/查找功能

Orc*_*ser 5 python search qt pyqt qtableview

我有一个QWidget,里面有一个QTableView.我需要在表的第一列有一个查找功能,所以当我点击Ctrl + F时,会弹出一个查找对话框.

class Widget(QWidget):
    def __init__(self,md,parent=None):
        QWidget.__init__(self,parent)
        layout=QVBoxLayout(self)

        # initially construct the visible table
        tv = QTableView()
        # uncomment this if the last column shall cover the rest
        tv.horizontalHeader().setStretchLastSection(True)
        tv.show()

        # set black grid lines
        self.setStyleSheet("gridline-color: rgb(39, 42, 49)")

        # construct the Qt model belonging to the visible table
        model = NvmQtModel(md)
        tv.setModel(model)
        tv.resizeRowsToContents()
        tv.resizeColumnsToContents()

        # set the shortcut ctrl+F for find in menu
        shortcut = QShortcut(QKeySequence('Ctrl+f'), self)
        shortcut.activated.connect(self.handleFind)

        # delegate for decimal
        delegate = NvmDelegate()
        tv.setItemDelegate(delegate)
        self.setGeometry(200,200,600,600) # adjust this later
        layout.addWidget(tv)

        # set window title
        self.setWindowTitle("TITLE")

    # shows and handles the find dialog
    def handleFind(self):
        findDialog = QDialog()
        grid = QGridLayout()
        findDialog.setLayout(grid)

        findLabel = QLabel("Find what", findDialog)
        grid.addWidget(findLabel,1,0)
        findField = QLineEdit(findDialog)
        grid.addWidget(findField,1,1)
        findButton = QPushButton("Find", findDialog)
        findButton.clicked.connect(self.find)
        grid.addWidget(findButton,2,1)

        findDialog.exec_()

    # find function: search in the first column of the table   
    def find(self):
        #to do

    # prevent closing the window  without confirmation
    def closeEvent(self, event):
        reply=QMessageBox.question(self,'Message',"Are you sure to quit?",QMessageBox.Yes|QMessageBox.No,QMessageBox.No)
        if reply==QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()

# create the application and the new tree view container
app=QApplication(sys.argv)
wid=Widget(md)
wid.show()
wid.raise_()
Run Code Online (Sandbox Code Playgroud)

我在findButton操作中遇到问题,它应该在表的第一列中搜索.如果你在这个问题上指导我,我将不胜感激.

ekh*_*oro 7

首先,您需要更改find​​Button的连接方式,以便它发送要搜索的文本:

findButton.clicked.connect(
    lambda: self.find(findField.text()))
Run Code Online (Sandbox Code Playgroud)

然后,您可以使用tableview模型的匹配方法在表中搜索:

def find(self, text, column=0):
    model = self.table.model()
    start = model.index(0, column)
    matches = model.match(
        start, QtCore.Qt.DisplayRole,
        text, 1, QtCore.Qt.MatchContains)
    if matches:
        index = matches[0]
        # index.row(), index.column()
        self.table.selectionModel().select(
            index, QtGui.QItemSelectionModel.Select)
Run Code Online (Sandbox Code Playgroud)

更新:

上面的方法将找到包含给定文本的第一个单元格,然后选择它.如果要查找匹配的下一个单元格,则start需要将其设置为当前选择的相应索引(如果有).这可以通过以下方式获得:

    indexes = self.table.selectionModel().selectedIndexes()
Run Code Online (Sandbox Code Playgroud)

  • @And3r50n1。当然,是的。只需在 `match` 方法中使用 `-1` 来获取所有匹配项,然后遍历它们。您可能还需要更改表格的 [选择模式](https://doc.qt.io/qt-5/qabstractitemview.html#selectionMode-prop) 以允许多选。 (2认同)