summaryrefslogtreecommitdiffstats
path: root/doc/object.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/object.doc
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt3-7552c6d73043b1040139033f6864db48ae5446cf.tar.gz
tqt3-7552c6d73043b1040139033f6864db48ae5446cf.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/object.doc')
-rw-r--r--doc/object.doc10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/object.doc b/doc/object.doc
index 70b10682..a5c3b13f 100644
--- a/doc/object.doc
+++ b/doc/object.doc
@@ -415,14 +415,14 @@ achieve this using the following code:
TQ_OVERRIDE( bool autoMask DESIGNABLE true SCRIPTABLE true )
\endcode
-Another example is QToolButton. By default QToolButton has a read-only
+Another example is TQToolButton. By default TQToolButton has a read-only
"toggleButton" property, because that's what it inherits from QButton:
\code
TQ_PROPERTY( bool toggleButton READ isToggleButton )
\endcode
But we want to make our tool buttons able to be toggled, so we write a
-WRITE function in QToolButton, and use the following property override
+WRITE function in TQToolButton, and use the following property override
to make it acessible:
\code
TQ_OVERRIDE( bool toggleButton WRITE setToggleButton )
@@ -533,7 +533,7 @@ see the event at all.
It's also possible to filter \e all events for the entire application,
by installing an event filter on \l QApplication. This is what \l
-QToolTip does in order to see \e all the mouse and keyboard activity.
+TQToolTip does in order to see \e all the mouse and keyboard activity.
This is very powerful, but it also slows down event delivery of every
single event in the entire application, so it's best avoided.
@@ -599,8 +599,8 @@ box.
You can also delete child objects yourself, and they will remove
themselves from their parents. For example, when the user removes a
-toolbar it may lead to the application deleting one of its \l QToolBar
-objects, in which case the tool bar's \l QMainWindow parent would
+toolbar it may lead to the application deleting one of its \l TQToolBar
+objects, in which case the tool bar's \l TQMainWindow parent would
detect the change and reconfigure its screen space accordingly.
The debugging functions \l TQObject::dumpObjectTree() and \l