如何使 QToolTip 消息持久化?
How to make QToolTip message persistent?
我想在单击按钮后使 qtooltip 消息持久化。我打算稍后使用 qtimer 自己隐藏它,但问题是当我将鼠标光标从按钮 rect 移开时,消息消失,我想让它留在那里,直到稍后我调用 hideText()
from PyQt4 import QtGui, QtCore
from functools import partial
class MyDialog(QtGui.QDialog):
def __init__(self, parent=None):
super(MyDialog, self).__init__(parent)
layout = QtGui.QVBoxLayout()
btn = QtGui.QPushButton('Push Me')
layout.addWidget(btn)
self.setLayout(layout)
btn.clicked.connect(partial(self.showFloatingMessage,'This is a long message'))
def showFloatingMessage(self, message='', delay=500):
desktop = QtGui.QApplication.desktop()
screen_num = desktop.screenNumber(QtGui.QCursor.pos())
screen_rect = desktop.screenGeometry(screen_num)
QtGui.QToolTip.showText(screen_rect.center(), message, None, screen_rect)
app = QtGui.QApplication([])
dialog = MyDialog()
dialog.show()
app.exec_()
一个可能的解决方案是使用 QLabel 作为 QToolTip,我们通过启用 Qt.ToolTip 标志来实现。你的情况:
from PyQt4 import QtGui, QtCore
class MyDialog(QtGui.QDialog):
def __init__(self, parent=None):
super(MyDialog, self).__init__(parent)
layout = QtGui.QVBoxLayout()
btn = QtGui.QPushButton('Push Me')
layout.addWidget(btn)
self.setLayout(layout)
btn.clicked.connect(lambda: self.showFloatingMessage('This is a long message', 5000))
def showFloatingMessage(self, message='', delay=500):
desktop = QtGui.QApplication.desktop()
screen_num = desktop.screenNumber(QtGui.QCursor.pos())
screen_rect = desktop.screenGeometry(screen_num)
lb = QtGui.QLabel(self)
lb.setWindowFlags(QtCore.Qt.ToolTip)
lb.setText(message)
lb.move(screen_rect.center())
lb.show()
QtCore.QTimer.singleShot(delay, lb.hide)
app = QtGui.QApplication([])
dialog = MyDialog()
dialog.show()
app.exec_()
我想在单击按钮后使 qtooltip 消息持久化。我打算稍后使用 qtimer 自己隐藏它,但问题是当我将鼠标光标从按钮 rect 移开时,消息消失,我想让它留在那里,直到稍后我调用 hideText()
from PyQt4 import QtGui, QtCore
from functools import partial
class MyDialog(QtGui.QDialog):
def __init__(self, parent=None):
super(MyDialog, self).__init__(parent)
layout = QtGui.QVBoxLayout()
btn = QtGui.QPushButton('Push Me')
layout.addWidget(btn)
self.setLayout(layout)
btn.clicked.connect(partial(self.showFloatingMessage,'This is a long message'))
def showFloatingMessage(self, message='', delay=500):
desktop = QtGui.QApplication.desktop()
screen_num = desktop.screenNumber(QtGui.QCursor.pos())
screen_rect = desktop.screenGeometry(screen_num)
QtGui.QToolTip.showText(screen_rect.center(), message, None, screen_rect)
app = QtGui.QApplication([])
dialog = MyDialog()
dialog.show()
app.exec_()
一个可能的解决方案是使用 QLabel 作为 QToolTip,我们通过启用 Qt.ToolTip 标志来实现。你的情况:
from PyQt4 import QtGui, QtCore
class MyDialog(QtGui.QDialog):
def __init__(self, parent=None):
super(MyDialog, self).__init__(parent)
layout = QtGui.QVBoxLayout()
btn = QtGui.QPushButton('Push Me')
layout.addWidget(btn)
self.setLayout(layout)
btn.clicked.connect(lambda: self.showFloatingMessage('This is a long message', 5000))
def showFloatingMessage(self, message='', delay=500):
desktop = QtGui.QApplication.desktop()
screen_num = desktop.screenNumber(QtGui.QCursor.pos())
screen_rect = desktop.screenGeometry(screen_num)
lb = QtGui.QLabel(self)
lb.setWindowFlags(QtCore.Qt.ToolTip)
lb.setText(message)
lb.move(screen_rect.center())
lb.show()
QtCore.QTimer.singleShot(delay, lb.hide)
app = QtGui.QApplication([])
dialog = MyDialog()
dialog.show()
app.exec_()