Qt:Документация 4.3.2/qtooltip

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

QToolTip Class Reference
[модуль QtGui ]

The QToolTip class provides tool tips (balloon help) for any widget. Далее...

 #include <QToolTip>

Статические открытые члены

  • QFont font ()
  • void hideText ()
  • QPalette palette ()
  • void setFont ( const QFont & font )
  • void setPalette ( const QPalette & palette )
  • void showText ( const QPoint & pos, const QString & text, QWidget * w, const QRect & rect )
  • void showText ( const QPoint & pos, const QString & text, QWidget * w = 0 )

Подробное описание

The QToolTip class provides tool tips (balloon help) for any widget.

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 rich text formatted string.

Rich text displayed in a tool tip is implicitly word-wrapped unless specified differently with

</tt>. 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 event() function and call QToolTip::showText() with the text you want to display. The Tooltips example illustrates this technique. 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(). See also QWidget::toolTip, QAction::toolTip, and Tool Tips Example.


Описание функций-членов

QFont QToolTip::font () <tt> [static]</tt>

Returns the font used to render tooltips.

Эта функция была введена в Qt 4.2.

See also setFont().

void QToolTip::hideText () <tt> [static]</tt>

Hides the tool tip. This is the same as calling showText() with an empty string.

Эта функция была введена в Qt 4.2.

See also showText().

QPalette QToolTip::palette () <tt> [static]</tt>

Returns the palette used to render tooltips.

See also setPalette().

void QToolTip::setFont ( const QFont & font ) <tt> [static]</tt>

Sets the font used to render tooltips.

Эта функция была введена в Qt 4.2.

See also font().

void QToolTip::setPalette ( const QPalette & palette ) <tt> [static]</tt>

Sets the palette used to render tooltips.

Эта функция была введена в Qt 4.2.

See also palette().

void QToolTip::showText ( const QPoint & pos, const QString & text, QWidget * w, const QRect & rect ) <tt> [static]</tt>

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 0 but it is used to determine the appropriate screen on multi-head systems.

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.

void QToolTip::showText ( const QPoint & pos, const QString & text, QWidget * w = 0 ) <tt> [static]</tt>

Эта перегруженная функция предоставлена для удобства.

This is analogous to calling QToolTip::showText(pos, text, w, QRect())



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2