summaryrefslogtreecommitdiffstats
path: root/doc/html/eventsandfilters.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-25 15:36:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-29 22:23:36 +0900
commit0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch)
tree0ef68a6a92087957855c7607ac176821d10d049d /doc/html/eventsandfilters.html
parent7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff)
downloadtqt-0917fbb5.tar.gz
tqt-0917fbb5.zip
Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/eventsandfilters.html')
-rw-r--r--doc/html/eventsandfilters.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/eventsandfilters.html b/doc/html/eventsandfilters.html
index e2950722a..23b9a1c0b 100644
--- a/doc/html/eventsandfilters.html
+++ b/doc/html/eventsandfilters.html
@@ -45,7 +45,7 @@ from other sources, e.g. <a href="tqtimerevent.html">TQTimerEvent</a>, and some
application program. TQt is symmetric, as usual, so you can send
events in exactly the same ways as TQt's own event loop does.
<p> Most events types have special classes, most commonly <a href="qresizeevent.html">TQResizeEvent</a>,
-<a href="tqpaintevent.html">TQPaintEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a> and <a href="qcloseevent.html">TQCloseEvent</a>.
+<a href="tqpaintevent.html">TQPaintEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a> and <a href="tqcloseevent.html">TQCloseEvent</a>.
There are many others, perhaps forty or so, but most are rather odd.
<p> Each class subclasses <a href="tqevent.html">TQEvent</a> and adds event-specific functions; see,
for example, <a href="qresizeevent.html">TQResizeEvent</a>. In the case of <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qresizeevent.html#size">TQResizeEvent::size</a>() and <a href="qresizeevent.html#oldSize">TQResizeEvent::oldSize</a>() are added.
@@ -94,7 +94,7 @@ contain:
return TRUE;
}
} else if ( evt-&gt;<a href="tqevent.html#type">type</a>() &gt;= TQEvent::User ) {
- <a href="qcustomevent.html">TQCustomEvent</a> *ce = (TQCustomEvent*) evt;
+ <a href="tqcustomevent.html">TQCustomEvent</a> *ce = (TQCustomEvent*) evt;
// custom event handling here
return TRUE;
}
@@ -137,8 +137,8 @@ posted event will typically be dispatched very soon after the
initialization of the object is complete.
<p> To create events of a custom type, you need to define an event number,
which must be greater than <a href="tqevent.html#Type-enum">TQEvent::User</a>, and probably you also need
-to subclass <a href="qcustomevent.html">TQCustomEvent</a> in order to pass characteristics about
-your custom event. See the documentation to <a href="qcustomevent.html">TQCustomEvent</a> for
+to subclass <a href="tqcustomevent.html">TQCustomEvent</a> in order to pass characteristics about
+your custom event. See the documentation to <a href="tqcustomevent.html">TQCustomEvent</a> for
details.
<p>
<!-- eof -->