summaryrefslogtreecommitdiffstats
path: root/doc/man/man3
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3')
-rw-r--r--doc/man/man3/tqaccel.3qt86
-rw-r--r--doc/man/man3/tqaccessible.3qt322
-rw-r--r--doc/man/man3/tqaccessibleinterface.3qt54
-rw-r--r--doc/man/man3/tqaccessibleobject.3qt30
-rw-r--r--doc/man/man3/tqapplication.3qt12
-rw-r--r--doc/man/man3/tqassistantclient.3qt42
-rw-r--r--doc/man/man3/tqbitmap.3qt2
-rw-r--r--doc/man/man3/tqchildevent.3qt18
-rw-r--r--doc/man/man3/tqcloseevent.3qt18
-rw-r--r--doc/man/man3/tqcontextmenuevent.3qt56
-rw-r--r--doc/man/man3/tqcursor.3qt78
-rw-r--r--doc/man/man3/tqcustomevent.3qt34
-rw-r--r--doc/man/man3/tqcustommenuitem.3qt34
-rw-r--r--doc/man/man3/tqevent.3qt10
-rw-r--r--doc/man/man3/tqimageconsumer.3qt2
-rw-r--r--doc/man/man3/tqimagedecoder.3qt2
-rw-r--r--doc/man/man3/tqimageformat.3qt2
-rw-r--r--doc/man/man3/tqimageformattype.3qt2
-rw-r--r--doc/man/man3/tqkeysequence.3qt8
-rw-r--r--doc/man/man3/tqlabel.3qt4
-rw-r--r--doc/man/man3/tqmainwindow.3qt4
-rw-r--r--doc/man/man3/tqmenubar.3qt26
-rw-r--r--doc/man/man3/tqmenudata.3qt30
-rw-r--r--doc/man/man3/tqmouseevent.3qt6
-rw-r--r--doc/man/man3/tqobject.3qt20
-rw-r--r--doc/man/man3/tqpopupmenu.3qt34
-rw-r--r--doc/man/man3/tqscrollview.3qt4
-rw-r--r--doc/man/man3/tqsplitter.3qt4
-rw-r--r--doc/man/man3/tqt.3qt2
-rw-r--r--doc/man/man3/tqtabletevent.3qt2
-rw-r--r--doc/man/man3/tqvariant.3qt18
-rw-r--r--doc/man/man3/tqwhatsthis.3qt10
-rw-r--r--doc/man/man3/tqwheelevent.3qt4
-rw-r--r--doc/man/man3/tqwidget.3qt38
34 files changed, 509 insertions, 509 deletions
diff --git a/doc/man/man3/tqaccel.3qt b/doc/man/man3/tqaccel.3qt
index d6ed18ca..07070788 100644
--- a/doc/man/man3/tqaccel.3qt
+++ b/doc/man/man3/tqaccel.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAccel 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAccel 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,22 +7,22 @@
.ad l
.nh
.SH NAME
-QAccel \- Handles keyboard accelerator and shortcut keys
+TQAccel \- Handles keyboard accelerator and shortcut keys
.SH SYNOPSIS
-\fC#include <ntqaccel.h>\fR
+\fC#include <tqaccel.h>\fR
.PP
Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQAccel\fR ( TQWidget * parent, const char * name = 0 )"
+.BI "\fBTQAccel\fR ( TQWidget * parent, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQAccel\fR ( TQWidget * watch, TQObject * parent, const char * name = 0 )"
+.BI "\fBTQAccel\fR ( TQWidget * watch, TQObject * parent, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QAccel\fR ()"
+.BI "\fB~TQAccel\fR ()"
.br
.ti -1c
.BI "bool \fBisEnabled\fR () const"
@@ -98,7 +98,7 @@ Inherits TQObject.
.br
.in -1c
.SH DESCRIPTION
-The QAccel class handles keyboard accelerator and shortcut keys.
+The TQAccel class handles keyboard accelerator and shortcut keys.
.PP
A keyboard accelerator triggers an action when a certain key combination is pressed. The accelerator handles all keyboard activity for all the children of one top-level widget, so it is not affected by the keyboard focus.
.PP
@@ -114,7 +114,7 @@ In most cases, you will not need to use this class directly. Use the TQAction cl
.br
.fi
.PP
-A QAccel contains a list of accelerator items that can be manipulated using insertItem(), removeItem(), clear(), key() and findKey().
+A TQAccel contains a list of accelerator items that can be manipulated using insertItem(), removeItem(), clear(), key() and findKey().
.PP
Each accelerator item consists of an identifier and a QKeySequence. A single key sequence consists of a keyboard code combined with modifiers (SHIFT, CTRL, ALT or UNICODE_ACCEL). For example, \fCCTRL + Key_P\fR could be a shortcut for printing a document. The key codes are listed in ntqnamespace.h. As an alternative, use UNICODE_ACCEL with the unicode code point of the character. For example, \fCUNICODE_ACCEL + 'A'\fR gives the same accelerator as Key_A.
.PP
@@ -122,7 +122,7 @@ When an accelerator key is pressed, the accelerator sends out the signal activat
.PP
The activated() signal is \fInot\fR emitted when two or more accelerators match the same key. Instead, the first matching accelerator sends out the activatedAmbiguously() signal. By pressing the key multiple times, users can navigate between all matching accelerators. Some standard controls like TQPushButton and TQCheckBox connect the activatedAmbiguously() signal to the harmless setFocus() slot, whereas activated() is connected to a slot invoking the button's action. Most controls, like TQLabel and TQTabBar, treat activated() and activatedAmbiguously() as equivalent.
.PP
-Use setEnabled() to enable or disable all the items in an accelerator, or setItemEnabled() to enable or disable individual items. An item is active only when both the QAccel and the item itself are enabled.
+Use setEnabled() to enable or disable all the items in an accelerator, or setItemEnabled() to enable or disable individual items. An item is active only when both the TQAccel and the item itself are enabled.
.PP
The function setWhatsThis() specifies a help text that appears when the user presses an accelerator key in What's This mode.
.PP
@@ -141,7 +141,7 @@ Example:
.PP
.nf
.br
- QAccel *a = new QAccel( myWindow ); // create accels for myWindow
+ TQAccel *a = new TQAccel( myWindow ); // create accels for myWindow
.br
a->connectItem( a->insertItem(Key_P+CTRL), // adds Ctrl+P accelerator
.br
@@ -153,25 +153,25 @@ Example:
.PP
See also QKeyEvent, TQWidget::keyPressEvent(), TQMenuData::setAccel(), TQButton::accel, TQLabel::setBuddy(), QKeySequence, GUI Design Handbook: Keyboard Shortcuts, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAccel::QAccel ( TQWidget * parent, const char * name = 0 )"
-Constructs a QAccel object called \fIname\fR, with parent \fIparent\fR. The accelerator operates on \fIparent\fR.
-.SH "QAccel::QAccel ( TQWidget * watch, TQObject * parent, const char * name = 0 )"
-Constructs a QAccel object called \fIname\fR, that operates on \fIwatch\fR, and is a child of \fIparent\fR.
+.SH "TQAccel::TQAccel ( TQWidget * parent, const char * name = 0 )"
+Constructs a TQAccel object called \fIname\fR, with parent \fIparent\fR. The accelerator operates on \fIparent\fR.
+.SH "TQAccel::TQAccel ( TQWidget * watch, TQObject * parent, const char * name = 0 )"
+Constructs a TQAccel object called \fIname\fR, that operates on \fIwatch\fR, and is a child of \fIparent\fR.
.PP
This constructor is not needed for normal application programming.
-.SH "QAccel::~QAccel ()"
+.SH "TQAccel::~TQAccel ()"
Destroys the accelerator object and frees all allocated resources.
-.SH "void QAccel::activated ( int id )\fC [signal]\fR"
+.SH "void TQAccel::activated ( int id )\fC [signal]\fR"
This signal is emitted when an accelerator key is pressed. \fIid\fR is a number that identifies this particular accelerator item.
.PP
See also activatedAmbiguously().
-.SH "void QAccel::activatedAmbiguously ( int id )\fC [signal]\fR"
+.SH "void TQAccel::activatedAmbiguously ( int id )\fC [signal]\fR"
This signal is emitted when an accelerator key is pressed. \fIid\fR is a number that identifies this particular accelerator item.
.PP
See also activated().
-.SH "void QAccel::clear ()"
+.SH "void TQAccel::clear ()"
Removes all accelerator items.
-.SH "bool QAccel::connectItem ( int id, const TQObject * receiver, const char * member )"
+.SH "bool TQAccel::connectItem ( int id, const TQObject * receiver, const char * member )"
Connects the accelerator item \fIid\fR to the slot \fImember\fR of \fIreceiver\fR.
.PP
.nf
@@ -187,19 +187,19 @@ Normally accelerators are connected to slots which then receive the \fCactivated
See also disconnectItem().
.PP
Example: t14/gamebrd.cpp.
-.SH "uint QAccel::count () const"
+.SH "uint TQAccel::count () const"
Returns the number of accelerator items in this accelerator.
-.SH "bool QAccel::disconnectItem ( int id, const TQObject * receiver, const char * member )"
+.SH "bool TQAccel::disconnectItem ( int id, const TQObject * receiver, const char * member )"
Disconnects an accelerator item with id \fIid\fR from the function called \fImember\fR in the \fIreceiver\fR object.
.PP
See also connectItem().
-.SH "bool QAccel::eventFilter ( TQObject *, TQEvent * )\fC [virtual protected]\fR"
+.SH "bool TQAccel::eventFilter ( TQObject *, TQEvent * )\fC [virtual protected]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. serves no purpose anymore
.PP
Reimplemented from TQObject.
-.SH "int QAccel::findKey ( const QKeySequence & key ) const"
+.SH "int TQAccel::findKey ( const QKeySequence & key ) const"
Returns the identifier of the accelerator item with the key code \fIkey\fR, or -1 if the item cannot be found.
-.SH "int QAccel::insertItem ( const QKeySequence & key, int id = -1 )"
+.SH "int TQAccel::insertItem ( const QKeySequence & key, int id = -1 )"
Inserts an accelerator item and returns the item's identifier.
.PP
\fIkey\fR is a key code and an optional combination of SHIFT, CTRL and ALT. \fIid\fR is the accelerator item id.
@@ -208,7 +208,7 @@ If \fIid\fR is negative, then the item will be assigned a unique negative identi
.PP
.nf
.br
- QAccel *a = new QAccel( myWindow ); // create accels for myWindow
+ TQAccel *a = new TQAccel( myWindow ); // create accels for myWindow
.br
a->insertItem( CTRL + Key_P, 200 ); // Ctrl+P, e.g. to print document
.br
@@ -223,39 +223,39 @@ If \fIid\fR is negative, then the item will be assigned a unique negative identi
.fi
.PP
Example: t14/gamebrd.cpp.
-.SH "bool QAccel::isEnabled () const"
+.SH "bool TQAccel::isEnabled () const"
Returns TRUE if the accelerator is enabled; otherwise returns FALSE.
.PP
See also setEnabled() and isItemEnabled().
-.SH "bool QAccel::isItemEnabled ( int id ) const"
+.SH "bool TQAccel::isItemEnabled ( int id ) const"
Returns TRUE if the accelerator item with the identifier \fIid\fR is enabled. Returns FALSE if the item is disabled or cannot be found.
.PP
See also setItemEnabled() and isEnabled().
-.SH "QKeySequence QAccel::key ( int id )"
+.SH "QKeySequence TQAccel::key ( int id )"
Returns the key sequence of the accelerator item with identifier \fIid\fR, or an invalid key sequence (0) if the id cannot be found.
-.SH "TQString QAccel::keyToString ( QKeySequence k )\fC [static]\fR"
+.SH "TQString TQAccel::keyToString ( QKeySequence k )\fC [static]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
-Creates an accelerator string for the key \fIk\fR. For instance CTRL+Key_O gives "Ctrl+O". The "Ctrl" etc. are translated (using TQObject::tr()) in the "QAccel" context.
+Creates an accelerator string for the key \fIk\fR. For instance CTRL+Key_O gives "Ctrl+O". The "Ctrl" etc. are translated (using TQObject::tr()) in the "TQAccel" context.
.PP
The function is superfluous. Cast the QKeySequence \fIk\fR to a TQString for the same effect.
-.SH "void QAccel::removeItem ( int id )"
+.SH "void TQAccel::removeItem ( int id )"
Removes the accelerator item with the identifier \fIid\fR.
-.SH "void QAccel::repairEventFilter ()"
+.SH "void TQAccel::repairEventFilter ()"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. serves no purpose anymore
-.SH "void QAccel::setEnabled ( bool enable )"
+.SH "void TQAccel::setEnabled ( bool enable )"
Enables the accelerator if \fIenable\fR is TRUE, or disables it if \fIenable\fR is FALSE.
.PP
-Individual keys can also be enabled or disabled using setItemEnabled(). To work, a key must be an enabled item in an enabled QAccel.
+Individual keys can also be enabled or disabled using setItemEnabled(). To work, a key must be an enabled item in an enabled TQAccel.
.PP
See also isEnabled() and setItemEnabled().
-.SH "void QAccel::setItemEnabled ( int id, bool enable )"
+.SH "void TQAccel::setItemEnabled ( int id, bool enable )"
Enables the accelerator item with the identifier \fIid\fR if \fIenable\fR is TRUE, and disables item \fIid\fR if \fIenable\fR is FALSE.
.PP
-To work, an item must be enabled and be in an enabled QAccel.
+To work, an item must be enabled and be in an enabled TQAccel.
.PP
See also isItemEnabled() and isEnabled().
-.SH "void QAccel::setWhatsThis ( int id, const TQString & text )"
+.SH "void TQAccel::setWhatsThis ( int id, const TQString & text )"
Sets a What's This help text for the accelerator item \fIid\fR to \fItext\fR.
.PP
The text will be shown when the application is in What's This mode and the user hits the accelerator key.
@@ -263,16 +263,16 @@ The text will be shown when the application is in What's This mode and the user
To set What's This help on a menu item (with or without an accelerator key), use TQMenuData::setWhatsThis().
.PP
See also whatsThis(), TQWhatsThis::inWhatsThisMode(), TQMenuData::setWhatsThis(), and TQAction::whatsThis.
-.SH "QKeySequence QAccel::shortcutKey ( const TQString & str )\fC [static]\fR"
+.SH "QKeySequence TQAccel::shortcutKey ( const TQString & str )\fC [static]\fR"
Returns the shortcut key sequence for \fIstr\fR, or an invalid key sequence (0) if \fIstr\fR has no shortcut sequence.
.PP
For example, shortcutKey("E&xit") returns ALT+Key_X, shortcutKey("&Quit") returns ALT+Key_Q and shortcutKey("Quit") returns 0. (In code that does not inherit the TQt namespace class, you must write e.g. TQt::ALT+TQt::Key_Q.)
.PP
We provide a list of common accelerators in English. At the time of writing, Microsoft and Open Group do not appear to have issued equivalent recommendations for other languages.
-.SH "QKeySequence QAccel::stringToKey ( const TQString & s )\fC [static]\fR"
+.SH "QKeySequence TQAccel::stringToKey ( const TQString & s )\fC [static]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
-Returns an accelerator code for the string \fIs\fR. For example" Ctrl+O" gives CTRL+UNICODE_ACCEL+'O'. The strings "Ctrl"," Shift", "Alt" are recognized, as well as their translated equivalents in the "QAccel" context (using TQObject::tr()). Returns 0 if \fIs\fR is not recognized.
+Returns an accelerator code for the string \fIs\fR. For example" Ctrl+O" gives CTRL+UNICODE_ACCEL+'O'. The strings "Ctrl"," Shift", "Alt" are recognized, as well as their translated equivalents in the "TQAccel" context (using TQObject::tr()). Returns 0 if \fIs\fR is not recognized.
.PP
This function is typically used with tr(), so that accelerator keys can be replaced in translations:
.PP
@@ -282,7 +282,7 @@ This function is typically used with tr(), so that accelerator keys can be repla
.br
file->insertItem( p1, tr("&Open..."), this, TQ_SLOT(open()),
.br
- QAccel::stringToKey(tr("Ctrl+O", "File|Open")) );
+ TQAccel::stringToKey(tr("Ctrl+O", "File|Open")) );
.br
.fi
.PP
@@ -293,13 +293,13 @@ The function is superfluous. Construct a QKeySequence from the string \fIs\fR fo
See also TQObject::tr() and Internationalization with Qt.
.PP
Example: i18n/mywidget.cpp.
-.SH "TQString QAccel::whatsThis ( int id ) const"
+.SH "TQString TQAccel::whatsThis ( int id ) const"
Returns the What's This help text for the specified item \fIid\fR or TQString::null if no text has been specified.
.PP
See also setWhatsThis().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqaccel.html
+.BR http://doc.trolltech.com/tqaccel.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqaccessible.3qt b/doc/man/man3/tqaccessible.3qt
index 498c7248..a928e625 100644
--- a/doc/man/man3/tqaccessible.3qt
+++ b/doc/man/man3/tqaccessible.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAccessible 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAccessible 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,11 +7,11 @@
.ad l
.nh
.SH NAME
-QAccessible \- Enums and static functions relating to accessibility
+TQAccessible \- Enums and static functions relating to accessibility
.SH SYNOPSIS
-\fC#include <ntqaccessible.h>\fR
+\fC#include <tqaccessible.h>\fR
.PP
-Inherited by QAccessibleInterface.
+Inherited by TQAccessibleInterface.
.PP
.SS "Public Members"
.in +1c
@@ -34,7 +34,7 @@ Inherited by QAccessibleInterface.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "QRESULT \fBqueryAccessibleInterface\fR ( TQObject * object, QAccessibleInterface ** iface )"
+.BI "QRESULT \fBqueryAccessibleInterface\fR ( TQObject * object, TQAccessibleInterface ** iface )"
.br
.ti -1c
.BI "void \fBupdateAccessibility\fR ( TQObject * object, int control, Event reason )"
@@ -44,324 +44,324 @@ Inherited by QAccessibleInterface.
.br
.in -1c
.SH DESCRIPTION
-The QAccessible class provides enums and static functions relating to accessibility.
+The TQAccessible class provides enums and static functions relating to accessibility.
.PP
-Accessibility clients use implementations of the QAccessibleInterface to read the information an accessible object exposes, or to call functions to manipulate the accessible object.
+Accessibility clients use implementations of the TQAccessibleInterface to read the information an accessible object exposes, or to call functions to manipulate the accessible object.
.PP
See the plugin documentation for more details about how to redistribute TQt plugins.
.PP
See also Miscellaneous Classes.
.SS "Member Type Documentation"
-.SH "QAccessible::Event"
+.SH "TQAccessible::Event"
This enum type defines event types when the state of the accessible object has changed. The event types are:
.TP
-\fCQAccessible::SoundPlayed\fR
+\fCTQAccessible::SoundPlayed\fR
.TP
-\fCQAccessible::Alert\fR
+\fCTQAccessible::Alert\fR
.TP
-\fCQAccessible::ForegroundChanged\fR
+\fCTQAccessible::ForegroundChanged\fR
.TP
-\fCQAccessible::MenuStart\fR
+\fCTQAccessible::MenuStart\fR
.TP
-\fCQAccessible::MenuEnd\fR
+\fCTQAccessible::MenuEnd\fR
.TP
-\fCQAccessible::PopupMenuStart\fR
+\fCTQAccessible::PopupMenuStart\fR
.TP
-\fCQAccessible::PopupMenuEnd\fR
+\fCTQAccessible::PopupMenuEnd\fR
.TP
-\fCQAccessible::ContextHelpStart\fR
+\fCTQAccessible::ContextHelpStart\fR
.TP
-\fCQAccessible::ContextHelpEnd\fR
+\fCTQAccessible::ContextHelpEnd\fR
.TP
-\fCQAccessible::DragDropStart\fR
+\fCTQAccessible::DragDropStart\fR
.TP
-\fCQAccessible::DragDropEnd\fR
+\fCTQAccessible::DragDropEnd\fR
.TP
-\fCQAccessible::DialogStart\fR
+\fCTQAccessible::DialogStart\fR
.TP
-\fCQAccessible::DialogEnd\fR
+\fCTQAccessible::DialogEnd\fR
.TP
-\fCQAccessible::ScrollingStart\fR
+\fCTQAccessible::ScrollingStart\fR
.TP
-\fCQAccessible::ScrollingEnd\fR
+\fCTQAccessible::ScrollingEnd\fR
.TP
-\fCQAccessible::ObjectCreated\fR
+\fCTQAccessible::ObjectCreated\fR
.TP
-\fCQAccessible::ObjectDestroyed\fR
+\fCTQAccessible::ObjectDestroyed\fR
.TP
-\fCQAccessible::ObjectShow\fR
+\fCTQAccessible::ObjectShow\fR
.TP
-\fCQAccessible::ObjectHide\fR
+\fCTQAccessible::ObjectHide\fR
.TP
-\fCQAccessible::ObjectReorder\fR
+\fCTQAccessible::ObjectReorder\fR
.TP
-\fCQAccessible::Focus\fR
+\fCTQAccessible::Focus\fR
.TP
-\fCQAccessible::Selection\fR
+\fCTQAccessible::Selection\fR
.TP
-\fCQAccessible::SelectionAdd\fR
+\fCTQAccessible::SelectionAdd\fR
.TP
-\fCQAccessible::SelectionRemove\fR
+\fCTQAccessible::SelectionRemove\fR
.TP
-\fCQAccessible::SelectionWithin\fR
+\fCTQAccessible::SelectionWithin\fR
.TP
-\fCQAccessible::StateChanged\fR
+\fCTQAccessible::StateChanged\fR
.TP
-\fCQAccessible::LocationChanged\fR
+\fCTQAccessible::LocationChanged\fR
.TP
-\fCQAccessible::NameChanged\fR
+\fCTQAccessible::NameChanged\fR
.TP
-\fCQAccessible::DescriptionChanged\fR
+\fCTQAccessible::DescriptionChanged\fR
.TP
-\fCQAccessible::ValueChanged\fR
+\fCTQAccessible::ValueChanged\fR
.TP
-\fCQAccessible::ParentChanged\fR
+\fCTQAccessible::ParentChanged\fR
.TP
-\fCQAccessible::HelpChanged\fR
+\fCTQAccessible::HelpChanged\fR
.TP
-\fCQAccessible::DefaultActionChanged\fR
+\fCTQAccessible::DefaultActionChanged\fR
.TP
-\fCQAccessible::AcceleratorChanged\fR
+\fCTQAccessible::AcceleratorChanged\fR
.TP
-\fCQAccessible::MenuCommand\fR
-.SH "QAccessible::NavDirection"
+\fCTQAccessible::MenuCommand\fR
+.SH "TQAccessible::NavDirection"
This enum specifies which item to move to when navigating.
.TP
-\fCQAccessible::NavUp\fR - sibling above
+\fCTQAccessible::NavUp\fR - sibling above
.TP
-\fCQAccessible::NavDown\fR - sibling below
+\fCTQAccessible::NavDown\fR - sibling below
.TP
-\fCQAccessible::NavLeft\fR - left sibling
+\fCTQAccessible::NavLeft\fR - left sibling
.TP
-\fCQAccessible::NavRight\fR - right sibling
+\fCTQAccessible::NavRight\fR - right sibling
.TP
-\fCQAccessible::NavNext\fR - next sibling
+\fCTQAccessible::NavNext\fR - next sibling
.TP
-\fCQAccessible::NavPrevious\fR - previous sibling
+\fCTQAccessible::NavPrevious\fR - previous sibling
.TP
-\fCQAccessible::NavFirstChild\fR - first child
+\fCTQAccessible::NavFirstChild\fR - first child
.TP
-\fCQAccessible::NavLastChild\fR - last child
+\fCTQAccessible::NavLastChild\fR - last child
.TP
-\fCQAccessible::NavFocusChild\fR - child with focus
-.SH "QAccessible::Role"
+\fCTQAccessible::NavFocusChild\fR - child with focus
+.SH "TQAccessible::Role"
This enum defines a number of roles an accessible object can have. The roles are:
.TP
-\fCQAccessible::NoRole\fR
+\fCTQAccessible::NoRole\fR
.TP
-\fCQAccessible::TitleBar\fR
+\fCTQAccessible::TitleBar\fR
.TP
-\fCQAccessible::MenuBar\fR
+\fCTQAccessible::MenuBar\fR
.TP
-\fCQAccessible::ScrollBar\fR
+\fCTQAccessible::ScrollBar\fR
.TP
-\fCQAccessible::Grip\fR
+\fCTQAccessible::Grip\fR
.TP
-\fCQAccessible::Sound\fR
+\fCTQAccessible::Sound\fR
.TP
-\fCQAccessible::Cursor\fR
+\fCTQAccessible::Cursor\fR
.TP
-\fCQAccessible::Caret\fR
+\fCTQAccessible::Caret\fR
.TP
-\fCQAccessible::AlertMessage\fR
+\fCTQAccessible::AlertMessage\fR
.TP
-\fCQAccessible::Window\fR
+\fCTQAccessible::Window\fR
.TP
-\fCQAccessible::Client\fR
+\fCTQAccessible::Client\fR
.TP
-\fCQAccessible::PopupMenu\fR
+\fCTQAccessible::PopupMenu\fR
.TP
-\fCQAccessible::MenuItem\fR
+\fCTQAccessible::MenuItem\fR
.TP
-\fCQAccessible::ToolTip\fR
+\fCTQAccessible::ToolTip\fR
.TP
-\fCQAccessible::Application\fR
+\fCTQAccessible::Application\fR
.TP
-\fCQAccessible::Document\fR
+\fCTQAccessible::Document\fR
.TP
-\fCQAccessible::Pane\fR
+\fCTQAccessible::Pane\fR
.TP
-\fCQAccessible::Chart\fR
+\fCTQAccessible::Chart\fR
.TP
-\fCQAccessible::Dialog\fR
+\fCTQAccessible::Dialog\fR
.TP
-\fCQAccessible::Border\fR
+\fCTQAccessible::Border\fR
.TP
-\fCQAccessible::Grouping\fR
+\fCTQAccessible::Grouping\fR
.TP
-\fCQAccessible::Separator\fR
+\fCTQAccessible::Separator\fR
.TP
-\fCQAccessible::ToolBar\fR
+\fCTQAccessible::ToolBar\fR
.TP
-\fCQAccessible::StatusBar\fR
+\fCTQAccessible::StatusBar\fR
.TP
-\fCQAccessible::Table\fR
+\fCTQAccessible::Table\fR
.TP
-\fCQAccessible::ColumnHeader\fR
+\fCTQAccessible::ColumnHeader\fR
.TP
-\fCQAccessible::RowHeader\fR
+\fCTQAccessible::RowHeader\fR
.TP
-\fCQAccessible::Column\fR
+\fCTQAccessible::Column\fR
.TP
-\fCQAccessible::Row\fR
+\fCTQAccessible::Row\fR
.TP
-\fCQAccessible::Cell\fR
+\fCTQAccessible::Cell\fR
.TP
-\fCQAccessible::Link\fR
+\fCTQAccessible::Link\fR
.TP
-\fCQAccessible::HelpBalloon\fR
+\fCTQAccessible::HelpBalloon\fR
.TP
-\fCQAccessible::Character\fR
+\fCTQAccessible::Character\fR
.TP
-\fCQAccessible::List\fR
+\fCTQAccessible::List\fR
.TP
-\fCQAccessible::ListItem\fR
+\fCTQAccessible::ListItem\fR
.TP
-\fCQAccessible::Outline\fR
+\fCTQAccessible::Outline\fR
.TP
-\fCQAccessible::OutlineItem\fR
+\fCTQAccessible::OutlineItem\fR
.TP
-\fCQAccessible::PageTab\fR
+\fCTQAccessible::PageTab\fR
.TP
-\fCQAccessible::PropertyPage\fR
+\fCTQAccessible::PropertyPage\fR
.TP
-\fCQAccessible::Indicator\fR
+\fCTQAccessible::Indicator\fR
.TP
-\fCQAccessible::Graphic\fR
+\fCTQAccessible::Graphic\fR
.TP
-\fCQAccessible::StaticText\fR
+\fCTQAccessible::StaticText\fR
.TP
-\fCQAccessible::EditableText\fR
+\fCTQAccessible::EditableText\fR
.TP
-\fCQAccessible::PushButton\fR
+\fCTQAccessible::PushButton\fR
.TP
-\fCQAccessible::CheckBox\fR
+\fCTQAccessible::CheckBox\fR
.TP
-\fCQAccessible::RadioButton\fR
+\fCTQAccessible::RadioButton\fR
.TP
-\fCQAccessible::ComboBox\fR
+\fCTQAccessible::ComboBox\fR
.TP
-\fCQAccessible::DropLest\fR
+\fCTQAccessible::DropLest\fR
.TP
-\fCQAccessible::ProgressBar\fR
+\fCTQAccessible::ProgressBar\fR
.TP
-\fCQAccessible::Dial\fR
+\fCTQAccessible::Dial\fR
.TP
-\fCQAccessible::HotkeyField\fR
+\fCTQAccessible::HotkeyField\fR
.TP
-\fCQAccessible::Slider\fR
+\fCTQAccessible::Slider\fR
.TP
-\fCQAccessible::SpinBox\fR
+\fCTQAccessible::SpinBox\fR
.TP
-\fCQAccessible::Diagram\fR
+\fCTQAccessible::Diagram\fR
.TP
-\fCQAccessible::Animation\fR
+\fCTQAccessible::Animation\fR
.TP
-\fCQAccessible::Equation\fR
+\fCTQAccessible::Equation\fR
.TP
-\fCQAccessible::ButtonDropDown\fR
+\fCTQAccessible::ButtonDropDown\fR
.TP
-\fCQAccessible::ButtonMenu\fR
+\fCTQAccessible::ButtonMenu\fR
.TP
-\fCQAccessible::ButtonDropGrid\fR
+\fCTQAccessible::ButtonDropGrid\fR
.TP
-\fCQAccessible::Whitespace\fR
+\fCTQAccessible::Whitespace\fR
.TP
-\fCQAccessible::PageTabList\fR
+\fCTQAccessible::PageTabList\fR
.TP
-\fCQAccessible::Clock\fR
-.SH "QAccessible::State"
+\fCTQAccessible::Clock\fR
+.SH "TQAccessible::State"
This enum type defines bitflags that can be combined to indicate the state of the accessible object. The values are:
.TP
-\fCQAccessible::Normal\fR
+\fCTQAccessible::Normal\fR
.TP
-\fCQAccessible::Unavailable\fR
+\fCTQAccessible::Unavailable\fR
.TP
-\fCQAccessible::Selected\fR
+\fCTQAccessible::Selected\fR
.TP
-\fCQAccessible::Focused\fR
+\fCTQAccessible::Focused\fR
.TP
-\fCQAccessible::Pressed\fR
+\fCTQAccessible::Pressed\fR
.TP
-\fCQAccessible::Checked\fR
+\fCTQAccessible::Checked\fR
.TP
-\fCQAccessible::Mixed\fR
+\fCTQAccessible::Mixed\fR
.TP
-\fCQAccessible::ReadOnly\fR
+\fCTQAccessible::ReadOnly\fR
.TP
-\fCQAccessible::HotTracked\fR
+\fCTQAccessible::HotTracked\fR
.TP
-\fCQAccessible::Default\fR
+\fCTQAccessible::Default\fR
.TP
-\fCQAccessible::Expanded\fR
+\fCTQAccessible::Expanded\fR
.TP
-\fCQAccessible::Collapsed\fR
+\fCTQAccessible::Collapsed\fR
.TP
-\fCQAccessible::Busy\fR
+\fCTQAccessible::Busy\fR
.TP
-\fCQAccessible::Floating\fR
+\fCTQAccessible::Floating\fR
.TP
-\fCQAccessible::Marqueed\fR
+\fCTQAccessible::Marqueed\fR
.TP
-\fCQAccessible::Animated\fR
+\fCTQAccessible::Animated\fR
.TP
-\fCQAccessible::Invisible\fR
+\fCTQAccessible::Invisible\fR
.TP
-\fCQAccessible::Offscreen\fR
+\fCTQAccessible::Offscreen\fR
.TP
-\fCQAccessible::Sizeable\fR
+\fCTQAccessible::Sizeable\fR
.TP
-\fCQAccessible::Moveable\fR
+\fCTQAccessible::Moveable\fR
.TP
-\fCQAccessible::SelfVoicing\fR
+\fCTQAccessible::SelfVoicing\fR
.TP
-\fCQAccessible::Focusable\fR
+\fCTQAccessible::Focusable\fR
.TP
-\fCQAccessible::Selectable\fR
+\fCTQAccessible::Selectable\fR
.TP
-\fCQAccessible::Linked\fR
+\fCTQAccessible::Linked\fR
.TP
-\fCQAccessible::Traversed\fR
+\fCTQAccessible::Traversed\fR
.TP
-\fCQAccessible::MultiSelectable\fR
+\fCTQAccessible::MultiSelectable\fR
.TP
-\fCQAccessible::ExtSelectable\fR
+\fCTQAccessible::ExtSelectable\fR
.TP
-\fCQAccessible::AlertLow\fR
+\fCTQAccessible::AlertLow\fR
.TP
-\fCQAccessible::AlertMedium\fR
+\fCTQAccessible::AlertMedium\fR
.TP
-\fCQAccessible::AlertHigh\fR
+\fCTQAccessible::AlertHigh\fR
.TP
-\fCQAccessible::Protected\fR
+\fCTQAccessible::Protected\fR
.TP
-\fCQAccessible::Valid\fR
-.SH "QAccessible::Text"
+\fCTQAccessible::Valid\fR
+.SH "TQAccessible::Text"
This enum specifies string information that an accessible object returns.
.TP
-\fCQAccessible::Name\fR - The name of the object
+\fCTQAccessible::Name\fR - The name of the object
.TP
-\fCQAccessible::Description\fR - A short text describing the object
+\fCTQAccessible::Description\fR - A short text describing the object
.TP
-\fCQAccessible::Value\fR - The value of the object
+\fCTQAccessible::Value\fR - The value of the object
.TP
-\fCQAccessible::Help\fR - A longer text giving information about how to use the object
+\fCTQAccessible::Help\fR - A longer text giving information about how to use the object
.TP
-\fCQAccessible::DefaultAction\fR - The default method to interact with the object
+\fCTQAccessible::DefaultAction\fR - The default method to interact with the object
.TP
-\fCQAccessible::Accelerator\fR - The keyboard shortcut that executes the default action
+\fCTQAccessible::Accelerator\fR - The keyboard shortcut that executes the default action
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "bool QAccessible::isActive ()\fC [static]\fR"
+.SH "bool TQAccessible::isActive ()\fC [static]\fR"
Returns TRUE if an accessibility implementation has been requested, during the runtime of the application, otherwise returns FALSE.
.PP
Use this function to prevent potentially expensive notifications via updateAccessibility().
-.SH "QRESULT QAccessible::queryAccessibleInterface ( TQObject * object, QAccessibleInterface ** iface )\fC [static]\fR"
-Sets \fIiface\fR to point to the implementation of the QAccessibleInterface for \fIobject\fR, and returns \fCQS_OK\fR if successfull, or sets \fIiface\fR to 0 and returns \fCQE_NOCOMPONENT\fR if no accessibility implementation for \fIobject\fR exists.
+.SH "QRESULT TQAccessible::queryAccessibleInterface ( TQObject * object, TQAccessibleInterface ** iface )\fC [static]\fR"
+Sets \fIiface\fR to point to the implementation of the TQAccessibleInterface for \fIobject\fR, and returns \fCQS_OK\fR if successfull, or sets \fIiface\fR to 0 and returns \fCQE_NOCOMPONENT\fR if no accessibility implementation for \fIobject\fR exists.
.PP
The function uses the classname of \fIobject\fR to find a suitable implementation. If no implementation for the object's class is available the function tries to find an implementation for the object's parent class.
.PP
This function is called to answer an accessibility client's request for object information. You should never need to call this function yourself.
-.SH "void QAccessible::updateAccessibility ( TQObject * object, int control, Event reason )\fC [static]\fR"
+.SH "void TQAccessible::updateAccessibility ( TQObject * object, int control, Event reason )\fC [static]\fR"
Notifies accessibility clients about a change in \fIobject\fR's accessibility information.
.PP
\fIreason\fR specifies the cause of the change, for example, ValueChange when the position of a slider has been changed. \fIcontrol\fR is the ID of the child element that has changed. When \fIcontrol\fR is 0, the object itself has changed.
@@ -374,7 +374,7 @@ the parameters of the call is expensive you can use isActive() to
avoid unnecessary performance penalties if no client is listening.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqaccessible.html
+.BR http://doc.trolltech.com/tqaccessible.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqaccessibleinterface.3qt b/doc/man/man3/tqaccessibleinterface.3qt
index d1531426..b5e5c71d 100644
--- a/doc/man/man3/tqaccessibleinterface.3qt
+++ b/doc/man/man3/tqaccessibleinterface.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAccessibleInterface 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAccessibleInterface 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,13 +7,13 @@
.ad l
.nh
.SH NAME
-QAccessibleInterface \- Defines an interface that exposes information about accessible objects
+TQAccessibleInterface \- Defines an interface that exposes information about accessible objects
.SH SYNOPSIS
-\fC#include <ntqaccessible.h>\fR
+\fC#include <tqaccessible.h>\fR
.PP
-Inherits QAccessible.
+Inherits TQAccessible.
.PP
-Inherited by QAccessibleObject.
+Inherited by TQAccessibleObject.
.PP
.SS "Public Members"
.in +1c
@@ -24,10 +24,10 @@ Inherited by QAccessibleObject.
.BI "virtual int \fBchildCount\fR () const = 0"
.br
.ti -1c
-.BI "virtual QRESULT \fBqueryChild\fR ( int control, QAccessibleInterface ** iface ) const = 0"
+.BI "virtual QRESULT \fBqueryChild\fR ( int control, TQAccessibleInterface ** iface ) const = 0"
.br
.ti -1c
-.BI "virtual QRESULT \fBqueryParent\fR ( QAccessibleInterface ** iface ) const = 0"
+.BI "virtual QRESULT \fBqueryParent\fR ( TQAccessibleInterface ** iface ) const = 0"
.br
.ti -1c
.BI "virtual int \fBcontrolAt\fR ( int x, int y ) const = 0"
@@ -67,75 +67,75 @@ Inherited by QAccessibleObject.
.br
.in -1c
.SH DESCRIPTION
-The QAccessibleInterface class defines an interface that exposes information about accessible objects.
+The TQAccessibleInterface class defines an interface that exposes information about accessible objects.
.PP
See also Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "int QAccessibleInterface::childCount () const\fC [pure virtual]\fR"
+.SH "int TQAccessibleInterface::childCount () const\fC [pure virtual]\fR"
Returns the number of children that belong to this object. A child can provide accessibility information on it's own (e.g. a child widget), or be a sub-element of this accessible object.
.PP
All objects provide this information.
.PP
See also queryChild().
-.SH "void QAccessibleInterface::clearSelection ()\fC [pure virtual]\fR"
+.SH "void TQAccessibleInterface::clearSelection ()\fC [pure virtual]\fR"
Removes any selection from the object.
.PP
See also setSelected().
-.SH "int QAccessibleInterface::controlAt ( int x, int y ) const\fC [pure virtual]\fR"
+.SH "int TQAccessibleInterface::controlAt ( int x, int y ) const\fC [pure virtual]\fR"
Returns the ID of the child that contains the screen coordinates (\fIx\fR, \fIy\fR). This function returns 0 if the point is positioned on the object itself. If the tested point is outside the boundaries of the object this function returns -1.
.PP
All visual objects provide this information.
-.SH "bool QAccessibleInterface::doDefaultAction ( int control )\fC [pure virtual]\fR"
+.SH "bool TQAccessibleInterface::doDefaultAction ( int control )\fC [pure virtual]\fR"
Calling this function performs the default action of the child object specified by \fIcontrol\fR, or the default action of the object itself if \fIcontrol\fR is 0.
-.SH "bool QAccessibleInterface::isValid () const\fC [pure virtual]\fR"
+.SH "bool TQAccessibleInterface::isValid () const\fC [pure virtual]\fR"
Returns TRUE if all the data necessary to use this interface implementation is valid (e.g. all pointers are non-null), otherwise returns FALSE.
-.SH "int QAccessibleInterface::navigate ( NavDirection direction, int startControl ) const\fC [pure virtual]\fR"
+.SH "int TQAccessibleInterface::navigate ( NavDirection direction, int startControl ) const\fC [pure virtual]\fR"
This function traverses to another object, or to a sub-element of the current object. \fIdirection\fR specifies in which direction to navigate, and \fIstartControl\fR specifies the start point of the navigation, which is either 0 if the navigation starts at the object itself, or an ID of one of the object's sub-elements.
.PP
The function returns the ID of the sub-element located in the \fIdirection\fR specified. If there is nothing in the navigated \fIdirection\fR, this function returns -1.
.PP
All objects support navigation.
-.SH "QRESULT QAccessibleInterface::queryChild ( int control, QAccessibleInterface ** iface ) const\fC [pure virtual]\fR"
-Sets \fIiface\fR to point to the implementation of the QAccessibleInterface for the child specified with \fIcontrol\fR. If the child doesn't provide accessibility information on it's own, the value of \fIiface\fR is set to 0. For those elements, this object is responsible for exposing the child's properties.
+.SH "QRESULT TQAccessibleInterface::queryChild ( int control, TQAccessibleInterface ** iface ) const\fC [pure virtual]\fR"
+Sets \fIiface\fR to point to the implementation of the TQAccessibleInterface for the child specified with \fIcontrol\fR. If the child doesn't provide accessibility information on it's own, the value of \fIiface\fR is set to 0. For those elements, this object is responsible for exposing the child's properties.
.PP
All objects provide this information.
.PP
See also childCount() and queryParent().
-.SH "QRESULT QAccessibleInterface::queryParent ( QAccessibleInterface ** iface ) const\fC [pure virtual]\fR"
-Sets \fIiface\fR to point to the implementation of the QAccessibleInterface for the parent object, or to 0 if there is no such implementation or object.
+.SH "QRESULT TQAccessibleInterface::queryParent ( TQAccessibleInterface ** iface ) const\fC [pure virtual]\fR"
+Sets \fIiface\fR to point to the implementation of the TQAccessibleInterface for the parent object, or to 0 if there is no such implementation or object.
.PP
All objects provide this information.
.PP
See also queryChild().
-.SH "TQRect QAccessibleInterface::rect ( int control ) const\fC [pure virtual]\fR"
+.SH "TQRect TQAccessibleInterface::rect ( int control ) const\fC [pure virtual]\fR"
Returns the location of the child specified with \fIcontrol\fR in screen coordinates. This function returns the location of the object itself if \fIcontrol\fR is 0.
.PP
All visual objects provide this information.
-.SH "Role QAccessibleInterface::role ( int control ) const\fC [pure virtual]\fR"
+.SH "Role TQAccessibleInterface::role ( int control ) const\fC [pure virtual]\fR"
Returns the role of the object if \fIcontrol\fR is 0, or the role of the object's sub-element with ID \fIcontrol\fR. The role of an object is usually static. All accessible objects have a role.
.PP
See also text(), state(), and selection().
-.SH "TQMemArray<int> QAccessibleInterface::selection () const\fC [pure virtual]\fR"
+.SH "TQMemArray<int> TQAccessibleInterface::selection () const\fC [pure virtual]\fR"
Returns the list of all the element IDs that are selected.
.PP
See also text(), role(), and state().
-.SH "bool QAccessibleInterface::setFocus ( int control )\fC [pure virtual]\fR"
+.SH "bool TQAccessibleInterface::setFocus ( int control )\fC [pure virtual]\fR"
Gives the focus to the child object specified by \fIcontrol\fR, or to the object itself if \fIcontrol\fR is 0.
.PP
Returns TRUE if the focus could be set; otherwise returns FALSE.
-.SH "bool QAccessibleInterface::setSelected ( int control, bool on, bool extend )\fC [pure virtual]\fR"
+.SH "bool TQAccessibleInterface::setSelected ( int control, bool on, bool extend )\fC [pure virtual]\fR"
Sets the selection of the child object with ID \fIcontrol\fR to \fIon\fR. If \fIextend\fR is TRUE, all child elements between the focused item and the specified child object have their selection set to \fIon\fR.
.PP
Returns TRUE if the selection could be set; otherwise returns FALSE.
.PP
See also setFocus() and clearSelection().
-.SH "void QAccessibleInterface::setText ( Text t, int control, const TQString & text )\fC [pure virtual]\fR"
+.SH "void TQAccessibleInterface::setText ( Text t, int control, const TQString & text )\fC [pure virtual]\fR"
Sets the text property \fIt\fR of the child object \fIcontrol\fR to \fItext\fR. If \fIcontrol\fR is 0, the text property of the object itself is set.
-.SH "State QAccessibleInterface::state ( int control ) const\fC [pure virtual]\fR"
+.SH "State TQAccessibleInterface::state ( int control ) const\fC [pure virtual]\fR"
Returns the current state of the object if \fIcontrol\fR is 0, or the state of the object's sub-element element with ID \fIcontrol\fR. All objects have a state.
.PP
See also text(), role(), and selection().
-.SH "TQString QAccessibleInterface::text ( Text t, int control ) const\fC [pure virtual]\fR"
+.SH "TQString TQAccessibleInterface::text ( Text t, int control ) const\fC [pure virtual]\fR"
Returns a string property \fIt\fR of the child object specified by \fIcontrol\fR, or the string property of the object itself if \fIcontrol\fR is 0.
.PP
The \fIName\fR is a string used by clients to identify, find or announce an accessible object for the user. All objects must have a name that is unique within their container.
@@ -153,7 +153,7 @@ The accelerator is a keyboard shortcut that activates the default action of the
See also role(), state(), and selection().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qaccessibleinterface.html
+.BR http://doc.trolltech.com/tqaccessibleinterface.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqaccessibleobject.3qt b/doc/man/man3/tqaccessibleobject.3qt
index 6c920b2b..39d6780d 100644
--- a/doc/man/man3/tqaccessibleobject.3qt
+++ b/doc/man/man3/tqaccessibleobject.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAccessibleObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAccessibleObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,19 +7,19 @@
.ad l
.nh
.SH NAME
-QAccessibleObject \- Implements parts of the QAccessibleInterface for TQObjects
+TQAccessibleObject \- Implements parts of the TQAccessibleInterface for TQObjects
.SH SYNOPSIS
-\fC#include <ntqaccessible.h>\fR
+\fC#include <tqaccessible.h>\fR
.PP
-Inherits TQObject and QAccessibleInterface.
+Inherits TQObject and TQAccessibleInterface.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQAccessibleObject\fR ( TQObject * object )"
+.BI "\fBTQAccessibleObject\fR ( TQObject * object )"
.br
.ti -1c
-.BI "virtual \fB~QAccessibleObject\fR ()"
+.BI "virtual \fB~TQAccessibleObject\fR ()"
.br
.in -1c
.SS "Protected Members"
@@ -29,25 +29,25 @@ Inherits TQObject and QAccessibleInterface.
.br
.in -1c
.SH DESCRIPTION
-The QAccessibleObject class implements parts of the QAccessibleInterface for TQObjects.
+The TQAccessibleObject class implements parts of the TQAccessibleInterface for TQObjects.
.PP
-This class is mainly provided for convenience. All subclasses of the QAccessibleInterface should use this class as the base class.
+This class is mainly provided for convenience. All subclasses of the TQAccessibleInterface should use this class as the base class.
.PP
See also Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAccessibleObject::QAccessibleObject ( TQObject * object )"
-Creates a QAccessibleObject for \fIobject\fR.
-.SH "QAccessibleObject::~QAccessibleObject ()\fC [virtual]\fR"
-Destroys the QAccessibleObject.
+.SH "TQAccessibleObject::TQAccessibleObject ( TQObject * object )"
+Creates a TQAccessibleObject for \fIobject\fR.
+.SH "TQAccessibleObject::~TQAccessibleObject ()\fC [virtual]\fR"
+Destroys the TQAccessibleObject.
.PP
This only happens when a call to release() decrements the internal reference counter to zero.
-.SH "TQObject * QAccessibleObject::object () const\fC [protected]\fR"
-Returns the TQObject for which this QAccessibleInterface
+.SH "TQObject * TQAccessibleObject::object () const\fC [protected]\fR"
+Returns the TQObject for which this TQAccessibleInterface
implementation provides information. Use isValid() to make sure
the object pointer is safe to use.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qaccessibleobject.html
+.BR http://doc.trolltech.com/tqaccessibleobject.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index 7ce25c9a..7bdf866a 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -202,10 +202,10 @@ Inherits TQObject.
.BI "void \fBsetColorSpec\fR ( int spec )"
.br
.ti -1c
-.BI "QCursor * \fBoverrideCursor\fR ()"
+.BI "TQCursor * \fBoverrideCursor\fR ()"
.br
.ti -1c
-.BI "void \fBsetOverrideCursor\fR ( const QCursor & cursor, bool replace = FALSE )"
+.BI "void \fBsetOverrideCursor\fR ( const TQCursor & cursor, bool replace = FALSE )"
.br
.ti -1c
.BI "void \fBrestoreOverrideCursor\fR ()"
@@ -1048,7 +1048,7 @@ Installing an event filter on the object. Such an event filter gets all the even
Reimplementing paintEvent(), mousePressEvent() and so on. This is the commonest, easiest and least powerful way.
.PP
See also TQObject::event() and installEventFilter().
-.SH "QCursor * QApplication::overrideCursor ()\fC [static]\fR"
+.SH "TQCursor * QApplication::overrideCursor ()\fC [static]\fR"
Returns the active application override cursor.
.PP
This function returns 0 if no application cursor has been defined (i.e. the internal cursor stack is empty).
@@ -1372,7 +1372,7 @@ See also mainWidget(), exec(), and quit().
.PP
Examples:
.)l chart/main.cpp, helpsystem/main.cpp, life/main.cpp, network/ftpclient/main.cpp, opengl/main.cpp, t1/main.cpp, and t4/main.cpp.
-.SH "void QApplication::setOverrideCursor ( const QCursor & cursor, bool replace = FALSE )\fC [static]\fR"
+.SH "void QApplication::setOverrideCursor ( const TQCursor & cursor, bool replace = FALSE )\fC [static]\fR"
Sets the application override cursor to \fIcursor\fR.
.PP
Application override cursors are intended for showing the user that the application is in a special state, for example during an operation that might take some time.
@@ -1387,7 +1387,7 @@ Example:
.PP
.nf
.br
- QApplication::setOverrideCursor( QCursor(TQt::WaitCursor) );
+ QApplication::setOverrideCursor( TQCursor(TQt::WaitCursor) );
.br
calculateHugeMandelbrot(); // lunch time...
.br
@@ -1587,7 +1587,7 @@ If \fIchild\fR is FALSE and there is a child widget at position \fI(x, y)\fR, th
.PP
This function is normally rather slow.
.PP
-See also QCursor::pos(), TQWidget::grabMouse(), and TQWidget::grabKeyboard().
+See also TQCursor::pos(), TQWidget::grabMouse(), and TQWidget::grabKeyboard().
.SH "TQWidget * QApplication::widgetAt ( const TQPoint & pos, bool child = FALSE )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
diff --git a/doc/man/man3/tqassistantclient.3qt b/doc/man/man3/tqassistantclient.3qt
index bd734cf5..279b51d9 100644
--- a/doc/man/man3/tqassistantclient.3qt
+++ b/doc/man/man3/tqassistantclient.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QAssistantClient 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQAssistantClient 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,19 +7,19 @@
.ad l
.nh
.SH NAME
-QAssistantClient \- Means of using TQt Assistant as an application's help tool
+TQAssistantClient \- Means of using TQt Assistant as an application's help tool
.SH SYNOPSIS
-\fC#include <ntqassistantclient.h>\fR
+\fC#include <tqassistantclient.h>\fR
.PP
Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQAssistantClient\fR ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
+.BI "\fBTQAssistantClient\fR ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QAssistantClient\fR ()"
+.BI "\fB~TQAssistantClient\fR ()"
.br
.ti -1c
.BI "bool \fBisOpen\fR () const"
@@ -59,17 +59,17 @@ Inherits TQObject.
.br
.in -1c
.SH DESCRIPTION
-The QAssistantClient class provides a means of using TQt Assistant as an application's help tool.
+The TQAssistantClient class provides a means of using TQt Assistant as an application's help tool.
.PP
-Using TQt Assistant is simple: Create a QAssistantClient instance, then call showPage() as often as necessary to show your help pages. When you call showPage(), TQt Assistant will be launched if it isn't already running.
+Using TQt Assistant is simple: Create a TQAssistantClient instance, then call showPage() as often as necessary to show your help pages. When you call showPage(), TQt Assistant will be launched if it isn't already running.
.PP
-The QAssistantClient instance can open (openAssistant()) or close (closeAssistant()) TQt Assistant whenever required. If TQt Assistant is open, isOpen() returns TRUE.
+The TQAssistantClient instance can open (openAssistant()) or close (closeAssistant()) TQt Assistant whenever required. If TQt Assistant is open, isOpen() returns TRUE.
.PP
-One QAssistantClient instance interacts with one TQt Assistant instance, so every time you call openAssistant(), showPage() or closeAssistant() they are applied to the particular TQt Assistant instance associated with the QAssistantClient.
+One TQAssistantClient instance interacts with one TQt Assistant instance, so every time you call openAssistant(), showPage() or closeAssistant() they are applied to the particular TQt Assistant instance associated with the TQAssistantClient.
.PP
When you call openAssistant() the assistantOpened() signal is emitted. Similarly when closeAssistant() is called, assistantClosed() is emitted. In either case, if an error occurs, error() is emitted.
.PP
-This class is not included in the TQt library itself. To use it you must link against \fClibtqassistantclient.a\fR (Unix) or \fCqassistantclient.lib\fR (Windows), which is built into \fCINSTALL/lib\fR if you built the TQt tools (\fCINSTALL\fR is the directory where TQt is installed). If you use qmake, then you can simply add the following line to your pro file:
+This class is not included in the TQt library itself. To use it you must link against \fClibtqassistantclient.a\fR (Unix) or \fCtqassistantclient.lib\fR (Windows), which is built into \fCINSTALL/lib\fR if you built the TQt tools (\fCINSTALL\fR is the directory where TQt is installed). If you use qmake, then you can simply add the following line to your pro file:
.PP
.nf
.br
@@ -79,31 +79,31 @@ This class is not included in the TQt library itself. To use it you must link ag
.PP
See also "Adding Documentation to TQt Assistant" in the TQt Assistant manual.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAssistantClient::QAssistantClient ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
+.SH "TQAssistantClient::TQAssistantClient ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
Constructs an assistant client object. The \fIpath\fR specifies the path to the TQt Assistant executable. If \fIpath\fR is an empty string the system path (\fC%PATH%\fR or \fC$PATH\fR) is used.
.PP
The assistant client object is a child of \fIparent\fR and is called \fIname\fR.
-.SH "QAssistantClient::~QAssistantClient ()"
+.SH "TQAssistantClient::~TQAssistantClient ()"
Destroys the assistant client object and frees up all allocated resources.
-.SH "void QAssistantClient::assistantClosed ()\fC [signal]\fR"
+.SH "void TQAssistantClient::assistantClosed ()\fC [signal]\fR"
This signal is emitted when the connection to TQt Assistant is closed. This happens when the user exits TQt Assistant, or when an error in the server or client occurs, or if closeAssistant() is called.
-.SH "void QAssistantClient::assistantOpened ()\fC [signal]\fR"
+.SH "void TQAssistantClient::assistantOpened ()\fC [signal]\fR"
This signal is emitted when TQt Assistant is open and the client-server communication is set up.
-.SH "void QAssistantClient::closeAssistant ()\fC [virtual slot]\fR"
+.SH "void TQAssistantClient::closeAssistant ()\fC [virtual slot]\fR"
Use this function to close TQt Assistant.
.PP
See also assistantClosed().
-.SH "void QAssistantClient::error ( const TQString & msg )\fC [signal]\fR"
+.SH "void TQAssistantClient::error ( const TQString & msg )\fC [signal]\fR"
This signal is emitted if TQt Assistant cannot be started or if an error occurs during the initialization of the connection between TQt Assistant and the calling application. The \fImsg\fR provides an explanation of the error.
-.SH "bool QAssistantClient::isOpen () const"
+.SH "bool TQAssistantClient::isOpen () const"
Returns TRUE if TQt Assistant is open; otherwise returns FALSE. See the "open" property for details.
-.SH "void QAssistantClient::openAssistant ()\fC [virtual slot]\fR"
+.SH "void TQAssistantClient::openAssistant ()\fC [virtual slot]\fR"
This function opens TQt Assistant and sets up the client-server communiction between the application and TQt Assistant. If it is already open, this function does nothing. If an error occurs, error() is emitted.
.PP
See also assistantOpened().
-.SH "void QAssistantClient::setArguments ( const TQStringList & args )"
+.SH "void TQAssistantClient::setArguments ( const TQStringList & args )"
Sets the command line arguments used when TQt Assistant is started to \fIargs\fR.
-.SH "void QAssistantClient::showPage ( const TQString & page )\fC [virtual slot]\fR"
+.SH "void TQAssistantClient::showPage ( const TQString & page )\fC [virtual slot]\fR"
Call this function to make TQt Assistant show a particular \fIpage\fR. The \fIpage\fR is a filename (e.g. \fCmyhelpfile.html\fR). See "Adding Documentation to TQt Assistant" in the TQt Assistant manual for further information.
.PP
If TQt Assistant hasn't been opened yet, this function will do nothing. You can use isOpen() to determine whether TQt Assistant is up and running, or you can connect to the asssistantOpened() signal.
@@ -118,7 +118,7 @@ This property holds whether TQt Assistant is open.
Get this property's value with isOpen().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqassistantclient.html
+.BR http://doc.trolltech.com/tqassistantclient.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqbitmap.3qt b/doc/man/man3/tqbitmap.3qt
index ef7e6ef7..f0477b2f 100644
--- a/doc/man/man3/tqbitmap.3qt
+++ b/doc/man/man3/tqbitmap.3qt
@@ -52,7 +52,7 @@ Inherits TQPixmap.
.SH DESCRIPTION
The TQBitmap class provides monochrome (1-bit depth) pixmaps.
.PP
-The TQBitmap class is a monochrome off-screen paint device used mainly for creating custom QCursor and TQBrush objects, in TQPixmap::setMask() and for TQRegion.
+The TQBitmap class is a monochrome off-screen paint device used mainly for creating custom TQCursor and TQBrush objects, in TQPixmap::setMask() and for TQRegion.
.PP
A TQBitmap is a TQPixmap with a depth of 1. If a pixmap with a depth greater than 1 is assigned to a bitmap, the bitmap will be dithered automatically. A TQBitmap is guaranteed to always have the depth 1, unless it is TQPixmap::isNull() which has depth 0.
.PP
diff --git a/doc/man/man3/tqchildevent.3qt b/doc/man/man3/tqchildevent.3qt
index 6c206697..65280489 100644
--- a/doc/man/man3/tqchildevent.3qt
+++ b/doc/man/man3/tqchildevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QChildEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQChildEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QChildEvent \- Event parameters for child object events
+TQChildEvent \- Event parameters for child object events
.SH SYNOPSIS
\fC#include <tqevent.h>\fR
.PP
@@ -16,7 +16,7 @@ Inherits TQEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQChildEvent\fR ( Type type, TQObject * child )"
+.BI "\fBTQChildEvent\fR ( Type type, TQObject * child )"
.br
.ti -1c
.BI "TQObject * \fBchild\fR () const"
@@ -29,7 +29,7 @@ Inherits TQEvent.
.br
.in -1c
.SH DESCRIPTION
-The QChildEvent class contains event parameters for child object events.
+The TQChildEvent class contains event parameters for child object events.
.PP
Child events are sent to objects when children are inserted or removed.
.PP
@@ -41,19 +41,19 @@ The handler for these events is TQObject::childEvent().
.PP
See also Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QChildEvent::QChildEvent ( Type type, TQObject * child )"
+.SH "TQChildEvent::TQChildEvent ( Type type, TQObject * child )"
Constructs a child event object. The \fIchild\fR is the object that is to be removed or inserted.
.PP
The \fItype\fR parameter must be either TQEvent::ChildInserted or TQEvent::ChildRemoved.
-.SH "TQObject * QChildEvent::child () const"
+.SH "TQObject * TQChildEvent::child () const"
Returns the child widget that was inserted or removed.
-.SH "bool QChildEvent::inserted () const"
+.SH "bool TQChildEvent::inserted () const"
Returns TRUE if the widget received a new child; otherwise returns FALSE.
-.SH "bool QChildEvent::removed () const"
+.SH "bool TQChildEvent::removed () const"
Returns TRUE if the object lost a child; otherwise returns FALSE.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qchildevent.html
+.BR http://doc.trolltech.com/tqchildevent.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqcloseevent.3qt b/doc/man/man3/tqcloseevent.3qt
index b5c2d36c..e8d80d36 100644
--- a/doc/man/man3/tqcloseevent.3qt
+++ b/doc/man/man3/tqcloseevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QCloseEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQCloseEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QCloseEvent \- Parameters that describe a close event
+TQCloseEvent \- Parameters that describe a close event
.SH SYNOPSIS
\fC#include <tqevent.h>\fR
.PP
@@ -16,7 +16,7 @@ Inherits TQEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQCloseEvent\fR ()"
+.BI "\fBTQCloseEvent\fR ()"
.br
.ti -1c
.BI "bool \fBisAccepted\fR () const"
@@ -29,7 +29,7 @@ Inherits TQEvent.
.br
.in -1c
.SH DESCRIPTION
-The QCloseEvent class contains parameters that describe a close event.
+The TQCloseEvent class contains parameters that describe a close event.
.PP
Close events are sent to widgets that the user wants to close, usually by choosing "Close" from the window menu, or by clicking the `X' titlebar button. They are also sent when you call TQWidget::close() to close a widget programmatically.
.PP
@@ -51,11 +51,11 @@ The isAccepted() function returns TRUE if the event's receiver has agreed to clo
.PP
See also TQWidget::close(), TQWidget::hide(), TQObject::destroyed(), QApplication::setMainWidget(), QApplication::lastWindowClosed(), QApplication::exec(), QApplication::quit(), and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QCloseEvent::QCloseEvent ()"
+.SH "TQCloseEvent::TQCloseEvent ()"
Constructs a close event object with the accept parameter flag set to FALSE.
.PP
See also accept().
-.SH "void QCloseEvent::accept ()"
+.SH "void TQCloseEvent::accept ()"
Sets the accept flag of the close event object.
.PP
Setting the accept flag indicates that the receiver of this event agrees to close the widget.
@@ -68,7 +68,7 @@ See also ignore() and TQWidget::hide().
.PP
Examples:
.)l action/application.cpp, application/application.cpp, mdi/application.cpp, popup/popup.cpp, and qwerty/qwerty.cpp.
-.SH "void QCloseEvent::ignore ()"
+.SH "void TQCloseEvent::ignore ()"
Clears the accept flag of the close event object.
.PP
Clearing the accept flag indicates that the receiver of this event does not want the widget to be closed.
@@ -79,13 +79,13 @@ See also accept().
.PP
Examples:
.)l action/application.cpp, application/application.cpp, mdi/application.cpp, and qwerty/qwerty.cpp.
-.SH "bool QCloseEvent::isAccepted () const"
+.SH "bool TQCloseEvent::isAccepted () const"
Returns TRUE if the receiver of the event has agreed to close the widget; otherwise returns FALSE.
.PP
See also accept() and ignore().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qcloseevent.html
+.BR http://doc.trolltech.com/tqcloseevent.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqcontextmenuevent.3qt b/doc/man/man3/tqcontextmenuevent.3qt
index 4f8e9802..b4706084 100644
--- a/doc/man/man3/tqcontextmenuevent.3qt
+++ b/doc/man/man3/tqcontextmenuevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QContextMenuEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQContextMenuEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QContextMenuEvent \- Parameters that describe a context menu event
+TQContextMenuEvent \- Parameters that describe a context menu event
.SH SYNOPSIS
\fC#include <tqevent.h>\fR
.PP
@@ -19,10 +19,10 @@ Inherits TQEvent.
.BI "enum \fBReason\fR { Mouse, Keyboard, Other }"
.br
.ti -1c
-.BI "\fBQContextMenuEvent\fR ( Reason reason, const TQPoint & pos, const TQPoint & globalPos, int state )"
+.BI "\fBTQContextMenuEvent\fR ( Reason reason, const TQPoint & pos, const TQPoint & globalPos, int state )"
.br
.ti -1c
-.BI "\fBQContextMenuEvent\fR ( Reason reason, const TQPoint & pos, int state )"
+.BI "\fBTQContextMenuEvent\fR ( Reason reason, const TQPoint & pos, int state )"
.br
.ti -1c
.BI "int \fBx\fR () const"
@@ -65,7 +65,7 @@ Inherits TQEvent.
.br
.in -1c
.SH DESCRIPTION
-The QContextMenuEvent class contains parameters that describe a context menu event.
+The TQContextMenuEvent class contains parameters that describe a context menu event.
.PP
Context menu events are sent to widgets when a user triggers a context menu. What triggers this is platform dependent. For example, on Windows, pressing the menu button or releasing the right mouse button will cause this event to be sent.
.PP
@@ -75,30 +75,30 @@ Context menu events contain a special accept flag that indicates whether the rec
.PP
See also TQPopupMenu and Event Classes.
.SS "Member Type Documentation"
-.SH "QContextMenuEvent::Reason"
+.SH "TQContextMenuEvent::Reason"
This enum describes the reason the ContextMenuEvent was sent. The values are:
.TP
-\fCQContextMenuEvent::Mouse\fR - The mouse caused the event to be sent. Normally this means the right mouse button was clicked, but this is platform specific.
+\fCTQContextMenuEvent::Mouse\fR - The mouse caused the event to be sent. Normally this means the right mouse button was clicked, but this is platform specific.
.TP
-\fCQContextMenuEvent::Keyboard\fR - The keyboard caused this event to be sent. On Windows this means the menu button was pressed.
+\fCTQContextMenuEvent::Keyboard\fR - The keyboard caused this event to be sent. On Windows this means the menu button was pressed.
.TP
-\fCQContextMenuEvent::Other\fR - The event was sent by some other means (i.e. not by the mouse or keyboard).
+\fCTQContextMenuEvent::Other\fR - The event was sent by some other means (i.e. not by the mouse or keyboard).
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QContextMenuEvent::QContextMenuEvent ( Reason reason, const TQPoint & pos, const TQPoint & globalPos, int state )"
+.SH "TQContextMenuEvent::TQContextMenuEvent ( Reason reason, const TQPoint & pos, const TQPoint & globalPos, int state )"
Constructs a context menu event object with the accept parameter flag set to FALSE.
.PP
-The \fIreason\fR parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
+The \fIreason\fR parameter must be TQContextMenuEvent::Mouse or TQContextMenuEvent::Keyboard.
.PP
The \fIpos\fR parameter specifies the mouse position relative to the receiving widget. \fIglobalPos\fR is the mouse position in absolute coordinates. \fIstate\fR is the ButtonState at the time of the event.
-.SH "QContextMenuEvent::QContextMenuEvent ( Reason reason, const TQPoint & pos, int state )"
+.SH "TQContextMenuEvent::TQContextMenuEvent ( Reason reason, const TQPoint & pos, int state )"
Constructs a context menu event object with the accept parameter flag set to FALSE.
.PP
-The \fIreason\fR parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
+The \fIreason\fR parameter must be TQContextMenuEvent::Mouse or TQContextMenuEvent::Keyboard.
.PP
The \fIpos\fR parameter specifies the mouse position relative to the receiving widget. \fIstate\fR is the ButtonState at the time of the event.
.PP
-The globalPos() is initialized to QCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.
-.SH "void QContextMenuEvent::accept ()"
+The globalPos() is initialized to TQCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.
+.SH "void TQContextMenuEvent::accept ()"
Sets the accept flag of the context event object.
.PP
Setting the accept flag indicates that the receiver of this event has processed the event. Processing the event means you did something with it and it will be implicitly consumed.
@@ -106,7 +106,7 @@ Setting the accept flag indicates that the receiver of this event has processed
The accept flag is not set by default.
.PP
See also ignore() and consume().
-.SH "void QContextMenuEvent::consume ()"
+.SH "void TQContextMenuEvent::consume ()"
Sets the consume flag of the context event object.
.PP
Setting the consume flag indicates that the receiver of this event does not want the event to be propagated further (i.e. not sent to parent classes.)
@@ -114,19 +114,19 @@ Setting the consume flag indicates that the receiver of this event does not want
The consumed flag is not set by default.
.PP
See also ignore() and accept().
-.SH "const TQPoint & QContextMenuEvent::globalPos () const"
+.SH "const TQPoint & TQContextMenuEvent::globalPos () const"
Returns the global position of the mouse pointer at the time of the event.
.PP
See also x(), y(), and pos().
-.SH "int QContextMenuEvent::globalX () const"
+.SH "int TQContextMenuEvent::globalX () const"
Returns the global x-position of the mouse pointer at the time of the event.
.PP
See also globalY() and globalPos().
-.SH "int QContextMenuEvent::globalY () const"
+.SH "int TQContextMenuEvent::globalY () const"
Returns the global y-position of the mouse pointer at the time of the event.
.PP
See also globalX() and globalPos().
-.SH "void QContextMenuEvent::ignore ()"
+.SH "void TQContextMenuEvent::ignore ()"
Clears the accept flag of the context event object.
.PP
Clearing the accept flag indicates that the receiver of this event does not need to show a context menu. This will implicitly remove the consumed flag as well.
@@ -134,35 +134,35 @@ Clearing the accept flag indicates that the receiver of this event does not need
The accept flag is not set by default.
.PP
See also accept() and consume().
-.SH "bool QContextMenuEvent::isAccepted () const"
+.SH "bool TQContextMenuEvent::isAccepted () const"
Returns TRUE if the receiver has processed the event; otherwise returns FALSE.
.PP
See also accept(), ignore(), and consume().
-.SH "bool QContextMenuEvent::isConsumed () const"
+.SH "bool TQContextMenuEvent::isConsumed () const"
Returns TRUE (which stops propagation of the event) if the receiver has blocked the event; otherwise returns FALSE.
.PP
See also accept(), ignore(), and consume().
-.SH "const TQPoint & QContextMenuEvent::pos () const"
+.SH "const TQPoint & TQContextMenuEvent::pos () const"
Returns the position of the mouse pointer relative to the widget that received the event.
.PP
See also x(), y(), and globalPos().
-.SH "Reason QContextMenuEvent::reason () const"
+.SH "Reason TQContextMenuEvent::reason () const"
Returns the reason for this context event.
-.SH "ButtonState QContextMenuEvent::state () const"
+.SH "ButtonState TQContextMenuEvent::state () const"
Returns the button state (a combination of mouse buttons and keyboard modifiers), i.e. what buttons and keys were being pressed immediately before the event was generated.
.PP
The returned value is LeftButton, RightButton, MidButton, ShiftButton, ControlButton and AltButton OR'ed together.
-.SH "int QContextMenuEvent::x () const"
+.SH "int TQContextMenuEvent::x () const"
Returns the x-position of the mouse pointer, relative to the widget that received the event.
.PP
See also y() and pos().
-.SH "int QContextMenuEvent::y () const"
+.SH "int TQContextMenuEvent::y () const"
Returns the y-position of the mouse pointer, relative to the widget that received the event.
.PP
See also x() and pos().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qcontextmenuevent.html
+.BR http://doc.trolltech.com/tqcontextmenuevent.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqcursor.3qt b/doc/man/man3/tqcursor.3qt
index 11b9106e..b308c7cb 100644
--- a/doc/man/man3/tqcursor.3qt
+++ b/doc/man/man3/tqcursor.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QCursor 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQCursor 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,34 +7,34 @@
.ad l
.nh
.SH NAME
-QCursor \- Mouse cursor with an arbitrary shape
+TQCursor \- Mouse cursor with an arbitrary shape
.SH SYNOPSIS
-\fC#include <ntqcursor.h>\fR
+\fC#include <tqcursor.h>\fR
.PP
Inherits Qt.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQCursor\fR ()"
+.BI "\fBTQCursor\fR ()"
.br
.ti -1c
-.BI "\fBQCursor\fR ( int shape )"
+.BI "\fBTQCursor\fR ( int shape )"
.br
.ti -1c
-.BI "\fBQCursor\fR ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )"
+.BI "\fBTQCursor\fR ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )"
.br
.ti -1c
-.BI "\fBQCursor\fR ( const TQPixmap & pixmap, int hotX = -1, int hotY = -1 )"
+.BI "\fBTQCursor\fR ( const TQPixmap & pixmap, int hotX = -1, int hotY = -1 )"
.br
.ti -1c
-.BI "\fBQCursor\fR ( const QCursor & c )"
+.BI "\fBTQCursor\fR ( const TQCursor & c )"
.br
.ti -1c
-.BI "\fB~QCursor\fR ()"
+.BI "\fB~TQCursor\fR ()"
.br
.ti -1c
-.BI "QCursor & \fBoperator=\fR ( const QCursor & c )"
+.BI "TQCursor & \fBoperator=\fR ( const TQCursor & c )"
.br
.ti -1c
.BI "int \fBshape\fR () const"
@@ -55,7 +55,7 @@ Inherits Qt.
.BI "HCURSOR \fBhandle\fR () const"
.br
.ti -1c
-.BI "\fBQCursor\fR ( HCURSOR handle )"
+.BI "\fBTQCursor\fR ( HCURSOR handle )"
.br
.ti -1c
.BI "HANDLE \fBhandle\fR () const"
@@ -82,14 +82,14 @@ Inherits Qt.
.SH RELATED FUNCTION DOCUMENTATION
.in +1c
.ti -1c
-.BI "TQDataStream & \fBoperator<<\fR ( TQDataStream & s, const QCursor & c )"
+.BI "TQDataStream & \fBoperator<<\fR ( TQDataStream & s, const TQCursor & c )"
.br
.ti -1c
-.BI "TQDataStream & \fBoperator>>\fR ( TQDataStream & s, QCursor & c )"
+.BI "TQDataStream & \fBoperator>>\fR ( TQDataStream & s, TQCursor & c )"
.br
.in -1c
.SH DESCRIPTION
-The QCursor class provides a mouse cursor with an arbitrary shape.
+The TQCursor class provides a mouse cursor with an arbitrary shape.
.PP
This class is mainly used to create mouse cursors that are associated with particular widgets and to get and set the position of the mouse cursor.
.PP
@@ -97,11 +97,11 @@ Qt has a number of standard cursor shapes, but you can also make custom cursor s
.PP
To associate a cursor with a widget, use TQWidget::setCursor(). To associate a cursor with all widgets (normally for a short period of time), use QApplication::setOverrideCursor().
.PP
-To set a cursor shape use QCursor::setShape() or use the QCursor constructor which takes the shape as argument, or you can use one of the predefined cursors defined in the CursorShape enum.
+To set a cursor shape use TQCursor::setShape() or use the TQCursor constructor which takes the shape as argument, or you can use one of the predefined cursors defined in the CursorShape enum.
.PP
-If you want to create a cursor with your own bitmap, either use the QCursor constructor which takes a bitmap and a mask or the constructor which takes a pixmap as arguments.
+If you want to create a cursor with your own bitmap, either use the TQCursor constructor which takes a bitmap and a mask or the constructor which takes a pixmap as arguments.
.PP
-To set or get the position of the mouse cursor use the static methods QCursor::pos() and QCursor::setPos().
+To set or get the position of the mouse cursor use the static methods TQCursor::pos() and TQCursor::setPos().
.PP
<center>
.ce 1
@@ -120,15 +120,15 @@ l - l. TQt::CursorShape Values Cursor Names TQt::ArrowCursor left_ptr TQt::UpArr
.fi
</center>
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QCursor::QCursor ()"
+.SH "TQCursor::TQCursor ()"
Constructs a cursor with the default arrow shape.
-.SH "QCursor::QCursor ( int shape )"
+.SH "TQCursor::TQCursor ( int shape )"
Constructs a cursor with the specified \fIshape\fR.
.PP
See CursorShape for a list of shapes.
.PP
See also setShape().
-.SH "QCursor::QCursor ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )"
+.SH "TQCursor::TQCursor ( const TQBitmap & bitmap, const TQBitmap & mask, int hotX = -1, int hotY = -1 )"
Constructs a custom bitmap cursor.
.PP
\fIbitmap\fR and \fImask\fR make up the bitmap. \fIhotX\fR and \fIhotY\fR define the cursor's hot spot.
@@ -150,7 +150,7 @@ Use the global TQt color \fCcolor0\fR to draw 0-pixels and \fCcolor1\fR to draw
Valid cursor sizes depend on the display hardware (or the underlying window system). We recommend using 32x32 cursors, because this size is supported on all platforms. Some platforms also support 16x16, 48x48 and 64x64 cursors.
.PP
See also TQBitmap::TQBitmap() and TQBitmap::setMask().
-.SH "QCursor::QCursor ( const TQPixmap & pixmap, int hotX = -1, int hotY = -1 )"
+.SH "TQCursor::TQCursor ( const TQPixmap & pixmap, int hotX = -1, int hotY = -1 )"
Constructs a custom pixmap cursor.
.PP
\fIpixmap\fR is the image. It is usual to give it a mask (set using TQPixmap::setMask()). \fIhotX\fR and \fIhotY\fR define the cursor's hot spot.
@@ -162,35 +162,35 @@ Valid cursor sizes depend on the display hardware (or the underlying window syst
Currently, only black-and-white pixmaps can be used.
.PP
See also TQPixmap::TQPixmap() and TQPixmap::setMask().
-.SH "QCursor::QCursor ( const QCursor & c )"
+.SH "TQCursor::TQCursor ( const TQCursor & c )"
Constructs a copy of the cursor \fIc\fR.
-.SH "QCursor::QCursor ( HCURSOR handle )"
+.SH "TQCursor::TQCursor ( HCURSOR handle )"
Creates a cursor with the specified window system handle \fIhandle\fR.
.PP
\fBWarning:\fR Portable in principle, but if you use it you are probably about to do something non-portable. Be careful.
-.SH "QCursor::~QCursor ()"
+.SH "TQCursor::~TQCursor ()"
Destroys the cursor.
-.SH "const TQBitmap * QCursor::bitmap () const"
+.SH "const TQBitmap * TQCursor::bitmap () const"
Returns the cursor bitmap, or 0 if it is one of the standard cursors.
-.SH "void QCursor::cleanup ()\fC [static]\fR"
+.SH "void TQCursor::cleanup ()\fC [static]\fR"
Internal function that deinitializes the predefined cursors. This function is called from the QApplication destructor.
.PP
See also initialize().
-.SH "HANDLE QCursor::handle () const"
+.SH "HANDLE TQCursor::handle () const"
Returns the window system cursor handle.
.PP
\fBWarning:\fR Portable in principle, but if you use it you are probably about to do something non-portable. Be careful.
-.SH "TQPoint QCursor::hotSpot () const"
+.SH "TQPoint TQCursor::hotSpot () const"
Returns the cursor hot spot, or (0, 0) if it is one of the standard cursors.
-.SH "void QCursor::initialize ()\fC [static]\fR"
+.SH "void TQCursor::initialize ()\fC [static]\fR"
Internal function that initializes the predefined cursors. This function is called from the QApplication constructor.
.PP
See also cleanup().
-.SH "const TQBitmap * QCursor::mask () const"
+.SH "const TQBitmap * TQCursor::mask () const"
Returns the cursor bitmap mask, or 0 if it is one of the standard cursors.
-.SH "QCursor & QCursor::operator= ( const QCursor & c )"
+.SH "TQCursor & TQCursor::operator= ( const TQCursor & c )"
Assigns \fIc\fR to this cursor and returns a reference to this cursor.
-.SH "TQPoint QCursor::pos ()\fC [static]\fR"
+.SH "TQPoint TQCursor::pos ()\fC [static]\fR"
Returns the position of the cursor (hot spot) in global screen coordinates.
.PP
You can call TQWidget::mapFromGlobal() to translate it to widget coordinates.
@@ -199,36 +199,36 @@ See also setPos(), TQWidget::mapFromGlobal(), and TQWidget::mapToGlobal().
.PP
Examples:
.)l chart/canvasview.cpp, fileiconview/tqfileiconview.cpp, and menu/menu.cpp.
-.SH "void QCursor::setPos ( int x, int y )\fC [static]\fR"
+.SH "void TQCursor::setPos ( int x, int y )\fC [static]\fR"
Moves the cursor (hot spot) to the global screen position (\fIx\fR, \fIy\fR).
.PP
You can call TQWidget::mapToGlobal() to translate widget coordinates to global screen coordinates.
.PP
See also pos(), TQWidget::mapFromGlobal(), and TQWidget::mapToGlobal().
-.SH "void QCursor::setPos ( const TQPoint & )\fC [static]\fR"
+.SH "void TQCursor::setPos ( const TQPoint & )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
-.SH "void QCursor::setShape ( int shape )"
+.SH "void TQCursor::setShape ( int shape )"
Sets the cursor to the shape identified by \fIshape\fR.
.PP
See CursorShape for the list of cursor shapes.
.PP
See also shape().
-.SH "int QCursor::shape () const"
+.SH "int TQCursor::shape () const"
Returns the cursor shape identifier. The return value is one of the CursorShape enum values (cast to an int).
.PP
See also setShape().
.SH RELATED FUNCTION DOCUMENTATION
-.SH "TQDataStream & operator<< ( TQDataStream & s, const QCursor & c )"
+.SH "TQDataStream & operator<< ( TQDataStream & s, const TQCursor & c )"
Writes the cursor \fIc\fR to the stream \fIs\fR.
.PP
See also Format of the TQDataStream operators.
-.SH "TQDataStream & operator>> ( TQDataStream & s, QCursor & c )"
+.SH "TQDataStream & operator>> ( TQDataStream & s, TQCursor & c )"
Reads a cursor from the stream \fIs\fR and sets \fIc\fR to the read data.
.PP
See also Format of the TQDataStream operators.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqcursor.html
+.BR http://doc.trolltech.com/tqcursor.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqcustomevent.3qt b/doc/man/man3/tqcustomevent.3qt
index 1c57c1e3..a3e3ddda 100644
--- a/doc/man/man3/tqcustomevent.3qt
+++ b/doc/man/man3/tqcustomevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QCustomEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQCustomEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QCustomEvent \- Support for custom events
+TQCustomEvent \- Support for custom events
.SH SYNOPSIS
\fC#include <tqevent.h>\fR
.PP
@@ -16,10 +16,10 @@ Inherits TQEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQCustomEvent\fR ( int type )"
+.BI "\fBTQCustomEvent\fR ( int type )"
.br
.ti -1c
-.BI "\fBQCustomEvent\fR ( Type type, void * data )"
+.BI "\fBTQCustomEvent\fR ( Type type, void * data )"
.br
.ti -1c
.BI "void * \fBdata\fR () const"
@@ -29,21 +29,21 @@ Inherits TQEvent.
.br
.in -1c
.SH DESCRIPTION
-The QCustomEvent class provides support for custom events.
+The TQCustomEvent class provides support for custom events.
.PP
-QCustomEvent is a generic event class for user-defined events. User defined events can be sent to widgets or other TQObject instances using QApplication::postEvent() or QApplication::sendEvent(). Subclasses of TQObject can easily receive custom events by implementing the TQObject::customEvent() event handler function.
+TQCustomEvent is a generic event class for user-defined events. User defined events can be sent to widgets or other TQObject instances using QApplication::postEvent() or QApplication::sendEvent(). Subclasses of TQObject can easily receive custom events by implementing the TQObject::customEvent() event handler function.
.PP
-QCustomEvent objects should be created with a type ID that uniquely identifies the event type. To avoid clashes with the Qt-defined events types, the value should be at least as large as the value of the "User" entry in the TQEvent::Type enum.
+TQCustomEvent objects should be created with a type ID that uniquely identifies the event type. To avoid clashes with the Qt-defined events types, the value should be at least as large as the value of the "User" entry in the TQEvent::Type enum.
.PP
-QCustomEvent contains a generic void* data member that may be used for transferring event-specific data to the receiver. Note that since events are normally delivered asynchronously, the data pointer, if used, must remain valid until the event has been received and processed.
+TQCustomEvent contains a generic void* data member that may be used for transferring event-specific data to the receiver. Note that since events are normally delivered asynchronously, the data pointer, if used, must remain valid until the event has been received and processed.
.PP
-QCustomEvent can be used as-is for simple user-defined event types, but normally you will want to make a subclass of it for your event types. In a subclass, you can add data members that are suitable for your event type.
+TQCustomEvent can be used as-is for simple user-defined event types, but normally you will want to make a subclass of it for your event types. In a subclass, you can add data members that are suitable for your event type.
.PP
Example:
.PP
.nf
.br
- class ColorChangeEvent : public QCustomEvent
+ class ColorChangeEvent : public TQCustomEvent
.br
{
.br
@@ -51,7 +51,7 @@ Example:
.br
ColorChangeEvent( TQColor color )
.br
- : QCustomEvent( 65432 ), c( color ) {}
+ : TQCustomEvent( 65432 ), c( color ) {}
.br
TQColor color() const { return c; }
.br
@@ -73,7 +73,7 @@ Example:
// To receive an event of this custom event type:
.br
.br
- void MyWidget::customEvent( QCustomEvent * e )
+ void MyWidget::customEvent( TQCustomEvent * e )
.br
{
.br
@@ -91,21 +91,21 @@ Example:
.PP
See also TQWidget::customEvent(), QApplication::notify(), and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QCustomEvent::QCustomEvent ( int type )"
+.SH "TQCustomEvent::TQCustomEvent ( int type )"
Constructs a custom event object with event type \fItype\fR. The value of \fItype\fR must be at least as large as TQEvent::User. The data pointer is set to 0.
-.SH "QCustomEvent::QCustomEvent ( Type type, void * data )"
+.SH "TQCustomEvent::TQCustomEvent ( Type type, void * data )"
Constructs a custom event object with the event type \fItype\fR and a pointer to \fIdata\fR. (Note that any int value may safely be cast to TQEvent::Type).
-.SH "void * QCustomEvent::data () const"
+.SH "void * TQCustomEvent::data () const"
Returns a pointer to the generic event data.
.PP
See also setData().
-.SH "void QCustomEvent::setData ( void * data )"
+.SH "void TQCustomEvent::setData ( void * data )"
Sets the generic data pointer to \fIdata\fR.
.PP
See also data().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qcustomevent.html
+.BR http://doc.trolltech.com/tqcustomevent.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqcustommenuitem.3qt b/doc/man/man3/tqcustommenuitem.3qt
index 65bc9d6c..0c65e1c8 100644
--- a/doc/man/man3/tqcustommenuitem.3qt
+++ b/doc/man/man3/tqcustommenuitem.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QCustomMenuItem 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQCustomMenuItem 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QCustomMenuItem \- Abstract base class for custom menu items in popup menus
+TQCustomMenuItem \- Abstract base class for custom menu items in popup menus
.SH SYNOPSIS
\fC#include <tqmenudata.h>\fR
.PP
@@ -16,10 +16,10 @@ Inherits Qt.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQCustomMenuItem\fR ()"
+.BI "\fBTQCustomMenuItem\fR ()"
.br
.ti -1c
-.BI "virtual \fB~QCustomMenuItem\fR ()"
+.BI "virtual \fB~TQCustomMenuItem\fR ()"
.br
.ti -1c
.BI "virtual bool \fBfullSpan\fR () const"
@@ -38,7 +38,7 @@ Inherits Qt.
.br
.in -1c
.SH DESCRIPTION
-The QCustomMenuItem class is an abstract base class for custom menu items in popup menus.
+The TQCustomMenuItem class is an abstract base class for custom menu items in popup menus.
.PP
A custom menu item is a menu item that is defined by two pure virtual functions, paint() and sizeHint(). The size hint tells the menu how much space it needs to reserve for this item, and paint is called whenever the item needs painting.
.PP
@@ -50,38 +50,38 @@ By default, a custom item can also have an icon and a keyboard accelerator. You
.PP
If you want the custom item to be treated just as a separator, reimplement isSeparator() to return TRUE.
.PP
-Note that you can insert pixmaps or bitmaps as items into a popup menu without needing to create a QCustomMenuItem. However, custom menu items offer more flexibility, and -- especially important with Windows style -- provide the possibility of drawing the item with a different color when it is highlighted.
+Note that you can insert pixmaps or bitmaps as items into a popup menu without needing to create a TQCustomMenuItem. However, custom menu items offer more flexibility, and -- especially important with Windows style -- provide the possibility of drawing the item with a different color when it is highlighted.
.PP
menu/menu.cpp shows a simple example how custom menu items can be used.
.PP
-Note: the current implementation of QCustomMenuItem will not recognize shortcut keys that are from text with ampersands. Normal accelerators work though.
+Note: the current implementation of TQCustomMenuItem will not recognize shortcut keys that are from text with ampersands. Normal accelerators work though.
.PP
.ce 1
.B "[Image Omitted]"
.PP
See also TQMenuData, TQPopupMenu, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QCustomMenuItem::QCustomMenuItem ()"
-Constructs a QCustomMenuItem
-.SH "QCustomMenuItem::~QCustomMenuItem ()\fC [virtual]\fR"
-Destroys a QCustomMenuItem
-.SH "bool QCustomMenuItem::fullSpan () const\fC [virtual]\fR"
+.SH "TQCustomMenuItem::TQCustomMenuItem ()"
+Constructs a TQCustomMenuItem
+.SH "TQCustomMenuItem::~TQCustomMenuItem ()\fC [virtual]\fR"
+Destroys a TQCustomMenuItem
+.SH "bool TQCustomMenuItem::fullSpan () const\fC [virtual]\fR"
Returns TRUE if this item wants to span the entire popup menu width; otherwise returns FALSE. The default is FALSE, meaning that the menu may show an icon and an accelerator key for this item as well.
-.SH "bool QCustomMenuItem::isSeparator () const\fC [virtual]\fR"
+.SH "bool TQCustomMenuItem::isSeparator () const\fC [virtual]\fR"
Returns TRUE if this item is just a separator; otherwise returns FALSE.
-.SH "void QCustomMenuItem::paint ( TQPainter * p, const TQColorGroup & cg, bool act, bool enabled, int x, int y, int w, int h )\fC [pure virtual]\fR"
+.SH "void TQCustomMenuItem::paint ( TQPainter * p, const TQColorGroup & cg, bool act, bool enabled, int x, int y, int w, int h )\fC [pure virtual]\fR"
Paints this item. When this function is invoked, the painter \fIp\fR is set to a font and foreground color suitable for a menu item text using color group \fIcg\fR. The item is active if \fIact\fR is TRUE and enabled if \fIenabled\fR is TRUE. The geometry values \fIx\fR, \fIy\fR, \fIw\fR and \fIh\fR specify where to draw the item.
.PP
Do not draw any background, this has already been done by the popup menu according to the current GUI style.
-.SH "void QCustomMenuItem::setFont ( const TQFont & font )\fC [virtual]\fR"
+.SH "void TQCustomMenuItem::setFont ( const TQFont & font )\fC [virtual]\fR"
Sets the font of the custom menu item to \fIfont\fR.
.PP
This function is called whenever the font in the popup menu changes. For menu items that show their own individual font entry, you want to ignore this.
-.SH "TQSize QCustomMenuItem::sizeHint ()\fC [pure virtual]\fR"
+.SH "TQSize TQCustomMenuItem::sizeHint ()\fC [pure virtual]\fR"
Returns the item's size hint.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qcustommenuitem.html
+.BR http://doc.trolltech.com/tqcustommenuitem.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqevent.3qt b/doc/man/man3/tqevent.3qt
index ecdbfa14..c3e5d679 100644
--- a/doc/man/man3/tqevent.3qt
+++ b/doc/man/man3/tqevent.3qt
@@ -13,7 +13,7 @@ TQEvent \- The base class of all event classes. Event objects contain event para
.PP
Inherits Qt.
.PP
-Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, TQTabletEvent, QKeyEvent, QFocusEvent, TQPaintEvent, QMoveEvent, QResizeEvent, QCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, QContextMenuEvent, QIMEvent, TQDropEvent, TQDragLeaveEvent, QChildEvent, and QCustomEvent.
+Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, TQTabletEvent, QKeyEvent, QFocusEvent, TQPaintEvent, QMoveEvent, QResizeEvent, TQCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, TQContextMenuEvent, QIMEvent, TQDropEvent, TQDragLeaveEvent, TQChildEvent, and TQCustomEvent.
.PP
.SS "Public Members"
.in +1c
@@ -95,7 +95,7 @@ This enum type defines the valid event types in Qt. The event types and the spec
.TP
\fCTQEvent::HideToParent\fR - A child widget has been hidden.
.TP
-\fCTQEvent::Close\fR - Widget was closed (permanently), QCloseEvent.
+\fCTQEvent::Close\fR - Widget was closed (permanently), TQCloseEvent.
.TP
\fCTQEvent::ShowNormal\fR - Widget should be shown normally (obsolete).
.TP
@@ -113,7 +113,7 @@ This enum type defines the valid event types in Qt. The event types and the spec
.TP
\fCTQEvent::Wheel\fR - Mouse wheel rolled, QWheelEvent.
.TP
-\fCTQEvent::ContextMenu\fR - Context popup menu, QContextMenuEvent
+\fCTQEvent::ContextMenu\fR - Context popup menu, TQContextMenuEvent
.TP
\fCTQEvent::AccelOverride\fR - Key press in child, for overriding shortcut key handling, QKeyEvent.
.TP
@@ -151,9 +151,9 @@ This enum type defines the valid event types in Qt. The event types and the spec
.TP
\fCTQEvent::DragResponse\fR - Internal event used by TQt on some platforms.
.TP
-\fCTQEvent::ChildInserted\fR - Object gets a child, QChildEvent.
+\fCTQEvent::ChildInserted\fR - Object gets a child, TQChildEvent.
.TP
-\fCTQEvent::ChildRemoved\fR - Object loses a child, QChildEvent.
+\fCTQEvent::ChildRemoved\fR - Object loses a child, TQChildEvent.
.TP
\fCTQEvent::LayoutHint\fR - Widget child has changed layout properties.
.TP
diff --git a/doc/man/man3/tqimageconsumer.3qt b/doc/man/man3/tqimageconsumer.3qt
index bd37843b..239703a2 100644
--- a/doc/man/man3/tqimageconsumer.3qt
+++ b/doc/man/man3/tqimageconsumer.3qt
@@ -9,7 +9,7 @@
.SH NAME
TQImageConsumer \- Abstraction used by TQImageDecoder
.SH SYNOPSIS
-\fC#include <ntqasyncimageio.h>\fR
+\fC#include <tqasyncimageio.h>\fR
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqimagedecoder.3qt b/doc/man/man3/tqimagedecoder.3qt
index 23c452b7..b5b6c4cd 100644
--- a/doc/man/man3/tqimagedecoder.3qt
+++ b/doc/man/man3/tqimagedecoder.3qt
@@ -9,7 +9,7 @@
.SH NAME
TQImageDecoder \- Incremental image decoder for all supported image formats
.SH SYNOPSIS
-\fC#include <ntqasyncimageio.h>\fR
+\fC#include <tqasyncimageio.h>\fR
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqimageformat.3qt b/doc/man/man3/tqimageformat.3qt
index a183e839..d61ad355 100644
--- a/doc/man/man3/tqimageformat.3qt
+++ b/doc/man/man3/tqimageformat.3qt
@@ -9,7 +9,7 @@
.SH NAME
TQImageFormat \- Incremental image decoder for a specific image format
.SH SYNOPSIS
-\fC#include <ntqasyncimageio.h>\fR
+\fC#include <tqasyncimageio.h>\fR
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqimageformattype.3qt b/doc/man/man3/tqimageformattype.3qt
index 631c848f..b23f6271 100644
--- a/doc/man/man3/tqimageformattype.3qt
+++ b/doc/man/man3/tqimageformattype.3qt
@@ -9,7 +9,7 @@
.SH NAME
TQImageFormatType \- Factory that makes TQImageFormat objects
.SH SYNOPSIS
-\fC#include <ntqasyncimageio.h>\fR
+\fC#include <tqasyncimageio.h>\fR
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqkeysequence.3qt b/doc/man/man3/tqkeysequence.3qt
index 0ee6b9e5..3db4b8ac 100644
--- a/doc/man/man3/tqkeysequence.3qt
+++ b/doc/man/man3/tqkeysequence.3qt
@@ -75,14 +75,14 @@ The QKeySequence class encapsulates a key sequence as used by accelerators.
.PP
A key sequence consists of up to four keyboard codes, each optionally combined with modifiers, e.g. SHIFT, CTRL, ALT, META, or UNICODE_ACCEL. For example, \fCCTRL + Key_P\fR might be a sequence used as a shortcut for printing a document. The key codes are listed in ntqnamespace.h. As an alternative, use UNICODE_ACCEL with the unicode code point of the character. For example, \fCUNICODE_ACCEL + 'A'\fR gives the same key sequence as Key_A.
.PP
-Key sequences can be constructed either from an integer key code, or from a human readable translatable string such as" Ctrl+X,Alt+Space". A key sequence can be cast to a TQString to obtain a human readable translated version of the sequence. Translations are done in the "QAccel" context.
+Key sequences can be constructed either from an integer key code, or from a human readable translatable string such as" Ctrl+X,Alt+Space". A key sequence can be cast to a TQString to obtain a human readable translated version of the sequence. Translations are done in the "TQAccel" context.
.PP
-See also QAccel and Miscellaneous Classes.
+See also TQAccel and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QKeySequence::QKeySequence ()"
Constructs an empty key sequence.
.SH "QKeySequence::QKeySequence ( const TQString & key )"
-Creates a key sequence from the string \fIkey\fR. For example" Ctrl+O" gives CTRL+UNICODE_ACCEL+'O'. The strings "Ctrl"," Shift", "Alt" and "Meta" are recognized, as well as their translated equivalents in the "QAccel" context (using TQObject::tr()).
+Creates a key sequence from the string \fIkey\fR. For example" Ctrl+O" gives CTRL+UNICODE_ACCEL+'O'. The strings "Ctrl"," Shift", "Alt" and "Meta" are recognized, as well as their translated equivalents in the "TQAccel" context (using TQObject::tr()).
.PP
Multiple key codes (up to four) may be entered by separating them with commas, e.g. "Alt+X,Ctrl+S,Q".
.PP
@@ -118,7 +118,7 @@ Returns TRUE if the key sequence is empty; otherwise returns FALSE.
.SH "TQt::SequenceMatch QKeySequence::matches ( const QKeySequence & seq ) const"
Matches the sequence with \fIseq\fR. Returns TQt::Identical if successful, TQt::PartialMatch for matching but incomplete \fIseq\fR, and TQt::NoMatch if the sequences have nothing in common. Returns TQt::NoMatch if \fIseq\fR is shorter.
.SH "QKeySequence::operator TQString () const"
-Creates an accelerator string for the key sequence. For instance CTRL+Key_O gives "Ctrl+O". If the key sequence has multiple key codes they are returned comma-separated, e.g." Alt+X, Ctrl+Y, Z". The strings, "Ctrl", "Shift", etc. are translated (using TQObject::tr()) in the "QAccel" scope. If the key sequence has no keys, TQString::null is returned.
+Creates an accelerator string for the key sequence. For instance CTRL+Key_O gives "Ctrl+O". If the key sequence has multiple key codes they are returned comma-separated, e.g." Alt+X, Ctrl+Y, Z". The strings, "Ctrl", "Shift", etc. are translated (using TQObject::tr()) in the "TQAccel" scope. If the key sequence has no keys, TQString::null is returned.
.PP
On Mac OS X, the string returned resembles the sequence that is shown in the menubar.
.SH "QKeySequence::operator int () const"
diff --git a/doc/man/man3/tqlabel.3qt b/doc/man/man3/tqlabel.3qt
index 4969d21e..e975522d 100644
--- a/doc/man/man3/tqlabel.3qt
+++ b/doc/man/man3/tqlabel.3qt
@@ -161,7 +161,7 @@ The look of a TQLabel can be tuned in several ways. All the settings of TQFrame
.br
.fi
.PP
-A TQLabel is often used as a label for an interactive widget. For this use TQLabel provides a useful mechanism for adding an accelerator key (see QAccel) that will set the keyboard focus to the other widget (called the TQLabel's "buddy"). For example:
+A TQLabel is often used as a label for an interactive widget. For this use TQLabel provides a useful mechanism for adding an accelerator key (see TQAccel) that will set the keyboard focus to the other widget (called the TQLabel's "buddy"). For example:
.PP
.nf
.br
@@ -279,7 +279,7 @@ With the code above, the focus jumps to the Name field when the user presses Alt
.PP
To unset a previously set buddy, call this function with \fIbuddy\fR set to 0.
.PP
-See also buddy(), text, QAccel, and alignment.
+See also buddy(), text, TQAccel, and alignment.
.PP
Examples:
.)l addressbook/centralwidget.cpp, chart/optionsform.cpp, and regexptester/regexptester.cpp.
diff --git a/doc/man/man3/tqmainwindow.3qt b/doc/man/man3/tqmainwindow.3qt
index b04b0203..d01ead60 100644
--- a/doc/man/man3/tqmainwindow.3qt
+++ b/doc/man/man3/tqmainwindow.3qt
@@ -220,7 +220,7 @@ Inherits TQWidget.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBchildEvent\fR ( QChildEvent * e )"
+.BI "virtual void \fBchildEvent\fR ( TQChildEvent * e )"
.br
.in -1c
.SS "Protected Slots"
@@ -522,7 +522,7 @@ The central widget is surrounded by the left, top, right and bottom dock areas.
See also setCentralWidget().
.PP
Example: qfd/qfd.cpp.
-.SH "void TQMainWindow::childEvent ( QChildEvent * e )\fC [virtual protected]\fR"
+.SH "void TQMainWindow::childEvent ( TQChildEvent * e )\fC [virtual protected]\fR"
Monitors events, recieved in \fIe\fR, to ensure the layout is updated.
.PP
Reimplemented from TQObject.
diff --git a/doc/man/man3/tqmenubar.3qt b/doc/man/man3/tqmenubar.3qt
index 17b5cd54..2d9efaf8 100644
--- a/doc/man/man3/tqmenubar.3qt
+++ b/doc/man/man3/tqmenubar.3qt
@@ -97,10 +97,10 @@ Inherits TQFrame and TQMenuData.
.BI "int \fBinsertItem\fR ( TQWidget * widget, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
.BI "int \fBinsertSeparator\fR ( int index = -1 )"
@@ -198,7 +198,7 @@ Example (from action/application.cpp):
fileNewAction->addTo( file );
.fi
.PP
-Menu items can have text and pixmaps (or iconsets), see the various insertItem() overloads, as well as separators, see insertSeparator(). You can also add custom menu items that are derived from QCustomMenuItem.
+Menu items can have text and pixmaps (or iconsets), see the various insertItem() overloads, as well as separators, see insertSeparator(). You can also add custom menu items that are derived from TQCustomMenuItem.
.PP
Menu items may be removed with removeItem() and enabled or disabled with setItemEnabled().
.PP
@@ -225,7 +225,7 @@ l - l. String matches Placement Notes about.* Application Menu | About If this e
.PP
menu/menu.cpp is an example of TQMenuBar and TQPopupMenu use.
.PP
-See also TQPopupMenu, QAccel, TQAction, Aqua Style Guidelines, GUI Design Handbook: Menu Bar, and Main Window and Related Classes.
+See also TQPopupMenu, TQAccel, TQAction, Aqua Style Guidelines, GUI Design Handbook: Menu Bar, and Main Window and Related Classes.
.SS "Member Type Documentation"
.SH "TQMenuBar::Separator"
This enum type is used to decide whether TQMenuBar should draw a separator line at its bottom.
@@ -278,7 +278,7 @@ See also activated() and TQMenuData::insertItem().
.SH "int TQMenuData::insertItem ( const TQString & text, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
The family of insertItem() functions inserts menu items into a popup menu or a menu bar.
.PP
-A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see QCustomMenuItem) or even widgets into popup menus.
+A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see TQCustomMenuItem) or even widgets into popup menus.
.PP
Some insertItem() members take a popup menu as an additional argument. Use this to insert submenus into existing menus or pulldown menus into a menu bar.
.PP
@@ -322,7 +322,7 @@ The \fIid\fR specifies the identification number associated with the menu item.
.PP
The \fIindex\fR specifies the position in the menu. The menu item is appended at the end of the list if \fIindex\fR is negative.
.PP
-Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent QAccel object.
+Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent TQAccel object.
.PP
\fBWarning:\fR Be careful when passing a literal 0 to insertItem() because some C++ compilers choose the wrong overloaded function. Cast the 0 to what you mean, e.g. \fC(TQObject*)0\fR.
.PP
@@ -330,7 +330,7 @@ Note that keyboard accelerators in TQt are not application-global, instead they
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.PP
Examples:
.)l addressbook/mainwindow.cpp, canvas/canvas.cpp, menu/menu.cpp, qwerty/qwerty.cpp, scrollview/scrollview.cpp, showimg/showimg.cpp, and sound/sound.cpp.
@@ -341,7 +341,7 @@ Inserts a menu item with icon \fIicon\fR, text \fItext\fR, accelerator \fIaccel\
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQPixmap & pixmap, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -361,7 +361,7 @@ To look best when being highlighted as a menu item, the pixmap should provide a
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQString & text, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -464,7 +464,7 @@ If the widget is focus-enabled it will get focus when the user traverses the pop
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
See also removeItem().
-.SH "int TQMenuData::insertItem ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.SH "int TQMenuData::insertItem ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with an \fIicon\fR and with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -475,8 +475,8 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
-.SH "int TQMenuData::insertItem ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+See also connectItem(), removeItem(), and TQCustomMenuItem.
+.SH "int TQMenuData::insertItem ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -487,7 +487,7 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
+See also connectItem(), removeItem(), and TQCustomMenuItem.
.SH "int TQMenuData::insertSeparator ( int index = -1 )"
Inserts a separator at position \fIindex\fR, and returns the menu identifier number allocated to it. The separator becomes the last menu item if \fIindex\fR is negative.
.PP
diff --git a/doc/man/man3/tqmenudata.3qt b/doc/man/man3/tqmenudata.3qt
index 6966df77..31a55f17 100644
--- a/doc/man/man3/tqmenudata.3qt
+++ b/doc/man/man3/tqmenudata.3qt
@@ -64,10 +64,10 @@ Inherited by TQMenuBar and TQPopupMenu.
.BI "int \fBinsertItem\fR ( TQWidget * widget, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
.BI "int \fBinsertSeparator\fR ( int index = -1 )"
@@ -208,7 +208,7 @@ Menu items can be removed with removeItem() and removeItemAt(), or changed with
.PP
Menu items are stored in a list. Use findItem() to find an item by its list position or by its menu identifier. (See also indexOf() and idAt().)
.PP
-See also QAccel, TQPopupMenu, TQAction, and Miscellaneous Classes.
+See also TQAccel, TQPopupMenu, TQAction, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "TQMenuData::TQMenuData ()"
Constructs an empty menu data list.
@@ -217,7 +217,7 @@ Removes all menu items and disconnects any signals that have been connected.
.SH "QKeySequence TQMenuData::accel ( int id ) const"
Returns the accelerator key that has been defined for the menu item \fIid\fR, or 0 if it has no accelerator key or if there is no such menu item.
.PP
-See also setAccel(), QAccel, and ntqnamespace.h.
+See also setAccel(), TQAccel, and ntqnamespace.h.
.SH "void TQMenuData::activateItemAt ( int index )\fC [virtual]\fR"
Activates the menu item at position \fIindex\fR.
.PP
@@ -318,7 +318,7 @@ Example: scrollview/scrollview.cpp.
.SH "int TQMenuData::insertItem ( const TQString & text, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
The family of insertItem() functions inserts menu items into a popup menu or a menu bar.
.PP
-A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see QCustomMenuItem) or even widgets into popup menus.
+A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see TQCustomMenuItem) or even widgets into popup menus.
.PP
Some insertItem() members take a popup menu as an additional argument. Use this to insert submenus into existing menus or pulldown menus into a menu bar.
.PP
@@ -362,7 +362,7 @@ The \fIid\fR specifies the identification number associated with the menu item.
.PP
The \fIindex\fR specifies the position in the menu. The menu item is appended at the end of the list if \fIindex\fR is negative.
.PP
-Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent QAccel object.
+Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent TQAccel object.
.PP
\fBWarning:\fR Be careful when passing a literal 0 to insertItem() because some C++ compilers choose the wrong overloaded function. Cast the 0 to what you mean, e.g. \fC(TQObject*)0\fR.
.PP
@@ -370,7 +370,7 @@ Note that keyboard accelerators in TQt are not application-global, instead they
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.PP
Examples:
.)l addressbook/mainwindow.cpp, canvas/canvas.cpp, menu/menu.cpp, qwerty/qwerty.cpp, scrollview/scrollview.cpp, showimg/showimg.cpp, and sound/sound.cpp.
@@ -381,7 +381,7 @@ Inserts a menu item with icon \fIicon\fR, text \fItext\fR, accelerator \fIaccel\
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQPixmap & pixmap, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -401,7 +401,7 @@ To look best when being highlighted as a menu item, the pixmap should provide a
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQString & text, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -504,7 +504,7 @@ If the widget is focus-enabled it will get focus when the user traverses the pop
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
See also removeItem().
-.SH "int TQMenuData::insertItem ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.SH "int TQMenuData::insertItem ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with an \fIicon\fR and with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -515,8 +515,8 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
-.SH "int TQMenuData::insertItem ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+See also connectItem(), removeItem(), and TQCustomMenuItem.
+.SH "int TQMenuData::insertItem ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -527,7 +527,7 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
+See also connectItem(), removeItem(), and TQCustomMenuItem.
.SH "int TQMenuData::insertSeparator ( int index = -1 )"
Inserts a separator at position \fIindex\fR, and returns the menu identifier number allocated to it. The separator becomes the last menu item if \fIindex\fR is negative.
.PP
@@ -591,7 +591,7 @@ An accelerator key consists of a key code and a combination of the modifiers \fC
.PP
Defining an accelerator key produces a text that is added to the menu item; for instance, \fCCTRL\fR + \fCKey_O\fR produces "Ctrl+O". The text is formatted differently for different platforms.
.PP
-Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent QAccel object.
+Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent TQAccel object.
.PP
Example:
.PP
@@ -623,7 +623,7 @@ If you need to translate accelerators, use tr() with a string:
.PP
You can also specify the accelerator in the insertItem() function. You may prefer to use TQAction to associate accelerators with menu items.
.PP
-See also accel(), insertItem(), QAccel, and TQAction.
+See also accel(), insertItem(), TQAccel, and TQAction.
.PP
Example: menu/menu.cpp.
.SH "void TQMenuData::setId ( int index, int id )\fC [virtual]\fR"
diff --git a/doc/man/man3/tqmouseevent.3qt b/doc/man/man3/tqmouseevent.3qt
index 21e604fc..91ea44b1 100644
--- a/doc/man/man3/tqmouseevent.3qt
+++ b/doc/man/man3/tqmouseevent.3qt
@@ -75,7 +75,7 @@ The TQWidget::setEnabled() function can be used to enable or disable mouse and k
.PP
The event handlers TQWidget::mousePressEvent(), TQWidget::mouseReleaseEvent(), TQWidget::mouseDoubleClickEvent() and TQWidget::mouseMoveEvent() receive mouse events.
.PP
-See also TQWidget::mouseTracking, TQWidget::grabMouse(), QCursor::pos(), and Event Classes.
+See also TQWidget::mouseTracking, TQWidget::grabMouse(), TQCursor::pos(), and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QMouseEvent::QMouseEvent ( Type type, const TQPoint & pos, int button, int state )"
Constructs a mouse event object.
@@ -84,7 +84,7 @@ The \fItype\fR parameter must be one of TQEvent::MouseButtonPress, TQEvent::Mous
.PP
The \fIpos\fR parameter specifies the position relative to the receiving widget. \fIbutton\fR specifies the button that caused the event, which should be TQt::NoButton (0), if \fItype\fR is MouseMove. \fIstate\fR is the ButtonState at the time of the event.
.PP
-The globalPos() is initialized to QCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.
+The globalPos() is initialized to TQCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.
.SH "QMouseEvent::QMouseEvent ( Type type, const TQPoint & pos, const TQPoint & globalPos, int button, int state )"
Constructs a mouse event object.
.PP
@@ -111,7 +111,7 @@ See also state() and TQt::ButtonState.
Examples:
.)l dclock/dclock.cpp, life/life.cpp, and t14/cannon.cpp.
.SH "const TQPoint & QMouseEvent::globalPos () const"
-Returns the global position of the mouse pointer \fIat the time of the event\fR. This is important on asynchronous window systems like X11. Whenever you move your widgets around in response to mouse events, globalPos() may differ a lot from the current pointer position QCursor::pos(), and from TQWidget::mapToGlobal( pos() ).
+Returns the global position of the mouse pointer \fIat the time of the event\fR. This is important on asynchronous window systems like X11. Whenever you move your widgets around in response to mouse events, globalPos() may differ a lot from the current pointer position TQCursor::pos(), and from TQWidget::mapToGlobal( pos() ).
.PP
See also globalX() and globalY().
.PP
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 5c2e2e24..d0d63c1d 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, TQAction, QApplication, QAssistantClient, TQDataPump, TQWidget, TQCanvas, TQStyle, TQClipboard, TQDns, TQLayout, TQDragObject, TQEditorFactory, TQEventLoop, TQFileIconProvider, TQNetworkProtocol, TQNetworkOperation, QNPInstance, TQObjectCleanupHandler, TQProcess, TQServerSocket, TQSessionManager, TQSignal, TQSignalMapper, TQSocket, TQSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, TQTranslator, TQUrlOperator, and QValidator.
+-Inherited by TQAccel, TQAccessibleObject, TQAction, QApplication, TQAssistantClient, TQDataPump, TQWidget, TQCanvas, TQStyle, TQClipboard, TQDns, TQLayout, TQDragObject, TQEditorFactory, TQEventLoop, TQFileIconProvider, TQNetworkProtocol, TQNetworkOperation, QNPInstance, TQObjectCleanupHandler, TQProcess, TQServerSocket, TQSessionManager, TQSignal, TQSignalMapper, TQSocket, TQSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, TQTranslator, TQUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
@@ -167,10 +167,10 @@ Inherits Qt.
.BI "virtual void \fBtimerEvent\fR ( TQTimerEvent * )"
.br
.ti -1c
-.BI "virtual void \fBchildEvent\fR ( QChildEvent * )"
+.BI "virtual void \fBchildEvent\fR ( TQChildEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcustomEvent\fR ( QCustomEvent * )"
+.BI "virtual void \fBcustomEvent\fR ( TQCustomEvent * )"
.br
.ti -1c
.BI "virtual void \fBconnectNotify\fR ( const char * signal )"
@@ -254,7 +254,7 @@ Searches the children and optionally grandchildren of this object, and returns a
If \fIrecursiveSearch\fR is TRUE (the default), child() performs a depth-first search of the object's children.
.PP
If there is no such object, this function returns 0. If there are more than one, the first one found is retured; if you need all of them, use queryList().
-.SH "void TQObject::childEvent ( QChildEvent * )\fC [virtual protected]\fR"
+.SH "void TQObject::childEvent ( TQChildEvent * )\fC [virtual protected]\fR"
This event handler can be reimplemented in a subclass to receive child events.
.PP
Child events are sent to objects when children are inserted or removed.
@@ -272,7 +272,7 @@ If you change state based on \fCChildInserted\fR events, call TQWidget::constPol
.fi
in functions that depend on the state. One notable example is TQWidget::sizeHint().
.PP
-See also event() and QChildEvent.
+See also event() and TQChildEvent.
.PP
Reimplemented in TQMainWindow and QSplitter.
.SH "const TQObjectList * TQObject::children () const"
@@ -381,10 +381,10 @@ This virtual function is called when something has been connected to \fIsignal\f
\fBWarning:\fR This function violates the object-oriented principle of modularity. However, it might be useful when you need to perform expensive initialization only if something is connected to a signal.
.PP
See also connect() and disconnectNotify().
-.SH "void TQObject::customEvent ( QCustomEvent * )\fC [virtual protected]\fR"
-This event handler can be reimplemented in a subclass to receive custom events. Custom events are user-defined events with a type value at least as large as the "User" item of the TQEvent::Type enum, and is typically a QCustomEvent or QCustomEvent subclass.
+.SH "void TQObject::customEvent ( TQCustomEvent * )\fC [virtual protected]\fR"
+This event handler can be reimplemented in a subclass to receive custom events. Custom events are user-defined events with a type value at least as large as the "User" item of the TQEvent::Type enum, and is typically a TQCustomEvent or TQCustomEvent subclass.
.PP
-See also event() and QCustomEvent.
+See also event() and TQCustomEvent.
.SH "void TQObject::deleteLater ()\fC [slot]\fR"
Performs a deferred deletion of this object.
.PP
@@ -583,7 +583,7 @@ Notice in the example above that unhandled events are passed to the base class's
.PP
See also installEventFilter().
.PP
-Reimplemented in QAccel, TQScrollView, and TQSpinBox.
+Reimplemented in TQAccel, TQScrollView, and TQSpinBox.
.SH "bool TQObject::highPriority () const"
Returns TRUE if the object is a high-priority object, or FALSE if it is a standard-priority object.
.PP
@@ -701,7 +701,7 @@ And here's how to install it on two widgets:
.br
.fi
.PP
-The QAccel class, for example, uses this technique to intercept accelerator key presses.
+The TQAccel class, for example, uses this technique to intercept accelerator key presses.
.PP
\fBWarning:\fR If you delete the receiver object in your eventFilter() function, be sure to return TRUE. If you return FALSE, TQt sends the event to the deleted object and the program will crash.
.PP
diff --git a/doc/man/man3/tqpopupmenu.3qt b/doc/man/man3/tqpopupmenu.3qt
index 4f72f36f..b9451474 100644
--- a/doc/man/man3/tqpopupmenu.3qt
+++ b/doc/man/man3/tqpopupmenu.3qt
@@ -109,10 +109,10 @@ Inherits TQFrame and TQMenuData.
.BI "int \fBinsertItem\fR ( TQWidget * widget, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
-.BI "int \fBinsertItem\fR ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.BI "int \fBinsertItem\fR ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
.br
.ti -1c
.BI "int \fBinsertSeparator\fR ( int index = -1 )"
@@ -219,7 +219,7 @@ The TQPopupMenu class provides a popup menu widget.
.PP
A popup menu widget is a selection menu. It can be either a pull-down menu in a menu bar or a standalone context (popup) menu. Pull-down menus are shown by the menu bar when the user clicks on the respective item or presses the specified shortcut key. Use TQMenuBar::insertItem() to insert a popup menu into a menu bar. Show a context menu either asynchronously with popup() or synchronously with exec().
.PP
-Technically, a popup menu consists of a list of menu items. You add items with insertItem(). An item is either a string, a pixmap or a custom item that provides its own drawing function (see QCustomMenuItem). In addition, items can have an optional icon drawn on the very left side and an accelerator key such as" Ctrl+X".
+Technically, a popup menu consists of a list of menu items. You add items with insertItem(). An item is either a string, a pixmap or a custom item that provides its own drawing function (see TQCustomMenuItem). In addition, items can have an optional icon drawn on the very left side and an accelerator key such as" Ctrl+X".
.PP
There are three kinds of menu items: separators, menu items that perform an action and menu items that show a submenu. Separators are inserted with insertSeparator(). For submenus, you pass a pointer to a TQPopupMenu in your call to insertItem(). All other items are considered action items.
.PP
@@ -269,7 +269,7 @@ Example: mdi/application.cpp.
.SH "QKeySequence TQMenuData::accel ( int id ) const"
Returns the accelerator key that has been defined for the menu item \fIid\fR, or 0 if it has no accelerator key or if there is no such menu item.
.PP
-See also setAccel(), QAccel, and ntqnamespace.h.
+See also setAccel(), TQAccel, and ntqnamespace.h.
.SH "void TQPopupMenu::activated ( int id )\fC [signal]\fR"
This signal is emitted when a menu item is selected; \fIid\fR is the id of the selected item.
.PP
@@ -343,7 +343,7 @@ This is equivalent to \fCexec(mapToGlobal(TQPoint(0,0)))\fR. In most situations
.PP
.nf
.br
- exec(QCursor::pos());
+ exec(TQCursor::pos());
.br
.fi
or aligned to a widget:
@@ -371,7 +371,7 @@ Common usage is to position the popup at the current mouse position:
.PP
.nf
.br
- exec( QCursor::pos() );
+ exec( TQCursor::pos() );
.br
.fi
or aligned to a widget:
@@ -406,7 +406,7 @@ Returns the id of the item at \fIpos\fR, or -1 if there is no item there or if i
.SH "int TQMenuData::insertItem ( const TQString & text, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
The family of insertItem() functions inserts menu items into a popup menu or a menu bar.
.PP
-A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see QCustomMenuItem) or even widgets into popup menus.
+A menu item is usually either a text string or a pixmap, both with an optional icon or keyboard accelerator. For special cases it is also possible to insert custom items (see TQCustomMenuItem) or even widgets into popup menus.
.PP
Some insertItem() members take a popup menu as an additional argument. Use this to insert submenus into existing menus or pulldown menus into a menu bar.
.PP
@@ -450,7 +450,7 @@ The \fIid\fR specifies the identification number associated with the menu item.
.PP
The \fIindex\fR specifies the position in the menu. The menu item is appended at the end of the list if \fIindex\fR is negative.
.PP
-Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent QAccel object.
+Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent TQAccel object.
.PP
\fBWarning:\fR Be careful when passing a literal 0 to insertItem() because some C++ compilers choose the wrong overloaded function. Cast the 0 to what you mean, e.g. \fC(TQObject*)0\fR.
.PP
@@ -458,7 +458,7 @@ Note that keyboard accelerators in TQt are not application-global, instead they
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.PP
Examples:
.)l addressbook/mainwindow.cpp, canvas/canvas.cpp, menu/menu.cpp, qwerty/qwerty.cpp, scrollview/scrollview.cpp, showimg/showimg.cpp, and sound/sound.cpp.
@@ -469,7 +469,7 @@ Inserts a menu item with icon \fIicon\fR, text \fItext\fR, accelerator \fIaccel\
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQPixmap & pixmap, const TQObject * receiver, const char * member, const QKeySequence & accel = 0, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -489,7 +489,7 @@ To look best when being highlighted as a menu item, the pixmap should provide a
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also removeItem(), changeItem(), setAccel(), connectItem(), QAccel, and ntqnamespace.h.
+See also removeItem(), changeItem(), setAccel(), connectItem(), TQAccel, and ntqnamespace.h.
.SH "int TQMenuData::insertItem ( const TQString & text, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -592,7 +592,7 @@ If the widget is focus-enabled it will get focus when the user traverses the pop
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
See also removeItem().
-.SH "int TQMenuData::insertItem ( const TQIconSet & icon, QCustomMenuItem * custom, int id = -1, int index = -1 )"
+.SH "int TQMenuData::insertItem ( const TQIconSet & icon, TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with an \fIicon\fR and with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -603,8 +603,8 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
-.SH "int TQMenuData::insertItem ( QCustomMenuItem * custom, int id = -1, int index = -1 )"
+See also connectItem(), removeItem(), and TQCustomMenuItem.
+.SH "int TQMenuData::insertItem ( TQCustomMenuItem * custom, int id = -1, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a custom menu item \fIcustom\fR with optional id \fIid\fR, and optional \fIindex\fR position.
@@ -615,7 +615,7 @@ If you want to connect a custom item to a slot, use connectItem().
.PP
Returns the allocated menu identifier number (\fIid\fR if \fIid\fR >= 0).
.PP
-See also connectItem(), removeItem(), and QCustomMenuItem.
+See also connectItem(), removeItem(), and TQCustomMenuItem.
.SH "int TQMenuData::insertSeparator ( int index = -1 )"
Inserts a separator at position \fIindex\fR, and returns the menu identifier number allocated to it. The separator becomes the last menu item if \fIindex\fR is negative.
.PP
@@ -687,7 +687,7 @@ An accelerator key consists of a key code and a combination of the modifiers SHI
.PP
Defining an accelerator key produces a text that is added to the menu item; for instance, CTRL + Key_O produces "Ctrl+O". The text is formatted differently for different platforms.
.PP
-Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent QAccel object.
+Note that keyboard accelerators in TQt are not application-global, instead they are bound to a certain top-level window. For example, accelerators in TQPopupMenu items only work for menus that are associated with a certain window. This is true for popup menus that live in a menu bar since their accelerators will then be installed in the menu bar itself. This also applies to stand-alone popup menus that have a top-level widget in their parentWidget() chain. The menu will then install its accelerator object on that top-level widget. For all other cases use an independent TQAccel object.
.PP
Example:
.PP
@@ -719,7 +719,7 @@ If you need to translate accelerators, use tr() with a string:
.PP
You can also specify the accelerator in the insertItem() function. You may prefer to use TQAction to associate accelerators with menu items.
.PP
-See also accel(), insertItem(), QAccel, and TQAction.
+See also accel(), insertItem(), TQAccel, and TQAction.
.PP
Example: menu/menu.cpp.
.SH "void TQPopupMenu::setActiveItem ( int i )\fC [virtual]\fR"
diff --git a/doc/man/man3/tqscrollview.3qt b/doc/man/man3/tqscrollview.3qt
index a57200fb..d61bf908 100644
--- a/doc/man/man3/tqscrollview.3qt
+++ b/doc/man/man3/tqscrollview.3qt
@@ -273,7 +273,7 @@ Inherited by TQCanvasView, TQTable, TQGridView, TQIconView, TQListBox, TQListVie
.BI "virtual void \fBcontentsWheelEvent\fR ( QWheelEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsContextMenuEvent\fR ( QContextMenuEvent * e )"
+.BI "virtual void \fBcontentsContextMenuEvent\fR ( TQContextMenuEvent * e )"
.br
.ti -1c
.BI "virtual void \fBviewportPaintEvent\fR ( TQPaintEvent * pe )"
@@ -517,7 +517,7 @@ Returns the clipper widget. Contents in the scrollview are ultimately clipped to
You should not need to use this function.
.PP
See also visibleWidth and visibleHeight.
-.SH "void TQScrollView::contentsContextMenuEvent ( QContextMenuEvent * e )\fC [virtual protected]\fR"
+.SH "void TQScrollView::contentsContextMenuEvent ( TQContextMenuEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever the TQScrollView receives a contextMenuEvent() in \fIe\fR: the mouse position is translated to be a point on the contents.
.PP
Example: chart/canvasview.cpp.
diff --git a/doc/man/man3/tqsplitter.3qt b/doc/man/man3/tqsplitter.3qt
index 845e4d69..a84e01ba 100644
--- a/doc/man/man3/tqsplitter.3qt
+++ b/doc/man/man3/tqsplitter.3qt
@@ -91,7 +91,7 @@ Inherits TQFrame.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBchildEvent\fR ( QChildEvent * c )"
+.BI "virtual void \fBchildEvent\fR ( TQChildEvent * c )"
.br
.ti -1c
.BI "int \fBidAfter\fR ( TQWidget * w ) const"
@@ -180,7 +180,7 @@ Destroys the splitter and any children.
Returns the closest legal position to \fIpos\fR of the widget with ID \fIid\fR.
.PP
See also idAfter().
-.SH "void QSplitter::childEvent ( QChildEvent * c )\fC [virtual protected]\fR"
+.SH "void QSplitter::childEvent ( TQChildEvent * c )\fC [virtual protected]\fR"
Tells the splitter that the child widget described by \fIc\fR has been inserted or removed.
.PP
Reimplemented from TQObject.
diff --git a/doc/man/man3/tqt.3qt b/doc/man/man3/tqt.3qt
index a97aac6d..fab9ffe6 100644
--- a/doc/man/man3/tqt.3qt
+++ b/doc/man/man3/tqt.3qt
@@ -11,7 +11,7 @@ Qt \- Namespace for miscellaneous identifiers that need to be global-like
.SH SYNOPSIS
\fC#include <ntqnamespace.h>\fR
.PP
-Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, QCursor, TQPainter, TQEvent, TQIconViewItem, QKeySequence, TQListViewItem, QCustomMenuItem, TQPen, TQStyleSheetItem, TQSyntaxHighlighter, TQTab, TQTableItem, TQThread, TQToolTip, and TQWhatsThis.
+Inherited by TQObject, TQPixmap, TQBrush, TQCanvasItem, TQCursor, TQPainter, TQEvent, TQIconViewItem, QKeySequence, TQListViewItem, TQCustomMenuItem, TQPen, TQStyleSheetItem, TQSyntaxHighlighter, TQTab, TQTableItem, TQThread, TQToolTip, and TQWhatsThis.
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqtabletevent.3qt b/doc/man/man3/tqtabletevent.3qt
index 225c595e..afdb5ce7 100644
--- a/doc/man/man3/tqtabletevent.3qt
+++ b/doc/man/man3/tqtabletevent.3qt
@@ -118,7 +118,7 @@ Returns the type of device that generated the event. Useful if you want one end
.PP
See also TabletDevice.
.SH "const TQPoint & TQTabletEvent::globalPos () const"
-Returns the global position of the device \fIat the time of the event\fR. This is important on asynchronous windows systems like X11; whenever you move your widgets around in response to mouse events, globalPos() can differ significantly from the current position QCursor::pos().
+Returns the global position of the device \fIat the time of the event\fR. This is important on asynchronous windows systems like X11; whenever you move your widgets around in response to mouse events, globalPos() can differ significantly from the current position TQCursor::pos().
.PP
See also globalX() and globalY().
.SH "int TQTabletEvent::globalX () const"
diff --git a/doc/man/man3/tqvariant.3qt b/doc/man/man3/tqvariant.3qt
index d164b585..638616e4 100644
--- a/doc/man/man3/tqvariant.3qt
+++ b/doc/man/man3/tqvariant.3qt
@@ -83,7 +83,7 @@ QVariant \- Acts like a union for the most common TQt data types
.BI "\fBQVariant\fR ( const TQBitmap & val )"
.br
.ti -1c
-.BI "\fBQVariant\fR ( const QCursor & val )"
+.BI "\fBQVariant\fR ( const TQCursor & val )"
.br
.ti -1c
.BI "\fBQVariant\fR ( const TQDate & val )"
@@ -215,7 +215,7 @@ QVariant \- Acts like a union for the most common TQt data types
.BI "const TQRegion \fBtoRegion\fR () const"
.br
.ti -1c
-.BI "const QCursor \fBtoCursor\fR () const"
+.BI "const TQCursor \fBtoCursor\fR () const"
.br
.ti -1c
.BI "const TQDate \fBtoDate\fR () const"
@@ -338,7 +338,7 @@ QVariant \- Acts like a union for the most common TQt data types
.BI "TQRegion & \fBasRegion\fR ()"
.br
.ti -1c
-.BI "QCursor & \fBasCursor\fR ()"
+.BI "TQCursor & \fBasCursor\fR ()"
.br
.ti -1c
.BI "TQDate & \fBasDate\fR ()"
@@ -490,7 +490,7 @@ This enum type defines the types of variable that a QVariant can contain.
.TP
\fCQVariant::ColorGroup\fR - a TQColorGroup
.TP
-\fCQVariant::Cursor\fR - a QCursor
+\fCQVariant::Cursor\fR - a TQCursor
.TP
\fCQVariant::Date\fR - a TQDate
.TP
@@ -602,7 +602,7 @@ Because TQPointArray is explicitly shared, you may need to pass a deep copy to t
Constructs a new variant with a region value, \fIval\fR.
.SH "QVariant::QVariant ( const TQBitmap & val )"
Constructs a new variant with a bitmap value, \fIval\fR.
-.SH "QVariant::QVariant ( const QCursor & val )"
+.SH "QVariant::QVariant ( const TQCursor & val )"
Constructs a new variant with a cursor value, \fIval\fR.
.SH "QVariant::QVariant ( const TQDate & val )"
Constructs a new variant with a date value, \fIval\fR.
@@ -678,8 +678,8 @@ Tries to convert the variant to hold a TQColorGroup value. If that is not possib
Returns a reference to the stored color group.
.PP
See also toColorGroup().
-.SH "QCursor & QVariant::asCursor ()"
-Tries to convert the variant to hold a QCursor value. If that is not possible the variant is set to a default arrow cursor.
+.SH "TQCursor & QVariant::asCursor ()"
+Tries to convert the variant to hold a TQCursor value. If that is not possible the variant is set to a default arrow cursor.
.PP
Returns a reference to the stored cursor.
.PP
@@ -949,8 +949,8 @@ See also asColor() and canCast().
Returns the variant as a TQColorGroup if the variant has type() ColorGroup; otherwise returns a completely black color group.
.PP
See also asColorGroup().
-.SH "const QCursor QVariant::toCursor () const"
-Returns the variant as a QCursor if the variant has type() Cursor; otherwise returns the default arrow cursor.
+.SH "const TQCursor QVariant::toCursor () const"
+Returns the variant as a TQCursor if the variant has type() Cursor; otherwise returns the default arrow cursor.
.PP
See also asCursor().
.SH "const TQDate QVariant::toDate () const"
diff --git a/doc/man/man3/tqwhatsthis.3qt b/doc/man/man3/tqwhatsthis.3qt
index 40de1c1a..0af9e30c 100644
--- a/doc/man/man3/tqwhatsthis.3qt
+++ b/doc/man/man3/tqwhatsthis.3qt
@@ -52,10 +52,10 @@ Inherits Qt.
.BI "bool \fBinWhatsThisMode\fR ()"
.br
.ti -1c
-.BI "void \fBleaveWhatsThisMode\fR ( const TQString & text = TQString::null, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )"
+.BI "void \fBleaveWhatsThisMode\fR ( const TQString & text = TQString::null, const TQPoint & pos = TQCursor::pos ( ), TQWidget * w = 0 )"
.br
.ti -1c
-.BI "void \fBdisplay\fR ( const TQString & text, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )"
+.BI "void \fBdisplay\fR ( const TQString & text, const TQPoint & pos = TQCursor::pos ( ), TQWidget * w = 0 )"
.br
.in -1c
.SH DESCRIPTION
@@ -68,7 +68,7 @@ TQWhatsThis provides a single window with an explanatory text that pops up when
.PP
(Note that if there is an accelerator for Shift+F1, this mechanism will not work.)
.PP
-To add "What's this?" text to a widget you simply call TQWhatsThis::add() for the widget. For example, to assign text to a menu item, call TQMenuData::setWhatsThis(); for a global accelerator key, call QAccel::setWhatsThis() and If you're using actions, use TQAction::setWhatsThis().
+To add "What's this?" text to a widget you simply call TQWhatsThis::add() for the widget. For example, to assign text to a menu item, call TQMenuData::setWhatsThis(); for a global accelerator key, call TQAccel::setWhatsThis() and If you're using actions, use TQAction::setWhatsThis().
.PP
The text can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. This makes it possible to embed images. See TQStyleSheet::defaultSheet() for details.
.PP
@@ -128,7 +128,7 @@ This virtual function is called when the user clicks inside the" What's this?" w
If the function returns TRUE (the default), the "What's this?" window is closed, otherwise it remains visible.
.PP
The default implementation ignores \fIhref\fR and returns TRUE.
-.SH "void TQWhatsThis::display ( const TQString & text, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR"
+.SH "void TQWhatsThis::display ( const TQString & text, const TQPoint & pos = TQCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR"
Display \fItext\fR in a help window at the global screen position \fIpos\fR.
.PP
If widget \fIw\fR is not 0 and has its own dedicated TQWhatsThis object, this object will receive clicked() messages when the user clicks on hyperlinks inside the help text.
@@ -146,7 +146,7 @@ See also inWhatsThisMode() and leaveWhatsThisMode().
Returns TRUE if the application is in "What's this?" mode; otherwise returns FALSE.
.PP
See also enterWhatsThisMode() and leaveWhatsThisMode().
-.SH "void TQWhatsThis::leaveWhatsThisMode ( const TQString & text = TQString::null, const TQPoint & pos = QCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR"
+.SH "void TQWhatsThis::leaveWhatsThisMode ( const TQString & text = TQString::null, const TQPoint & pos = TQCursor::pos ( ), TQWidget * w = 0 )\fC [static]\fR"
Leaves "What's this?" question mode.
.PP
This function is used internally by widgets that support TQWidget::customWhatsThis(); applications do not usually call it. An example of such a widget is TQPopupMenu: menus still work normally in "What's this?" mode but also provide help texts for individual menu items.
diff --git a/doc/man/man3/tqwheelevent.3qt b/doc/man/man3/tqwheelevent.3qt
index 4df7ddff..290b161a 100644
--- a/doc/man/man3/tqwheelevent.3qt
+++ b/doc/man/man3/tqwheelevent.3qt
@@ -74,7 +74,7 @@ See also QMouseEvent, TQWidget::grabMouse(), and Event Classes.
.SH "QWheelEvent::QWheelEvent ( const TQPoint & pos, int delta, int state, Orientation orient = Vertical )"
Constructs a wheel event object.
.PP
-The globalPos() is initialized to QCursor::pos(), i.e. \fIpos\fR, which is usually (but not always) right. Use the other constructor if you need to specify the global position explicitly. \fIdelta\fR contains the rotation distance, \fIstate\fR holds the keyboard modifier flags at the time of the event and \fIorient\fR holds the wheel's orientation.
+The globalPos() is initialized to TQCursor::pos(), i.e. \fIpos\fR, which is usually (but not always) right. Use the other constructor if you need to specify the global position explicitly. \fIdelta\fR contains the rotation distance, \fIstate\fR holds the keyboard modifier flags at the time of the event and \fIorient\fR holds the wheel's orientation.
.PP
See also pos(), delta(), and state().
.SH "QWheelEvent::QWheelEvent ( const TQPoint & pos, const TQPoint & globalPos, int delta, int state, Orientation orient = Vertical )"
@@ -94,7 +94,7 @@ Returns the distance that the wheel is rotated expressed in multiples or divisio
.PP
The \fIwheel delta\fR constant was defined to be 120 by wheel mouse vendors to allow building finer-resolution wheels in the future, including perhaps a freely rotating wheel with no notches. The expectation is that such a device would send more messages per rotation but with a smaller value in each message.
.SH "const TQPoint & QWheelEvent::globalPos () const"
-Returns the global position of the mouse pointer \fIat the time of the event\fR. This is important on asynchronous window systems such as X11; whenever you move your widgets around in response to mouse events, globalPos() can differ a lot from the current pointer position QCursor::pos().
+Returns the global position of the mouse pointer \fIat the time of the event\fR. This is important on asynchronous window systems such as X11; whenever you move your widgets around in response to mouse events, globalPos() can differ a lot from the current pointer position TQCursor::pos().
.PP
See also globalX() and globalY().
.SH "int QWheelEvent::globalX () const"
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index 346dd3b2..f0c3070c 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -267,13 +267,13 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "TQFontInfo \fBfontInfo\fR () const"
.br
.ti -1c
-.BI "const QCursor & \fBcursor\fR () const"
+.BI "const TQCursor & \fBcursor\fR () const"
.br
.ti -1c
.BI "bool \fBownCursor\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetCursor\fR ( const QCursor & )"
+.BI "virtual void \fBsetCursor\fR ( const TQCursor & )"
.br
.ti -1c
.BI "virtual void \fBunsetCursor\fR ()"
@@ -351,7 +351,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "void \fBgrabMouse\fR ()"
.br
.ti -1c
-.BI "void \fBgrabMouse\fR ( const QCursor & cursor )"
+.BI "void \fBgrabMouse\fR ( const TQCursor & cursor )"
.br
.ti -1c
.BI "void \fBreleaseMouse\fR ()"
@@ -684,7 +684,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "TQColorGroup \fBcolorGroup\fR - the current color group of the widget palette \fI(read " "only" ")\fR"
.br
.ti -1c
-.BI "QCursor \fBcursor\fR - the cursor shape for this widget"
+.BI "TQCursor \fBcursor\fR - the cursor shape for this widget"
.br
.ti -1c
.BI "bool \fBcustomWhatsThis\fR - whether the widget wants to handle What's This help manually \fI(read " "only" ")\fR"
@@ -897,10 +897,10 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "virtual void \fBresizeEvent\fR ( QResizeEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcloseEvent\fR ( QCloseEvent * e )"
+.BI "virtual void \fBcloseEvent\fR ( TQCloseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontextMenuEvent\fR ( QContextMenuEvent * e )"
+.BI "virtual void \fBcontextMenuEvent\fR ( TQContextMenuEvent * e )"
.br
.ti -1c
.BI "virtual void \fBimStartEvent\fR ( QIMEvent * e )"
@@ -1227,7 +1227,7 @@ The repaint() function calls this function if necessary, so in general you do no
.SH "bool TQWidget::close ()\fC [slot]\fR"
Closes this widget. Returns TRUE if the widget was closed; otherwise returns FALSE.
.PP
-First it sends the widget a QCloseEvent. The widget is hidden if it accepts the close event. The default implementation of TQWidget::closeEvent() accepts the close event.
+First it sends the widget a TQCloseEvent. The widget is hidden if it accepts the close event. The default implementation of TQWidget::closeEvent() accepts the close event.
.PP
The QApplication::lastWindowClosed() signal is emitted when the last visible top level widget is closed.
.PP
@@ -1238,19 +1238,19 @@ This is an overloaded member function, provided for convenience. It behaves esse
.PP
Closes this widget. Returns TRUE if the widget was closed; otherwise returns FALSE.
.PP
-If \fIalsoDelete\fR is TRUE or the widget has the WDestructiveClose widget flag, the widget is also deleted. The widget can prevent itself from being closed by rejecting the QCloseEvent it gets. A close events is delivered to the widget no matter if the widget is visible or not.
+If \fIalsoDelete\fR is TRUE or the widget has the WDestructiveClose widget flag, the widget is also deleted. The widget can prevent itself from being closed by rejecting the TQCloseEvent it gets. A close events is delivered to the widget no matter if the widget is visible or not.
.PP
The QApplication::lastWindowClosed() signal is emitted when the last visible top level widget is closed.
.PP
Note that closing the QApplication::mainWidget() terminates the application.
.PP
-See also closeEvent(), QCloseEvent, hide(), QApplication::quit(), QApplication::setMainWidget(), and QApplication::lastWindowClosed().
-.SH "void TQWidget::closeEvent ( QCloseEvent * e )\fC [virtual protected]\fR"
+See also closeEvent(), TQCloseEvent, hide(), QApplication::quit(), QApplication::setMainWidget(), and QApplication::lastWindowClosed().
+.SH "void TQWidget::closeEvent ( TQCloseEvent * e )\fC [virtual protected]\fR"
This event handler, for event \fIe\fR, can be reimplemented in a subclass to receive widget close events.
.PP
-The default implementation calls e->accept(), which hides this widget. See the QCloseEvent documentation for more details.
+The default implementation calls e->accept(), which hides this widget. See the TQCloseEvent documentation for more details.
.PP
-See also event(), hide(), close(), and QCloseEvent.
+See also event(), hide(), close(), and TQCloseEvent.
.PP
Examples:
.)l action/application.cpp, application/application.cpp, chart/chartform.cpp, i18n/mywidget.cpp, mdi/application.cpp, popup/popup.cpp, and qwerty/qwerty.cpp.
@@ -1264,12 +1264,12 @@ Call constPolish() from functions like sizeHint() that depends on the widget bei
\fBWarning:\fR Do not call constPolish() on a widget from inside that widget's constructor.
.PP
See also polish().
-.SH "void TQWidget::contextMenuEvent ( QContextMenuEvent * e )\fC [virtual protected]\fR"
+.SH "void TQWidget::contextMenuEvent ( TQContextMenuEvent * e )\fC [virtual protected]\fR"
This event handler, for event \fIe\fR, can be reimplemented in a subclass to receive widget context menu events.
.PP
-The default implementation calls e->ignore(), which rejects the context event. See the QContextMenuEvent documentation for more details.
+The default implementation calls e->ignore(), which rejects the context event. See the TQContextMenuEvent documentation for more details.
.PP
-See also event() and QContextMenuEvent.
+See also event() and TQContextMenuEvent.
.PP
Example: menu/menu.cpp.
.SH "void TQWidget::create ( WId window = 0, bool initializeWindow = TRUE, bool destroyOldWindow = TRUE )\fC [virtual protected]\fR"
@@ -1280,7 +1280,7 @@ Initializes the window (sets the geometry etc.) if \fIinitializeWindow\fR is TRU
Destroys the old window if \fIdestroyOldWindow\fR is TRUE. If \fIdestroyOldWindow\fR is FALSE, you are responsible for destroying the window yourself (using platform native code).
.PP
The TQWidget constructor calls create(0,TRUE,TRUE) to create a window for this widget.
-.SH "const QCursor & TQWidget::cursor () const"
+.SH "const TQCursor & TQWidget::cursor () const"
Returns the cursor shape for this widget. See the "cursor" property for details.
.SH "bool TQWidget::customWhatsThis () const\fC [virtual]\fR"
Returns TRUE if the widget wants to handle What's This help manually; otherwise returns FALSE. See the "customWhatsThis" property for details.
@@ -1491,7 +1491,7 @@ It is almost never necessary to grab the mouse when using Qt, as TQt grabs and r
Note that only visible widgets can grab mouse input. If isVisible() returns FALSE for a widget, that widget cannot call grabMouse().
.PP
See also releaseMouse(), grabKeyboard(), releaseKeyboard(), grabKeyboard(), and focusWidget().
-.SH "void TQWidget::grabMouse ( const QCursor & cursor )"
+.SH "void TQWidget::grabMouse ( const TQCursor & cursor )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Grabs the mouse input and changes the cursor shape.
@@ -2009,7 +2009,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
This corresponds to setBaseSize( TQSize(\fIbasew\fR, \fIbaseh\fR) ). Sets the widgets base size to width \fIbasew\fR and height \fIbaseh\fR.
.SH "void TQWidget::setCaption ( const TQString & )\fC [virtual slot]\fR"
Sets the window caption (title). See the "caption" property for details.
-.SH "void TQWidget::setCursor ( const QCursor & )\fC [virtual]\fR"
+.SH "void TQWidget::setCursor ( const TQCursor & )\fC [virtual]\fR"
Sets the cursor shape for this widget. See the "cursor" property for details.
.SH "void TQWidget::setDisabled ( bool disable )\fC [slot]\fR"
Disables widget input events if \fIdisable\fR is TRUE; otherwise enables input events.
@@ -2623,7 +2623,7 @@ The color group is determined by the state of the widget. A disabled widget has
See also palette.
.PP
Get this property's value with colorGroup().
-.SH "QCursor cursor"
+.SH "TQCursor cursor"
This property holds the cursor shape for this widget.
.PP
The mouse cursor will assume this shape when it's over this widget. See the list of predefined cursor objects for a range of useful shapes.