本文整理匯總了Python中spyderlib.qt.QtGui.QToolTip.hideText方法的典型用法代碼示例。如果您正苦於以下問題:Python QToolTip.hideText方法的具體用法?Python QToolTip.hideText怎麽用?Python QToolTip.hideText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類spyderlib.qt.QtGui.QToolTip
的用法示例。
在下文中一共展示了QToolTip.hideText方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: hide_tooltip_if_necessary
# 需要導入模塊: from spyderlib.qt.QtGui import QToolTip [as 別名]
# 或者: from spyderlib.qt.QtGui.QToolTip import hideText [as 別名]
def hide_tooltip_if_necessary(self, key):
"""Hide calltip when necessary"""
try:
calltip_char = self.get_character(self.calltip_position)
before = self.is_cursor_before(self.calltip_position, char_offset=1)
other = key in (Qt.Key_ParenRight, Qt.Key_Period, Qt.Key_Tab)
if calltip_char not in ("?", "(") or before or other:
QToolTip.hideText()
except (IndexError, TypeError):
QToolTip.hideText()
示例2: keyPressEvent
# 需要導入模塊: from spyderlib.qt.QtGui import QToolTip [as 別名]
# 或者: from spyderlib.qt.QtGui.QToolTip import hideText [as 別名]
def keyPressEvent(self, event):
"""Override Qt method"""
QToolTip.hideText()
ctrl = event.modifiers() & Qt.ControlModifier
if event.key() in [Qt.Key_Enter, Qt.Key_Return]:
if ctrl:
self.process_text(array=False)
else:
self.process_text(array=True)
self.accept()
else:
QDialog.keyPressEvent(self, event)
示例3: update_warning
# 需要導入模塊: from spyderlib.qt.QtGui import QToolTip [as 別名]
# 或者: from spyderlib.qt.QtGui.QToolTip import hideText [as 別名]
def update_warning(self, reset=False):
""" """
conflicts = self.check_conflicts()
if reset:
conflicts = []
widget = self.helper_button
if conflicts:
tip_title = _('The new entered shorcut conflicts with:') + '\n'
tip_body = ''
for s in conflicts:
tip_body += ' - {0}: {1}\n'.format(s.context, s.name)
tip = '{0}{1}'.format(tip_title, tip_body)
widget.setIcon(get_std_icon('MessageBoxWarning'))
widget.setToolTip(tip)
QToolTip.showText(widget.mapToGlobal(QPoint(0, 5)), tip)
else:
widget.setToolTip('')
QToolTip.hideText()
widget.setIcon(get_std_icon('DialogApplyButton'))
示例4: mousePressEvent
# 需要導入模塊: from spyderlib.qt.QtGui import QToolTip [as 別名]
# 或者: from spyderlib.qt.QtGui.QToolTip import hideText [as 別名]
def mousePressEvent(self, event):
QToolTip.hideText()