summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqobject.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqobject.3qt')
-rw-r--r--doc/man/man3/tqobject.3qt32
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index db5f3c00c..9d0c29a1e 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -15,7 +15,7 @@ All the functions in this class are reentrant when TQt is built with thread supp
.PP
Inherits Qt.
.PP
--Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, QTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
+-Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
@@ -164,7 +164,7 @@ Inherits Qt.
.BI "const TQObject * \fBsender\fR ()"
.br
.ti -1c
-.BI "virtual void \fBtimerEvent\fR ( QTimerEvent * )"
+.BI "virtual void \fBtimerEvent\fR ( TQTimerEvent * )"
.br
.ti -1c
.BI "virtual void \fBchildEvent\fR ( QChildEvent * )"
@@ -207,7 +207,7 @@ When an object is deleted, it emits a destroyed() signal. You can catch this sig
.PP
TQObjects can receive events through event() and filter the events of other objects. See installEventFilter() and eventFilter() for details. A convenience handler, childEvent(), can be reimplemented to catch child events.
.PP
-Last but not least, TQObject provides the basic timer support in Qt; see QTimer for high-level support for timers.
+Last but not least, TQObject provides the basic timer support in Qt; see TQTimer for high-level support for timers.
.PP
Notice that the TQ_OBJECT macro is mandatory for any object that implements signals, slots or properties. You also need to run the moc program (Meta Object Compiler) on the source file. We strongly recommend the use of this macro in \fIall\fR subclasses of TQObject regardless of whether or not they actually use signals, slots and properties, since failure to do so may lead certain functions to exhibit undefined behaviour.
.PP
@@ -597,9 +597,9 @@ Example:
.PP
.nf
.br
- QTimer *t = new QTimer; // QTimer inherits TQObject
+ TQTimer *t = new TQTimer; // TQTimer inherits TQObject
.br
- t->inherits( "QTimer" ); // returns TRUE
+ t->inherits( "TQTimer" ); // returns TRUE
.br
t->inherits( "TQObject" ); // returns TRUE
.br
@@ -713,9 +713,9 @@ Example:
.PP
.nf
.br
- QTimer *t = new QTimer; // QTimer inherits TQObject
+ TQTimer *t = new TQTimer; // TQTimer inherits TQObject
.br
- t->isA( "QTimer" ); // returns TRUE
+ t->isA( "TQTimer" ); // returns TRUE
.br
t->isA( "TQObject" ); // returns FALSE
.br
@@ -735,7 +735,7 @@ See also timerEvent(), startTimer(), and killTimers().
.SH "void TQObject::killTimers ()"
Kills all timers that this object has started.
.PP
-\fBWarning:\fR Using this function can cause hard-to-find bugs: it kills timers started by sub- and superclasses as well as those started by you, which is often not what you want. We recommend using a QTimer or perhaps killTimer().
+\fBWarning:\fR Using this function can cause hard-to-find bugs: it kills timers started by sub- and superclasses as well as those started by you, which is often not what you want. We recommend using a TQTimer or perhaps killTimer().
.PP
See also timerEvent(), startTimer(), and killTimer().
.SH "QMetaObject * TQObject::metaObject () const\fC [virtual]\fR"
@@ -858,9 +858,9 @@ Starts a timer and returns a timer identifier, or returns zero if it could not s
.PP
A timer event will occur every \fIinterval\fR milliseconds until killTimer() or killTimers() is called. If \fIinterval\fR is 0, then the timer event occurs once every time there are no more window system events to process.
.PP
-The virtual timerEvent() function is called with the QTimerEvent event parameter class when a timer event occurs. Reimplement this function to get timer events.
+The virtual timerEvent() function is called with the TQTimerEvent event parameter class when a timer event occurs. Reimplement this function to get timer events.
.PP
-If multiple timers are running, the QTimerEvent::timerId() can be used to find out which timer was activated.
+If multiple timers are running, the TQTimerEvent::timerId() can be used to find out which timer was activated.
.PP
Example:
.PP
@@ -879,7 +879,7 @@ Example:
.br
protected:
.br
- void timerEvent( QTimerEvent * );
+ void timerEvent( TQTimerEvent * );
.br
};
.br
@@ -899,7 +899,7 @@ Example:
}
.br
.br
- void MyObject::timerEvent( QTimerEvent *e )
+ void MyObject::timerEvent( TQTimerEvent *e )
.br
{
.br
@@ -909,15 +909,15 @@ Example:
.br
.fi
.PP
-Note that QTimer's accuracy depends on the underlying operating system and hardware. Most platforms support an accuracy of 20 ms; some provide more. If TQt is unable to deliver the requested number of timer clicks, it will silently discard some.
+Note that TQTimer's accuracy depends on the underlying operating system and hardware. Most platforms support an accuracy of 20 ms; some provide more. If TQt is unable to deliver the requested number of timer clicks, it will silently discard some.
.PP
-The QTimer class provides a high-level programming interface with one-shot timers and timer signals instead of events.
+The TQTimer class provides a high-level programming interface with one-shot timers and timer signals instead of events.
.PP
See also timerEvent(), killTimer(), killTimers(), QEventLoop::awake(), and QEventLoop::aboutToBlock().
-.SH "void TQObject::timerEvent ( QTimerEvent * )\fC [virtual protected]\fR"
+.SH "void TQObject::timerEvent ( TQTimerEvent * )\fC [virtual protected]\fR"
This event handler can be reimplemented in a subclass to receive timer events for the object.
.PP
-QTimer provides a higher-level interface to the timer functionality, and also more general information about timers.
+TQTimer provides a higher-level interface to the timer functionality, and also more general information about timers.
.PP
See also startTimer(), killTimer(), killTimers(), and event().
.PP