返回介绍

QToolTipGroup Class

发布于 2019-10-04 15:03:41 字数 4202 浏览 924 评论 0 收藏 0

The QToolTipGroup class collects tool tips into related groups. More...

#include <qtooltip.h>

Inherits QObject.

List of all member functions.

Public Members

  • QToolTipGroup ( QObject*parent, constchar*name = 0 )
  • ~QToolTipGroup ()
  • bool delay () const
  • bool enabled () const

Public Slots

  • void setDelay ( bool )
  • void setEnabled ( bool )

Signals

  • void showTip ( constQString&longText )
  • void removeTip ()

Properties

  • bool delay- whether the display of the group text is delayed
  • bool enabled- whether tool tips in the group are enabled

Detailed Description

The QToolTipGroup class collects tool tips into related groups.

Tool tips can display two texts: one in the tip and (optionally) one that is typically in a status bar. QToolTipGroup provides a way to link tool tips to this status bar.

QToolTipGroup has practically no API; it is used only as an argument to QToolTip's member functions, for example like this:

    QToolTipGroup * g = new QToolTipGroup( this, "tool tip relay" );
    connect( g, SIGNAL(showTip(const QString&)),
             myLabel, SLOT(setText(const QString&)) );
    connect( g, SIGNAL(removeTip()),
             myLabel, SLOT(clear()) );
    QToolTip::add( giraffeButton, "feed giraffe",
                   g, "Give the giraffe a meal" );
    QToolTip::add( gorillaButton, "feed gorilla",
                   g, "Give the gorilla a meal" );
  

This example makes the object myLabel (which you have to supply) display (one assumes, though you can make myLabel do anything, of course) the strings "Give the giraffe a meal" and "Give the gorilla a meal" while the relevant tool tips are being displayed.

Deleting a tool tip group removes the tool tips in it.

See also Help System.


Member Function Documentation

QToolTipGroup::QToolTipGroup ( QObject*parent, constchar*name = 0 )

Constructs a tool tip group with parent parent and name name.

QToolTipGroup::~QToolTipGroup ()

Destroys this tool tip group and all tool tips in it.

bool QToolTipGroup::delay () const

Returns TRUE if the display of the group text is delayed; otherwise returns FALSE. See the "delay" property for details.

bool QToolTipGroup::enabled () const

Returns TRUE if tool tips in the group are enabled; otherwise returns FALSE. See the "enabled" property for details.

void QToolTipGroup::removeTip () [signal]

This signal is emitted when a tool tip in this group is hidden. See the QToolTipGroup documentation for an example of use.

See also showTip().

void QToolTipGroup::setDelay ( bool ) [slot]

Sets whether the display of the group text is delayed. See the "delay" property for details.

void QToolTipGroup::setEnabled ( bool ) [slot]

Sets whether tool tips in the group are enabled. See the "enabled" property for details.

void QToolTipGroup::showTip ( constQString&longText ) [signal]

This signal is emitted when one of the tool tips in the group is displayed. longText is the extra text for the displayed tool tip.

See also removeTip().


Property Documentation

bool delay

This property holds whether the display of the group text is delayed.

If set to TRUE (the default), the group text is displayed at the time of the tool tip. Otherwise, the group text is displayed immediately when the cursor enters the widget.

Set this property's value with setDelay() and get this property's value with delay().

bool enabled

This property holds whether tool tips in the group are enabled.

This property's default is TRUE.

Set this property's value with setEnabled() and get this property's value with enabled().

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文