本文整理汇总了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()