如何创建 QTableview 单元格悬停功能

Posted

技术标签:

【中文标题】如何创建 QTableview 单元格悬停功能【英文标题】:how to create QTableview cell hover function 【发布时间】:2021-12-17 02:32:52 【问题描述】:

我用 QTableview 创建了一个表。我尝试添加鼠标悬停功能(如果我将鼠标放在特定单元格上)以更改光标样式。我无法在 QTableview 中优化任何内置功能鼠标悬停连接功能。所以我用鼠标table.entered.connect(on_entered) 来改变光标。离开功能不可用。所以我面临图片中显示的以下问题。手形光标在单元格(1,1)中发生变化,但离开单元格(1,1)时不会变回箭头

import sys
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *

data=[[1,1],[1,2],['a','b']]

class TableModel(QAbstractTableModel):
    def __init__(self, data,header_labels=None):
        super().__init__();self._data = data;self.header_labels=header_labels

    def data(self, index, role):
        if role == Qt.DisplayRole:return self._data[index.row()][index.column()]
    def rowCount(self, index):return len(self._data)
    def columnCount(self, index):return len(self._data[0])
    def headerData(self, section, orientation, role=Qt.DisplayRole):
        if self.header_labels==None:self.header_labels=range(len(self._data[0]))
        if role == Qt.DisplayRole and orientation == Qt.Horizontal:return self.header_labels[section]
        return QAbstractTableModel.headerData(self, section, orientation, role)

def on_entered(index):
    if index.row()==1 and index.column()==1: table.setCursor(QCursor(Qt.CursorShape.PointingHandCursor))
    else:table.setCursor(QCursor(Qt.CursorShape.ArrowCursor))
app = QApplication(sys.argv)
window = QWidget()
vl=QVBoxLayout(window)

searchbar = QLineEdit()
table=QTableView()
proxy_model = QSortFilterProxyModel()
model = TableModel(data)
proxy_model.setSourceModel(model)
table.setModel(proxy_model)

table.entered.connect(on_entered)
table.setMouseTracking(True)
table.setSelectionMode(QAbstractItemView.NoSelection)
table.setFocusPolicy(Qt.FocusPolicy.NoFocus)

vl.addWidget(table)
t=TableModel(data[1:],data[0])
proxy_model.setSourceModel(t)
window.show()
app.exec_()

【问题讨论】:

【参考方案1】:

您需要对表格进行子类化,覆盖mouseMoveEvent 并使用indexAt 检查鼠标位置处的索引。

由于鼠标移动期间可能会发生鼠标交互,因此您应该仅在按下 no 按钮时设置光标。 mouseTracking 属性仍然是必需的。

class CursorShapeTable(QTableView):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.setMouseTracking(True)

    def mouseMoveEvent(self, event):
        super().mouseMoveEvent(event)
        if not event.buttons():
            index = self.indexAt(event.pos())
            if index.row() == 1 and index.column() == 1:
                self.setCursor(Qt.CursorShape.PointingHandCursor)
            else:
                self.unsetCursor()

【讨论】:

这适用于鼠标光标格式。同样,如果我想更改单元格背景颜色而不是光标格式。需要选择哪个选项?如何重置以前的单元格格式? @Viswa 鼠标光标和单元格格式是完全不同的东西。如果您想更改鼠标悬停时单元格的显示方式,那么您需要使用自定义项目委托,但这不是这个问题的主题,所以我建议您: 1. 对 Qt 进行一些研究和学习项目代表,以及 2. 最终提出一个单独的问题。

以上是关于如何创建 QTableview 单元格悬停功能的主要内容,如果未能解决你的问题,请参考以下文章

Qt 中 QTableView 中如何设置某一单元格文本的颜色值,希望能贴出代码。

QTableView:如何将鼠标悬停在整行上?

Qt QTableView 在活动单元格周围绘制边框

QTableView 的单元格是空的,但标题显示

在 Qtableview 上设置具有颜色(红色/绿色/黄色)的特定单元格

将按钮添加到 QTableview