qtooltipgroup.html

来自「QT 下载资料仅供参考」· HTML 代码 · 共 148 行

HTML
148
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><!-- /home/reggie/tmp/qt-3.0-reggie-5401/qt-x11-commercial-3.0.5/src/widgets/qtooltip.cpp:997 --><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>QToolTipGroup Class</title><style type="text/css"><!--h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }a:link { color: #004faf; text-decoration: none }a:visited { color: #672967; text-decoration: none }body { background: #ffffff; color: black; }--></style></head><body><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr bgcolor="#E5E5E5"><td valign=center> <a href="index.html"><font color="#004faf">Home</font></a> | <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a> | <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a> | <a href="annotated.html"><font color="#004faf">Annotated</font></a> | <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a> | <a href="functions.html"><font color="#004faf">Functions</font></a></td><td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>QToolTipGroup Class Reference</h1><p>The QToolTipGroup class collects tool tips into related groups.<a href="#details">More...</a><p><tt>#include &lt;<a href="qtooltip-h.html">qtooltip.h</a>&gt;</tt><p>Inherits <a href="qobject.html">QObject</a>.<p><a href="qtooltipgroup-members.html">List of all member functions.</a><h2>Public Members</h2><ul><li><div class=fn><a href="#QToolTipGroup"><b>QToolTipGroup</b></a> ( QObject&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;name = 0 )</div></li><li><div class=fn><a href="#~QToolTipGroup"><b>~QToolTipGroup</b></a> ()</div></li><li><div class=fn>bool <a href="#delay"><b>delay</b></a> () const</div></li><li><div class=fn>bool <a href="#enabled"><b>enabled</b></a> () const</div></li></ul><h2>Public Slots</h2><ul><li><div class=fn>void <a href="#setDelay"><b>setDelay</b></a> ( bool )</div></li><li><div class=fn>void <a href="#setEnabled"><b>setEnabled</b></a> ( bool )</div></li></ul><h2>Signals</h2><ul><li><div class=fn>void <a href="#showTip"><b>showTip</b></a> ( const&nbsp;QString&nbsp;&amp;&nbsp;longText )</div></li><li><div class=fn>void <a href="#removeTip"><b>removeTip</b></a> ()</div></li></ul><h2>Properties</h2><ul><li><div class=fn>bool <a href="#delay-prop"><b>delay</b></a>&nbsp;- whether the display of the group text is delayed</div></li><li><div class=fn>bool <a href="#enabled-prop"><b>enabled</b></a>&nbsp;- whether tool tips in the group are enabled</div></li></ul><hr><a name="details"></a><h2>Detailed Description</h2><p> The QToolTipGroup class collects tool tips into related groups.<p> <p> Tool tips can display <em>two</em> texts: one in the tip and (optionally) onethat is typically in a status bar.  QToolTipGroup provides a way to linktool tips to this status bar.<p> QToolTipGroup has practically no API; it is used only as an argumentto <a href="qtooltip.html">QToolTip</a>'s member functions, for example like this:<p> <pre>    QToolTipGroup * g = new QToolTipGroup( this, "tool tip relay" );    <a href="qobject.html#connect">connect</a>( g, SIGNAL(<a href="#showTip">showTip</a>(const <a href="qstring.html">QString</a>&amp;)),             myLabel, SLOT(setText(const <a href="qstring.html">QString</a>&amp;)) );    <a href="qobject.html#connect">connect</a>( g, SIGNAL(<a href="#removeTip">removeTip</a>()),             myLabel, SLOT(clear()) );    QToolTip::<a href="qtooltip.html#add">add</a>( giraffeButton, "feed giraffe",                   g, "Give the giraffe a meal" );    QToolTip::<a href="qtooltip.html#add">add</a>( gorillaButton, "feed gorilla",                   g, "Give the gorilla a meal" );  </pre> <p> This example makes the object myLabel (which you have to supply)display (one assumes, though you can make myLabel do anything, ofcourse) the strings "Give the giraffe a meal" and "Give the gorillaa meal" while the relevant tool tips are being displayed.<p> Deleting a tool tip group removes the tool tips in it.<p>See also <a href="helpsystem.html">Help System</a>.<hr><h2>Member Function Documentation</h2><h3 class=fn><a name="QToolTipGroup"></a>QToolTipGroup::QToolTipGroup ( <a href="qobject.html">QObject</a>&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;name = 0 )</h3>Constructs a tool tip group with parent <em>parent</em> and name <em>name</em>.<h3 class=fn><a name="~QToolTipGroup"></a>QToolTipGroup::~QToolTipGroup ()</h3>Destroys this tool tip group and all tool tips in it.<h3 class=fn>bool <a name="delay"></a>QToolTipGroup::delay () const</h3><p>Returns TRUE if the display of the group text is delayed; otherwise returns FALSE.See the <a href="qtooltipgroup.html#delay-prop">"delay"</a> property for details.<h3 class=fn>bool <a name="enabled"></a>QToolTipGroup::enabled () const</h3><p>Returns TRUE if tool tips in the group are enabled; otherwise returns FALSE.See the <a href="qtooltipgroup.html#enabled-prop">"enabled"</a> property for details.<h3 class=fn>void <a name="removeTip"></a>QToolTipGroup::removeTip ()<tt> [signal]</tt></h3> <p> This signal is emitted when a tool tip in this group is hidden.  Seethe QToolTipGroup documentation for an example of use.<p> <p>See also <a href="#showTip">showTip</a>().<h3 class=fn>void <a name="setDelay"></a>QToolTipGroup::setDelay ( bool )<tt> [slot]</tt></h3><p>Sets whether the display of the group text is delayed.See the <a href="qtooltipgroup.html#delay-prop">"delay"</a> property for details.<h3 class=fn>void <a name="setEnabled"></a>QToolTipGroup::setEnabled ( bool )<tt> [slot]</tt></h3><p>Sets whether tool tips in the group are enabled.See the <a href="qtooltipgroup.html#enabled-prop">"enabled"</a> property for details.<h3 class=fn>void <a name="showTip"></a>QToolTipGroup::showTip ( const&nbsp;<a href="qstring.html">QString</a>&nbsp;&amp;&nbsp;longText )<tt> [signal]</tt></h3> <p> This signal is emitted when one of the tool tips in the group isdisplayed.  <em>longText</em> is the extra text for the displayedtool tip.<p> <p>See also <a href="#removeTip">removeTip</a>().<hr><h2>Property Documentation</h2><h3 class=fn>bool <a name="delay-prop"></a>delay</h3><p>This property holds whether the display of the group text is delayed.<p>If set to TRUE (the default), the group text is displayed at the time ofthe tool tip.  Otherwise, the group text is displayed immediately when thecursor enters the widget.<p>Set this property's value with <a href="#setDelay">setDelay</a>() and get this property's value with <a href="#delay">delay</a>().<h3 class=fn>bool <a name="enabled-prop"></a>enabled</h3><p>This property holds whether tool tips in the group are enabled.<p>This property's default is TRUE.<p>Set this property's value with <a href="#setEnabled">setEnabled</a>() and get this property's value with <a href="#enabled">enabled</a>().<!-- eof --><hr><p>This file is part of the <a href="index.html">Qt toolkit</a>.Copyright &copy; 1995-2002<a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center><table width=100% cellspacing=0 border=0><tr><td>Copyright &copy; 2002 <a href="http://www.trolltech.com">Trolltech</a><td><a href="http://www.trolltech.com/trademarks.html">Trademarks</a><td align=right><div align=right>Qt version 3.0.5</div></table></div></address></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?