1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qevent.cpp -->
<title>Qt 4.8: QStatusTipEvent Class Reference</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li><a href="qtgui.html">QtGui</a></li>
<li>QStatusTipEvent</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<h1 class="title">QStatusTipEvent Class Reference</h1>
<!-- $$$QStatusTipEvent-brief -->
<p>The QStatusTipEvent class provides an event that is used to show messages in a status bar. <a href="#details">More...</a></p>
<!-- @@@QStatusTipEvent -->
<pre class="cpp"> <span class="preprocessor">#include <QStatusTipEvent></span></pre><p><b>Inherits: </b><a href="qevent.html">QEvent</a>.</p>
<ul>
<li><a href="qstatustipevent-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-functions"></a>
<h2>Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qstatustipevent.html#QStatusTipEvent">QStatusTipEvent</a></b> ( const QString & <i>tip</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="qstatustipevent.html#tip">tip</a></b> () const</td></tr>
</table>
<ul>
<li class="fn">6 public functions inherited from <a href="qevent.html#public-functions">QEvent</a></li>
</ul>
<h3>Additional Inherited Members</h3>
<ul>
<li class="fn">1 property inherited from <a href="qevent.html#properties">QEvent</a></li>
<li class="fn">1 static public member inherited from <a href="qevent.html#static-public-members">QEvent</a></li>
</ul>
<a name="details"></a>
<!-- $$$QStatusTipEvent-description -->
<div class="descr">
<h2>Detailed Description</h2>
<p>The QStatusTipEvent class provides an event that is used to show messages in a status bar.</p>
<p>Status tips can be set on a widget using the <a href="qwidget.html#statusTip-prop">QWidget::setStatusTip</a>() function. They are shown in the status bar when the mouse cursor enters the widget. For example:</p>
<table class="generic" width="100%">
<tr valign="top" class="odd"><td ><pre class="cpp"> MainWindow<span class="operator">::</span>MainWindow(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qmainwindow.html">QMainWindow</a></span>(parent)
{
<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>myWidget <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qwidget.html">QWidget</a></span>;
myWidget<span class="operator">-</span><span class="operator">></span>setStatusTip(tr(<span class="string">"This is my widget."</span>));
setCentralWidget(myWidget);
...
}</pre>
</td><td ><p class="centerAlign"><img src="images/qstatustipevent-widget.png" alt="Widget with status tip." /></p></td></tr>
</table>
<p>Status tips can also be set on actions using the <a href="qaction.html#statusTip-prop">QAction::setStatusTip</a>() function:</p>
<table class="generic" width="100%">
<tr valign="top" class="odd"><td ><pre class="cpp"> MainWindow<span class="operator">::</span>MainWindow(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qmainwindow.html">QMainWindow</a></span>(parent)
{
<span class="type"><a href="qmenu.html">QMenu</a></span> <span class="operator">*</span>fileMenu <span class="operator">=</span> menuBar()<span class="operator">-</span><span class="operator">></span>addMenu(tr(<span class="string">"File"</span>));
<span class="type"><a href="qaction.html">QAction</a></span> <span class="operator">*</span>newAct <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qaction.html">QAction</a></span>(tr(<span class="string">"&New"</span>)<span class="operator">,</span> <span class="keyword">this</span>);
newAct<span class="operator">-</span><span class="operator">></span>setStatusTip(tr(<span class="string">"Create a new file."</span>));
fileMenu<span class="operator">-</span><span class="operator">></span>addAction(newAct);
...
}</pre>
</td><td ><p class="centerAlign"><img src="images/qstatustipevent-action.png" alt="Action with status tip." /></p></td></tr>
</table>
<p>Finally, status tips are supported for the item view classes through the <a href="qt.html#ItemDataRole-enum">Qt::StatusTipRole</a> enum value.</p>
</div>
<p><b>See also </b><a href="qstatusbar.html">QStatusBar</a>, <a href="qhelpevent.html">QHelpEvent</a>, and <a href="qwhatsthisclickedevent.html">QWhatsThisClickedEvent</a>.</p>
<!-- @@@QStatusTipEvent -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$QStatusTipEvent[overload1]$$$QStatusTipEventconstQString& -->
<h3 class="fn"><a name="QStatusTipEvent"></a>QStatusTipEvent::<span class="name">QStatusTipEvent</span> ( const <span class="type"><a href="qstring.html">QString</a></span> & <i>tip</i> )</h3>
<p>Constructs a status tip event with the text specified by <i>tip</i>.</p>
<p><b>See also </b><a href="qstatustipevent.html#tip">tip</a>().</p>
<!-- @@@QStatusTipEvent -->
<!-- $$$tip[overload1]$$$tip -->
<h3 class="fn"><a name="tip"></a><span class="type"><a href="qstring.html">QString</a></span> QStatusTipEvent::<span class="name">tip</span> () const</h3>
<p>Returns the message to show in the status bar.</p>
<p><b>See also </b><a href="qstatusbar.html#showMessage">QStatusBar::showMessage</a>().</p>
<!-- @@@tip -->
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Nokia Corporation and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>
|