右键单击 QTableWidget 获取标题列

问题描述 投票:0回答:2

我有一个 QTableWidget,其中有许多列只是复选框(有些不是)。我正在尝试实现一项功能,以便当用户右键单击与“仅复选框”列相关的标题项时,他们会看到“取消全部选中”或“全部选中”的选项。

到目前为止,我已经成功通过以下信号实现了

customContextMenu

self.headers = self.tblData.horizontalHeader()
self.headers.setContextMenuPolicy(Qt.CustomContextMenu)
self.headers.customContextMenuRequested.connect(self.show_header_context_menu)
self.headers.setSelectionMode(QAbstractItemView.SingleSelection)

这会导致以下上下文菜单调用:

def show_header_context_menu(self, position):
    menu = QMenu()
    deselect = menu.addAction("Clear Checked")
    ac = menu.exec_(self.tblData.mapToGlobal(position))
    if ac == deselect:
        pass
        #Actually do stuff here, of course

这会弹出一个上下文菜单,但是我找不到任何方法来获取右键单击的标题的索引,我尝试过

self.headers.selectedIndexes()
以及
self.headers.currentIndex()
但这些似乎只与实际表格相关选择,而不是标题。

一旦我设法获得右键单击的标题索引,我就可以轻松限制菜单仅在选择正确的索引时才显示(那些仅带有复选框的列),所以这确实是额外的事情。

我错过了什么?预先感谢您的帮助。

python pyqt contextmenu signals-slots qtablewidget
2个回答
6
投票

customContextMenuRequested
信号将上下文菜单事件的位置作为
QPoint
发送。方便的是,表的标题有一个 ologicalIndexAt 的重载,可以直接利用它,所以你可以简单地这样做:

def show_header_context_menu(self, position):
    column = self.headers.logicalIndexAt(position)

1
投票

我看到你正在使用 python,但我认为这应该仍然有效。

尝试创建一个

QHeaderView
派生类并尝试覆盖

的行为
void QHeaderView::mousePressEvent ( QMouseEvent * e )

获取鼠标右键事件,然后使用

int QHeaderView::logicalIndexAt ( int x, int y ) const

获取右键单击的列的逻辑索引。最后显示您的上下文菜单。

参见 http://doc.qt.nokia.com/4.7-snapshot/qheaderview.html

© www.soinside.com 2019 - 2024. All rights reserved.