我修改了QGroupBox复选框的行为,以隐藏/显示该组的子级,从而有效地充当了扩展器。它的工作效果很好,但是唯一的问题是默认复选框图标看起来像是用于启用/禁用组,而不是扩展组。我想用扩展器样式的图标代替它。
我发现这篇帖子几乎可以回答我的问题(最终我可能最终不得不使用该解决方案):Change PySide QGroupBox checkbox image。问题是那里提供的答案建议使用自定义复选框图像,而我想使用内置于操作系统的特定扩展器,例如QTreeView中的扩展器,在我的PC上看起来像这样:
这甚至可能吗?扩展器是否被视为程式化复选框或完全其他形式?我对Qt相当陌生,所以我对样式的处理方式不是很熟悉。这是我可以查询的东西吗?如果可以,它甚至可以与QCheckBox样式兼容吗?除了仅启用/禁用扩展器之外,我在QTreeView文档页面上没有太多关于扩展器的信息,而我目前正试图深入研究QTreeView.cpp源代码以了解扩展器的工作原理。
更新
从eyllanesc的答案出发,我越来越接近解决方案,但是在覆盖QProxyStyle的方法时遇到了一些问题。我正在尝试执行以下操作:
class GroupBoxExpanderStyle(QtWidgets.QProxyStyle):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._replaceCheckboxWithExpander = False
def drawComplexControl(self, control, option, painter, widget):
try:
if control == QtWidgets.QStyle.CC_GroupBox and widget.isCheckable():
self._replaceCheckboxWithExpander = True
super().drawComplexControl(control, option, painter, widget)
finally:
self._replaceCheckboxWithExpander = False
def drawPrimitive(self, element, option, painter, widget):
if element == QtWidgets.QStyle.PE_IndicatorCheckBox and self._replaceCheckboxWithExpander:
indicatorBranchOption = ... # Set up options for drawing PE_IndicatorBranch
super().drawPrimitive(QtWidgets.QStyle.PE_IndicatorBranch, indicatorBranchOption, painter, widget)
else:
super().drawPrimitive(element, option, painter, widget)
在this code中似乎已经做了类似的事情。我遇到的问题是QGroupBox小部件根本没有调用我的覆盖的drawPrimitive()
函数,但是其他具有相同代理样式的小部件却被调用了!在qcommonstyle.cpp的drawComplexControl()
函数中,CC_GroupBox
的情况正在调用
proxy()->drawPrimitive(PE_IndicatorCheckBox, &box, p, widget);
绘制复选框,所以我不明白为什么我的覆盖功能没有运行。
我不确定如何调试此代码,因为我无法进入C ++代码查看实际调用的内容。谁能提供任何建议来帮助我弄清楚为什么我被覆盖的drawPrimitive()
没有被呼叫?
更新2:
我解决了为何未调用覆盖的drawPrimitive()
的谜团-这是因为我的应用程序使用了根级样式表,这导致QStyleSheetStyle
被用作活动目录小部件的样式。 QStyleSheetStyle
直接为drawPrimitive()
调用了自己的CC_GroupBox
方法,而不是调用proxy()->drawPrimitive()
-对我来说这似乎是个错误,实际上this Qt bug指出样式表不要与QProxyStyle
混合使用。我将尝试不再使用样式表。
eyllanesc的技术适用于Fusion样式,因此我接受了他的回答,但与其他样式不兼容。
答案 0 :(得分:1)
一种可能的解决方案是实现QProxyStyle:
from PySide2 import QtCore, QtGui, QtWidgets
class GroupBoxProxyStyle(QtWidgets.QProxyStyle):
def subControlRect(self, control, option, subControl, widget):
ret = super(GroupBoxProxyStyle, self).subControlRect(
control, option, subControl, widget
)
if (
control == QtWidgets.QStyle.CC_GroupBox
and subControl == QtWidgets.QStyle.SC_GroupBoxLabel
and widget.isCheckable()
):
r = self.subControlRect(
QtWidgets.QStyle.CC_GroupBox,
option,
QtWidgets.QStyle.SC_GroupBoxCheckBox,
widget,
)
ret.adjust(r.width(), 0, 0, 0)
return ret
def drawComplexControl(self, control, option, painter, widget):
is_group_box = False
if control == QtWidgets.QStyle.CC_GroupBox and widget.isCheckable():
option.subControls &= ~QtWidgets.QStyle.SC_GroupBoxCheckBox
is_group_box = True
super(GroupBoxProxyStyle, self).drawComplexControl(
control, option, painter, widget
)
if is_group_box and widget.isCheckable():
opt = QtWidgets.QStyleOptionViewItem()
opt.rect = self.proxy().subControlRect(
QtWidgets.QStyle.CC_GroupBox,
option,
QtWidgets.QStyle.SC_GroupBoxCheckBox,
widget,
)
opt.state = QtWidgets.QStyle.State_Children
opt.state |= (
QtWidgets.QStyle.State_Open
if widget.isChecked()
else QtWidgets.QStyle.State_None
)
self.drawPrimitive(
QtWidgets.QStyle.PE_IndicatorBranch, opt, painter, widget
)
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
style = GroupBoxProxyStyle(app.style())
app.setStyle(style)
w = QtWidgets.QGroupBox(title="Exclusive Radio Buttons")
w.setCheckable(True)
vbox = QtWidgets.QVBoxLayout()
for text in ("Radio button 1", "Radio button 2", "Radio button 3"):
radiobutton = QtWidgets.QRadioButton(text)
vbox.addWidget(radiobutton)
vbox.addStretch(1)
w.setLayout(vbox)
w.resize(320, 240)
w.show()
sys.exit(app.exec_())
更新:
OP提供的code到Python的转换如下:
from PySide2 import QtCore, QtGui, QtWidgets
class GroupBoxProxyStyle(QtWidgets.QProxyStyle):
def drawPrimitive(self, element, option, painter, widget):
if element == QtWidgets.QStyle.PE_IndicatorCheckBox and isinstance(
widget, QtWidgets.QGroupBox
):
super().drawPrimitive(
QtWidgets.QStyle.PE_IndicatorArrowDown
if widget.isChecked()
else QtWidgets.QStyle.PE_IndicatorArrowRight,
option,
painter,
widget,
)
else:
super().drawPrimitive(element, option, painter, widget)
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
style = GroupBoxProxyStyle(app.style())
app.setStyle(style)
w = QtWidgets.QGroupBox(title="Exclusive Radio Buttons")
w.setCheckable(True)
vbox = QtWidgets.QVBoxLayout()
for text in ("Radio button 1", "Radio button 2", "Radio button 3"):
radiobutton = QtWidgets.QRadioButton(text)
vbox.addWidget(radiobutton)
vbox.addStretch(1)
w.setLayout(vbox)
w.resize(320, 240)
w.show()
sys.exit(app.exec_())