![]() |
Qt 6.x
The Qt SDK
|
The QToolTip class provides tool tips (balloon help) for any widget. More...
#include <qtooltip.h>
Static Public Member Functions | |
static void | showText (const QPoint &pos, const QString &text, QWidget *w=nullptr, const QRect &rect={}, int msecShowTime=-1) |
Shows text as a tool tip, with the global position pos as the point of interest. | |
static void | hideText () |
static bool | isVisible () |
static QString | text () |
static QPalette | palette () |
Returns the palette used to render tooltips. | |
static void | setPalette (const QPalette &) |
static QFont | font () |
static void | setFont (const QFont &) |
The QToolTip class provides tool tips (balloon help) for any widget.
\inmodule QtWidgets
The tip is a short piece of text reminding the user of the widget's function. It is drawn immediately below the given position in a distinctive black-on-yellow color combination. The tip can be any \l{QTextEdit}{rich text} formatted string.
Rich text displayed in a tool tip is implicitly word-wrapped unless specified differently with {
}.
The simplest and most common way to set a widget's tool tip is by calling its QWidget::setToolTip() function.
It is also possible to show different tool tips for different regions of a widget, by using a QHelpEvent of type QEvent::ToolTip. Intercept the help event in your widget's \l {QWidget::}{event()} function and call QToolTip::showText() with the text you want to display. The \l{widgets/tooltips}{Tooltips} example illustrates this technique.
If you are calling QToolTip::hideText(), or QToolTip::showText() with an empty string, as a result of a \l{QEvent::}{ToolTip}-event you should also call \l{QEvent::}{ignore()} on the event, to signal that you don't want to start any tooltip specific modes.
Note that, if you want to show tooltips in an item view, the model/view architecture provides functionality to set an item's tool tip; e.g., the QTableWidgetItem::setToolTip() function. However, if you want to provide custom tool tips in an item view, you must intercept the help event in the QAbstractItemView::viewportEvent() function and handle it yourself.
The default tool tip color and font can be customized with setPalette() and setFont(). When a tooltip is currently on display, isVisible() returns true
and text() the currently visible text.
Definition at line 13 of file qtooltip.h.
|
static |
Returns the font used to render tooltips.
Definition at line 533 of file qtooltip.cpp.
References QApplication::font().
Referenced by setFont().
|
inlinestatic |
Hides the tool tip. This is the same as calling showText() with an empty string.
Definition at line 19 of file qtooltip.h.
Referenced by QMenu::event(), and QGraphicsScenePrivate::leaveScene().
|
static |
Returns true
if a tooltip is currently shown.
Definition at line 496 of file qtooltip.cpp.
References QTipLabel::instance, and isVisible().
Referenced by isVisible(), and showText().
|
static |
Returns the palette used to render tooltips.
Definition at line 523 of file qtooltip.cpp.
Referenced by QTipLabel::QTipLabel(), and setPalette().
Sets the font used to render tooltips.
Definition at line 558 of file qtooltip.cpp.
References font(), and QApplication::setFont().
Sets the palette used to render tooltips.
Definition at line 546 of file qtooltip.cpp.
References QTipLabel::instance, palette(), and QWidget::setPalette().
Referenced by qt_init_tooltip_palette().
|
static |
Shows text as a tool tip, with the global position pos as the point of interest.
The tool tip will be shown with a platform specific offset from this point of interest.
If you specify a non-empty rect the tip will be hidden as soon as you move your cursor out of this area.
The rect is in the coordinates of the widget you specify with w. If the rect is not empty you must specify a widget. Otherwise this argument can be \nullptr but it is used to determine the appropriate screen on multi-head systems.
The msecDisplayTime parameter specifies for how long the tool tip will be displayed, in milliseconds. With the default value of -1, the time is based on the length of the text.
If text is empty the tool tip is hidden. If the text is the same as the currently shown tooltip, the tip will not move. You can force moving by first hiding the tip with an empty text, and then showing the new tip at the new position.
Definition at line 427 of file qtooltip.cpp.
References QWidgetPrivate::get(), QTipLabel::getTipScreen(), QTipLabel::hideTip(), QTipLabel::instance, QApplication::isEffectEnabled(), QString::isEmpty(), isVisible(), QTipLabel::placeTip(), pos, Q_UNUSED, qFadeEffect(), qScrollEffect(), rect, QTipLabel::reuseTip(), QObject::setObjectName(), QWidgetPrivate::setScreen(), QTipLabel::setTipRect(), QWidget::showNormal(), text(), Qt::UI_AnimateTooltip, and Qt::UI_FadeTooltip.
Referenced by QMenu::event(), QTabBar::event(), QWidget::event(), QGraphicsScene::helpEvent(), QAbstractItemDelegate::helpEvent(), and QHeaderView::viewportEvent().
|
static |
Returns the tooltip text, if a tooltip is visible, or an empty string if a tooltip is not visible.
Definition at line 507 of file qtooltip.cpp.
References QTipLabel::instance, and QLabel::text.
Referenced by showText().