Qt 4.8:如何拥有一个看起来像 QLabel 的 QPushButton?
Qt 4.8: how to have a QPushButton that looks like a QLabel?
我想画一个 QPushButton
(可点击等),但让它看起来像 QLabel
。 (另一种理解方式是我想要一个可点击的标签,即一个行为类似于按钮的标签,但这似乎更难。)
我试过button.setStyleSheet("QLabel")
,没用。
有没有办法告诉按钮使用另一种样式class?或“窃取”QLabel
?
的样式
如果可能的话,我想避免重新定义整个样式(我不拥有样式表,Qt 嵌入在第三方应用程序中),除非这是微不足道的。
编辑:我最终使用了@musicamante 的样式表解决方案,我向其中添加了 text-align: left
(按钮居中,标签不居中)和 :hover/:pressed
颜色(cyan/blue 看起来像程序员艺术,但服务于目的:):
QPushButton {
border: none;
background: transparent;
text-align: left;
color: palette(window-text);
}
QPushButton:hover {
color: cyan;
}
QPushButton:pressed {
color: blue;
}
通常不建议像标签一样设计按钮样式,因为它不会使其状态清晰,尤其是在按下和释放鼠标按钮时 在按钮矩形之外。
无论如何,将border
属性 设置为none
就足够了,这也会删除背景。为了安全和一致,您可以使背景透明(某些样式可能会覆盖它)并确保使用调色板的 WindowText
颜色角色(而不是 ButtonText
角色):
button.setStyleSheet("""
border: none;
color: palette(window-text);
background: transparent;
""")
不过,制作可点击的标签并不难,而且可以使用富文本内容,这是 QPushButton 做不到的。
class ClickableLabel(QLabel):
clicked = Signal()
def mousePressEvent(self, event):
super(ClickableLabel, self).mousePressEvent(event)
if event.button() == Qt.LeftButton:
self.clicked.emit()
或者,为了与按钮的行为保持一致(如上所述,如果鼠标按钮在按钮矩形的边界内释放,则“单击”被视为有效):
class ClickableLabel(QLabel):
clicked = Signal()
def mouseReleaseEvent(self, event):
super(ClickableLabel, self).mouseReleaseEvent(self, event)
if event.button() == Qt.LeftButton and event.pos() in self.rect():
self.clicked.emit()
你可以创建一个自定义的QLabel,先public继承一个QLabel,然后重载
void mouseReleaseEvent(QMouseEvent *e)
void mouseReleaseEvent(QMouseEvent *e){
if(e.button == Qt::LeftButton){
//emit a signal or you want to do when the label are clicked
}
}
我想画一个 QPushButton
(可点击等),但让它看起来像 QLabel
。 (另一种理解方式是我想要一个可点击的标签,即一个行为类似于按钮的标签,但这似乎更难。)
我试过button.setStyleSheet("QLabel")
,没用。
有没有办法告诉按钮使用另一种样式class?或“窃取”QLabel
?
如果可能的话,我想避免重新定义整个样式(我不拥有样式表,Qt 嵌入在第三方应用程序中),除非这是微不足道的。
编辑:我最终使用了@musicamante 的样式表解决方案,我向其中添加了 text-align: left
(按钮居中,标签不居中)和 :hover/:pressed
颜色(cyan/blue 看起来像程序员艺术,但服务于目的:):
QPushButton {
border: none;
background: transparent;
text-align: left;
color: palette(window-text);
}
QPushButton:hover {
color: cyan;
}
QPushButton:pressed {
color: blue;
}
通常不建议像标签一样设计按钮样式,因为它不会使其状态清晰,尤其是在按下和释放鼠标按钮时 在按钮矩形之外。
无论如何,将border
属性 设置为none
就足够了,这也会删除背景。为了安全和一致,您可以使背景透明(某些样式可能会覆盖它)并确保使用调色板的 WindowText
颜色角色(而不是 ButtonText
角色):
button.setStyleSheet("""
border: none;
color: palette(window-text);
background: transparent;
""")
不过,制作可点击的标签并不难,而且可以使用富文本内容,这是 QPushButton 做不到的。
class ClickableLabel(QLabel):
clicked = Signal()
def mousePressEvent(self, event):
super(ClickableLabel, self).mousePressEvent(event)
if event.button() == Qt.LeftButton:
self.clicked.emit()
或者,为了与按钮的行为保持一致(如上所述,如果鼠标按钮在按钮矩形的边界内释放,则“单击”被视为有效):
class ClickableLabel(QLabel):
clicked = Signal()
def mouseReleaseEvent(self, event):
super(ClickableLabel, self).mouseReleaseEvent(self, event)
if event.button() == Qt.LeftButton and event.pos() in self.rect():
self.clicked.emit()
你可以创建一个自定义的QLabel,先public继承一个QLabel,然后重载 void mouseReleaseEvent(QMouseEvent *e)
void mouseReleaseEvent(QMouseEvent *e){
if(e.button == Qt::LeftButton){
//emit a signal or you want to do when the label are clicked
}
}