当前位置: 首页>>代码示例>>Python>>正文


Python QToolTip.hideText方法代码示例

本文整理汇总了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()
开发者ID:sys-bio,项目名称:Spyderplugin_ratelaws,代码行数:12,代码来源:base.py

示例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)
开发者ID:ImadBouirmane,项目名称:spyder,代码行数:15,代码来源:arraybuilder.py

示例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'))
开发者ID:ptocca,项目名称:spyder,代码行数:23,代码来源:shortcuts.py

示例4: mousePressEvent

# 需要导入模块: from spyderlib.qt.QtGui import QToolTip [as 别名]
# 或者: from spyderlib.qt.QtGui.QToolTip import hideText [as 别名]
 def mousePressEvent(self, event):
     QToolTip.hideText()
开发者ID:AminJamalzadeh,项目名称:spyder,代码行数:4,代码来源:helperwidgets.py


注:本文中的spyderlib.qt.QtGui.QToolTip.hideText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。