summaryrefslogtreecommitdiffstats
path: root/doc/html/eventsandfilters.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/eventsandfilters.html')
-rw-r--r--doc/html/eventsandfilters.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/eventsandfilters.html b/doc/html/eventsandfilters.html
index 57aa22aa0..116cd4cbe 100644
--- a/doc/html/eventsandfilters.html
+++ b/doc/html/eventsandfilters.html
@@ -40,16 +40,16 @@ events are specific to <a href="tqwidget.html">TQWidget</a> and its subclasses,
important events that aren't related to graphics, for example, socket
activation, which is the event used by <a href="tqsocketnotifier.html">TQSocketNotifier</a> for its
work.
-<p> Some events come from the window system, e.g. <a href="qmouseevent.html">TQMouseEvent</a>, some
+<p> Some events come from the window system, e.g. <a href="tqmouseevent.html">TQMouseEvent</a>, some
from other sources, e.g. <a href="tqtimerevent.html">TQTimerEvent</a>, and some come from the
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="tqkeyevent.html">TQKeyEvent</a> and <a href="tqcloseevent.html">TQCloseEvent</a>.
+<p> Most events types have special classes, most commonly <a href="tqresizeevent.html">TQResizeEvent</a>,
+<a href="tqpaintevent.html">TQPaintEvent</a>, <a href="tqmouseevent.html">TQMouseEvent</a>, <a href="tqkeyevent.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.
-<p> Some classes support more than one event type. <a href="qmouseevent.html">TQMouseEvent</a>
+for example, <a href="tqresizeevent.html">TQResizeEvent</a>. In the case of <a href="tqresizeevent.html">TQResizeEvent</a>, <a href="tqresizeevent.html#size">TQResizeEvent::size</a>() and <a href="tqresizeevent.html#oldSize">TQResizeEvent::oldSize</a>() are added.
+<p> Some classes support more than one event type. <a href="tqmouseevent.html">TQMouseEvent</a>
supports mouse moves, presses, shift-presses, drags, clicks,
right-presses, etc.
<p> Since programs need to react in varied and complex ways, TQt's
@@ -63,7 +63,7 @@ do not perform all the necessary work in your implementation of the
virtual function, you may need to call the base class's
implementation; for example:
<pre>
- MyTable::contentsMouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> *me )
+ MyTable::contentsMouseMoveEvent( <a href="tqmouseevent.html">TQMouseEvent</a> *me )
{
// my implementation