我想要一个行为略有改变的QAction。我希望QAction只在检查时发出信号,并且我希望它的复选框始终可以检查,即使QAction已被禁用。例如,如果将QAction设置为setEnabled(False),则无法单击QAction或选中/取消选中它。我喜欢它不能被点击了,但不喜欢我无法切换QAction中的复选框。是否可以修改它以获得我正在寻找的东西?
我附上了一个示例文件,如下所示。目标是在QAction设置为禁用(setEnabled(False))的情况下制定一些解决方案,但用户仍然可以选中/取消选中它。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''An example file with a QAction that stays checkable.'''
# IMPORT STANDARD LIBRARIES
import sys
# IMPORT THIRD-PARTY LIBRARIES
from Qt import QtWidgets
from Qt import QtCore
class AlwaysOpenAction(QtWidgets.QAction):
def __init__(self, *args, **kwargs):
super(AlwaysOpenAction, self).__init__(*args, **kwargs)
self.toggled.connect(self.printout)
def printout(self):
if self.isChecked():
print('Checkbox was checked')
class WindowTest(QtWidgets.QWidget):
'''A basic window.'''
def __init__(self, parent=None):
'''Init the window.'''
super(WindowTest, self).__init__(parent=parent)
self.setLayout(QtWidgets.QHBoxLayout())
self.menubar = QtWidgets.QMenuBar(parent=self)
self.menu = self.menubar.addMenu('Some menu')
action = AlwaysOpenAction('something', self.menu)
action.setCheckable(True)
action.setEnabled(False)
self.menu.addAction(action)
self.layout().addWidget(self.menubar)
self.resize(500, 400)
def main():
'''Do the window test.'''
qapp = QtWidgets.QApplication(sys.argv)
window = WindowTest()
window.show()
sys.exit(qapp.exec_())
if __name__ == '__main__':
main()
答案 0 :(得分:2)
因为你希望能够仍然点击QAction来检查和取消选中我不认为有必要禁用QAction。相反,你可以改变它的外观。 您是否尝试过使用样式表?
尝试在代码中添加这一简单的行:
self.menu.setStyleSheet("""color: gray;""")
所以我在这里要说的是,你可以根据自己的意愿改变你的风格。
您还可以尝试更详细和更具体的内容,上面的行会将菜单中的每个文本更改为灰色,您可以指定要更改字体颜色的对象类型等等,例如:< / p>
self.menu.setStyleSheet("""QPushButton{background-color: red}""")
依旧......
你可以尝试一些其他的方法来实现你想要的东西,有时我们只是陷入困境,还有其他方法可以做到这一点。快速浏览一下我修改的这段代码,它会使你想要的东西类似,我认为“)
'''An example file with a QAction that stays checkable.'''
# IMPORT STANDARD LIBRARIES
import sys
# IMPORT THIRD-PARTY LIBRARIES
from PyQt5.QtWidgets import QApplication
from PyQt5.QtWidgets import QCheckBox
from PyQt5.QtWidgets import QHBoxLayout
from PyQt5.QtWidgets import QMenuBar
from PyQt5.QtWidgets import QWidget
from PyQt5.QtWidgets import QWidgetAction
class CheckBox(QCheckBox):
def __init__(self, name):
super(CheckBox, self).__init__()
self.update_color()
self.setText(name)
def mousePressEvent(self, event):
self.update_color()
super(CheckBox, self).mousePressEvent(event)
def update_color(self):
if self.isChecked():
self.setStyleSheet("color: gray;")
else:
self.setStyleSheet("")
class WindowTest(QWidget):
'''A basic window.'''
def __init__(self, parent=None):
'''Init the window.'''
super(WindowTest, self).__init__(parent=parent)
self.setLayout(QHBoxLayout())
self.menubar = QMenuBar(parent=self)
self.menu = self.menubar.addMenu('Some menu')
self.menu.setContentsMargins(10,10,10,10)
self.widget_action = QWidgetAction(self)
self.button = CheckBox("some")
self.button.setCheckable(True)
self.button.setFixedSize(100, 20)
self.widget_action.setDefaultWidget(self.button)
self.menu.addAction(self.widget_action)
self.setFixedSize(500,200)
def main():
'''Do the window test.'''
qapp = QApplication(sys.argv)
window = WindowTest()
window.show()
sys.exit(qapp.exec_())
if __name__ == '__main__':
main()
由于我给你的样式表的第一个例子有一个缺陷,因为QAction不是一个Widget所以我不能真正改变它的样式表(它没有一个)所以我不得不改变菜单样式表会影响什么其他所有人。第二个例子使用QCheckBox这是一个小部件,所以我可以专门更改它的样式表,我可以从菜单中对每个项目进行更好的控制:D