summaryrefslogtreecommitdiffstats
path: root/doc/html/helpsystem-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/helpsystem-example.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/helpsystem-example.html')
-rw-r--r--doc/html/helpsystem-example.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/helpsystem-example.html b/doc/html/helpsystem-example.html
index 6a210e97e..300b2499e 100644
--- a/doc/html/helpsystem-example.html
+++ b/doc/html/helpsystem-example.html
@@ -143,7 +143,7 @@ the coordinates before we can use TQTable's functions.
so that the tooltip disappears when the mouse cursor leaves
the cell, and use <a href="ntqtooltip.html#tip">TQToolTip::tip</a>() to display the cell's label
in a tooltip and to provide text for the <a href="qtooltipgroup.html">TQToolTipGroup</a> as before.
-<pre> class WhatsThis : public <a href="ntqobject.html">TQObject</a>, public TQWhatsThis
+<pre> class WhatsThis : public <a href="tqobject.html">TQObject</a>, public TQWhatsThis
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
@@ -162,7 +162,7 @@ in a tooltip and to provide text for the <a href="qtooltipgroup.html">TQToolTipG
-<p> The WhatsThis class is a subclass of both <a href="ntqobject.html">TQObject</a> and
+<p> The WhatsThis class is a subclass of both <a href="tqobject.html">TQObject</a> and
<a href="ntqwhatsthis.html">TQWhatsThis</a> and serves as a base class for the HeaderWhatsThis
and TableWhatsThis classes. <a href="#footnote1"><sup>(1)</sup></a><a name="footnote-call1"></a> WhatsThis
reimplements clicked() which will be called when the user clicks
@@ -385,9 +385,9 @@ and the toolbar are populated.
which will enter "What's this?" mode when clicked.
<pre> //create tooltipgroup
<a href="qtooltipgroup.html">TQToolTipGroup</a> * tipGroup = new <a href="qtooltipgroup.html">TQToolTipGroup</a>( this );
- <a name="x2697"></a> <a href="ntqobject.html#connect">connect</a>( tipGroup, TQ_SIGNAL(<a href="qtooltipgroup.html#showTip">showTip</a>(const <a href="ntqstring.html">TQString</a>&amp;)), statusBar(),
+ <a name="x2697"></a> <a href="tqobject.html#connect">connect</a>( tipGroup, TQ_SIGNAL(<a href="qtooltipgroup.html#showTip">showTip</a>(const <a href="ntqstring.html">TQString</a>&amp;)), statusBar(),
TQ_SLOT(message(const <a href="ntqstring.html">TQString</a>&amp;)) );
- <a name="x2696"></a> <a href="ntqobject.html#connect">connect</a>( tipGroup, TQ_SIGNAL(<a href="qtooltipgroup.html#removeTip">removeTip</a>()), statusBar(), TQ_SLOT(clear()) );
+ <a name="x2696"></a> <a href="tqobject.html#connect">connect</a>( tipGroup, TQ_SIGNAL(<a href="qtooltipgroup.html#removeTip">removeTip</a>()), statusBar(), TQ_SLOT(clear()) );
</pre>
<p> A <a href="qtooltipgroup.html">TQToolTipGroup</a> is created and will show and remove tooltips
in the statusbar as the tooltips are displayed on the widgets.
@@ -422,12 +422,12 @@ Instances of the two WhatsThis subclasses are created for the
headers and the table. What's This? help is also added for the
menu items.
<pre> // connections
- <a href="ntqobject.html#connect">connect</a>( assistantButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), this, TQ_SLOT(assistantSlot()) );
- <a href="ntqobject.html#connect">connect</a>( horizontalWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
+ <a href="tqobject.html#connect">connect</a>( assistantButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), this, TQ_SLOT(assistantSlot()) );
+ <a href="tqobject.html#connect">connect</a>( horizontalWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
TQ_SLOT(<a href="ntqassistantclient.html#showPage">showPage</a>(const <a href="ntqstring.html">TQString</a>&amp;)) );
- <a href="ntqobject.html#connect">connect</a>( verticalWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
+ <a href="tqobject.html#connect">connect</a>( verticalWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
TQ_SLOT(<a href="ntqassistantclient.html#showPage">showPage</a>(const <a href="ntqstring.html">TQString</a>&amp;)) );
- <a href="ntqobject.html#connect">connect</a>( cellWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
+ <a href="tqobject.html#connect">connect</a>( cellWhatsThis, TQ_SIGNAL(linkClicked(const <a href="ntqstring.html">TQString</a>&amp;)), assistant,
TQ_SLOT(<a href="ntqassistantclient.html#showPage">showPage</a>(const <a href="ntqstring.html">TQString</a>&amp;)) );
}
</pre>
@@ -443,7 +443,7 @@ the assistant button.
</pre>
<p> The destructor deletes the tooltips. We need to delete the
tooltips explicitly since <a href="ntqtooltip.html">TQToolTip</a> is, as mentioned above, not
-a subclass of <a href="ntqobject.html">TQObject</a> and the instances of TQToolTip not will be
+a subclass of <a href="tqobject.html">TQObject</a> and the instances of TQToolTip not will be
deleted when the widget is deleted.
<pre> void MainWindow::assistantSlot()
{
@@ -476,7 +476,7 @@ and use the make tool to build the library.
<hr>
<ol> <li><a name="footnote1"></a>
-Note that <a href="moc.html#moc">moc</a> requires that <a href="ntqobject.html">TQObject</a>
+Note that <a href="moc.html#moc">moc</a> requires that <a href="tqobject.html">TQObject</a>
is the first base class. <a href="#footnote-call1">Back...</a> <li><a name="footnote2"></a>
Note that we have to explicitly scope the orientation