.BI "bool \fBdelay\fR - whether the display of the group text is delayed"
.br
.ti -1c
.BI "bool \fBenabled\fR - whether tool tips in the group are enabled"
.br
.in -1c
.SH DESCRIPTION
The QToolTipGroup class collects tool tips into related groups.
.PP
Tool tips can display \fItwo\fR 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.
.PP
QToolTipGroup has practically no API; it is only used as an argument to QToolTip's member functions, for example like this:
.PP
.nf
.br
QToolTipGroup * grp = new QToolTipGroup( this, "tool tip relay" );
.br
connect( grp, SIGNAL(showTip(const QString&)),
.br
myLabel, SLOT(setText(const QString&)) );
.br
connect( grp, SIGNAL(removeTip()),
.br
myLabel, SLOT(clear()) );
.br
QToolTip::add( giraffeButton, "feed giraffe",
.br
grp, "Give the giraffe a meal" );
.br
QToolTip::add( gorillaButton, "feed gorilla",
.br
grp, "Give the gorilla a meal" );
.br
.fi
.PP
This example makes the object myLabel (which you must 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.
.PP
Deleting a tool tip group removes the tool tips in it.
This signal is emitted when one of the tool tips in the group is displayed. \fIlongText\fR is the extra text for the displayed tool tip.
.PP
See also removeTip().
.PP
Example: helpsystem/mainwindow.cpp.
.SS "Property Documentation"
.SH "bool delay"
This property holds whether the display of the group text is delayed.
.PP
If set to TRUE (the default), the group text is displayed at the same time as the tool tip. Otherwise, the group text is displayed immediately when the cursor enters the widget.
.PP
Set this property's value with setDelay() and get this property's value with delay().
.SH "bool enabled"
This property holds whether tool tips in the group are enabled.
.PP
This property's default is TRUE.
.PP
Set this property's value with setEnabled() and get this property's value with enabled().
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qtooltipgroup.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
license file included in the distribution for a complete license
statement.
.SH AUTHOR
Generated automatically from the source code.
.SH BUGS
If you find a bug in Qt, please report it as described in