當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。