summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 13:06:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 13:06:00 +0900
commit628b0bb74c3fc327efff8add9c73ada04b1cbea2 (patch)
tree16062922d35b5e0153b9f866e440f36603bd4f55 /doc/man
parent7552c6d73043b1040139033f6864db48ae5446cf (diff)
downloadtqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.tar.gz
tqt3-628b0bb74c3fc327efff8add9c73ada04b1cbea2.zip
Rename drag-n-drop nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man3/tqclipboard.3qt24
-rw-r--r--doc/man/man3/tqcolordrag.3qt36
-rw-r--r--doc/man/man3/tqdragenterevent.3qt22
-rw-r--r--doc/man/man3/tqdragleaveevent.3qt20
-rw-r--r--doc/man/man3/tqdragmoveevent.3qt28
-rw-r--r--doc/man/man3/tqdragobject.3qt62
-rw-r--r--doc/man/man3/tqdropevent.3qt72
-rw-r--r--doc/man/man3/tqevent.3qt10
-rw-r--r--doc/man/man3/tqicondrag.3qt12
-rw-r--r--doc/man/man3/tqiconview.3qt20
-rw-r--r--doc/man/man3/tqiconviewitem.3qt10
-rw-r--r--doc/man/man3/tqimage.3qt2
-rw-r--r--doc/man/man3/tqimagedrag.3qt18
-rw-r--r--doc/man/man3/tqlistview.3qt10
-rw-r--r--doc/man/man3/tqlistviewitem.3qt10
-rw-r--r--doc/man/man3/tqmacmime.3qt54
-rw-r--r--doc/man/man3/tqmimesource.3qt36
-rw-r--r--doc/man/man3/tqmimesourcefactory.3qt86
-rw-r--r--doc/man/man3/tqobject.3qt2
-rw-r--r--doc/man/man3/tqpixmap.3qt2
-rw-r--r--doc/man/man3/tqscrollview.3qt18
-rw-r--r--doc/man/man3/tqsimplerichtext.3qt8
-rw-r--r--doc/man/man3/tqstoreddrag.3qt34
-rw-r--r--doc/man/man3/tqstylesheet.3qt6
-rw-r--r--doc/man/man3/tqtable.3qt34
-rw-r--r--doc/man/man3/tqtextbrowser.3qt4
-rw-r--r--doc/man/man3/tqtextdrag.3qt18
-rw-r--r--doc/man/man3/tqtextedit.3qt24
-rw-r--r--doc/man/man3/tquridrag.3qt60
-rw-r--r--doc/man/man3/tqwhatsthis.3qt2
-rw-r--r--doc/man/man3/tqwidget.3qt24
-rw-r--r--doc/man/man3/tqwidgetfactory.3qt2
-rw-r--r--doc/man/man3/tqwindowsmime.3qt54
33 files changed, 412 insertions, 412 deletions
diff --git a/doc/man/man3/tqclipboard.3qt b/doc/man/man3/tqclipboard.3qt
index 2e493bc90..62bcbaed1 100644
--- a/doc/man/man3/tqclipboard.3qt
+++ b/doc/man/man3/tqclipboard.3qt
@@ -49,10 +49,10 @@ Inherits TQObject.
.BI "void \fBsetText\fR ( const TQString & text, Mode mode )"
.br
.ti -1c
-.BI "QMimeSource * \fBdata\fR ( Mode mode ) const"
+.BI "TQMimeSource * \fBdata\fR ( Mode mode ) const"
.br
.ti -1c
-.BI "void \fBsetData\fR ( QMimeSource * src, Mode mode )"
+.BI "void \fBsetData\fR ( TQMimeSource * src, Mode mode )"
.br
.ti -1c
.BI "TQImage \fBimage\fR ( Mode mode ) const"
@@ -76,10 +76,10 @@ Inherits TQObject.
.BI "void \fBsetText\fR ( const TQString & text )"
.br
.ti -1c
-.BI "QMimeSource * \fBdata\fR () const"
+.BI "TQMimeSource * \fBdata\fR () const"
.br
.ti -1c
-.BI "void \fBsetData\fR ( QMimeSource * src )"
+.BI "void \fBsetData\fR ( TQMimeSource * src )"
.br
.ti -1c
.BI "TQImage \fBimage\fR () const"
@@ -108,7 +108,7 @@ The QClipboard class provides access to the window system clipboard.
.PP
The clipboard offers a simple mechanism to copy and paste data between applications.
.PP
-QClipboard supports the same data types that QDragObject does, and uses similar mechanisms. For advanced clipboard usage read the drag-and-drop documentation.
+QClipboard supports the same data types that TQDragObject does, and uses similar mechanisms. For advanced clipboard usage read the drag-and-drop documentation.
.PP
There is a single QClipboard object in an application, and you can access it using QApplication::clipboard().
.PP
@@ -136,7 +136,7 @@ Example:
.br
.fi
.PP
-QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and TQImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any QMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap().
+QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and TQImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any TQMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap().
.PP
You can clear the clipboard by calling clear().
.SH "Platform Specific Information"
@@ -188,13 +188,13 @@ See also QClipboard::Mode and supportsSelection().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::clear() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.
-.SH "QMimeSource * QClipboard::data ( Mode mode ) const"
-Returns a reference to a QMimeSource representation of the current clipboard data.
+.SH "TQMimeSource * QClipboard::data ( Mode mode ) const"
+Returns a reference to a TQMimeSource representation of the current clipboard data.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection.
.PP
See also setData().
-.SH "QMimeSource * QClipboard::data () const"
+.SH "TQMimeSource * QClipboard::data () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::data() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.
@@ -234,17 +234,17 @@ Use the QClipboard::data(), QClipboard::setData() and related functions which ta
Returns the selection mode.
.PP
See also setSelectionMode() and supportsSelection().
-.SH "void QClipboard::setData ( QMimeSource * src, Mode mode )"
+.SH "void QClipboard::setData ( TQMimeSource * src, Mode mode )"
Sets the clipboard data to \fIsrc\fR. Ownership of the data is transferred to the clipboard. If you want to remove the data either call clear() or call setData() again with new data.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection.
.PP
-The QDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call QDragObject::drag() on the same object). Any QDragObject placed in the clipboard should have a parent of 0. Do not put QDragMoveEvent or QDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them.
+The TQDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call TQDragObject::drag() on the same object). Any TQDragObject placed in the clipboard should have a parent of 0. Do not put TQDragMoveEvent or TQDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them.
.PP
The setText(), setImage() and setPixmap() functions are simpler wrappers for setting text, image and pixmap data respectively.
.PP
See also data().
-.SH "void QClipboard::setData ( QMimeSource * src )"
+.SH "void QClipboard::setData ( TQMimeSource * src )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::setData() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.
diff --git a/doc/man/man3/tqcolordrag.3qt b/doc/man/man3/tqcolordrag.3qt
index 9fef55e87..16da4ff90 100644
--- a/doc/man/man3/tqcolordrag.3qt
+++ b/doc/man/man3/tqcolordrag.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QColorDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQColorDrag 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
-QColorDrag \- Drag and drop object for transferring colors
+TQColorDrag \- Drag and drop object for transferring colors
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QStoredDrag.
+Inherits TQStoredDrag.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQColorDrag\fR ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
+.BI "\fBTQColorDrag\fR ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQColorDrag\fR ( TQWidget * dragsource = 0, const char * name = 0 )"
+.BI "\fBTQColorDrag\fR ( TQWidget * dragsource = 0, const char * name = 0 )"
.br
.ti -1c
.BI "void \fBsetColor\fR ( const TQColor & col )"
@@ -28,36 +28,36 @@ Inherits QStoredDrag.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "bool \fBcanDecode\fR ( QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( TQMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( QMimeSource * e, TQColor & col )"
+.BI "bool \fBdecode\fR ( TQMimeSource * e, TQColor & col )"
.br
.in -1c
.SH DESCRIPTION
-The QColorDrag class provides a drag and drop object for transferring colors.
+The TQColorDrag class provides a drag and drop object for transferring colors.
.PP
This class provides a drag object which can be used to transfer data about colors for drag and drop and in the clipboard. For example, it is used in QColorDialog.
.PP
The color is set in the constructor but can be changed with setColor().
.PP
-For more information about drag and drop, see the QDragObject class and the drag and drop documentation.
+For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QColorDrag::QColorDrag ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
-Constructs a color drag object with the color \fIcol\fR. Passes \fIdragsource\fR and \fIname\fR to the QStoredDrag constructor.
-.SH "QColorDrag::QColorDrag ( TQWidget * dragsource = 0, const char * name = 0 )"
-Constructs a color drag object with a white color. Passes \fIdragsource\fR and \fIname\fR to the QStoredDrag constructor.
-.SH "bool QColorDrag::canDecode ( QMimeSource * e )\fC [static]\fR"
+.SH "TQColorDrag::TQColorDrag ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
+Constructs a color drag object with the color \fIcol\fR. Passes \fIdragsource\fR and \fIname\fR to the TQStoredDrag constructor.
+.SH "TQColorDrag::TQColorDrag ( TQWidget * dragsource = 0, const char * name = 0 )"
+Constructs a color drag object with a white color. Passes \fIdragsource\fR and \fIname\fR to the TQStoredDrag constructor.
+.SH "bool TQColorDrag::canDecode ( TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the color drag object can decode the mime source \fIe\fR; otherwise returns FALSE.
-.SH "bool QColorDrag::decode ( QMimeSource * e, TQColor & col )\fC [static]\fR"
+.SH "bool TQColorDrag::decode ( TQMimeSource * e, TQColor & col )\fC [static]\fR"
Decodes the mime source \fIe\fR and sets the decoded values to \fIcol\fR.
-.SH "void QColorDrag::setColor ( const TQColor & col )"
+.SH "void TQColorDrag::setColor ( const TQColor & col )"
Sets the color of the color drag to \fIcol\fR.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qcolordrag.html
+.BR http://doc.trolltech.com/tqcolordrag.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/tqdragenterevent.3qt b/doc/man/man3/tqdragenterevent.3qt
index d7cf93416..f9335ef0b 100644
--- a/doc/man/man3/tqdragenterevent.3qt
+++ b/doc/man/man3/tqdragenterevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDragEnterEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDragEnterEvent 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,33 +7,33 @@
.ad l
.nh
.SH NAME
-QDragEnterEvent \- Event which is sent to the widget when a drag and drop first drags onto the widget
+TQDragEnterEvent \- Event which is sent to the widget when a drag and drop first drags onto the widget
.SH SYNOPSIS
\fC#include <ntqevent.h>\fR
.PP
-Inherits QDragMoveEvent.
+Inherits TQDragMoveEvent.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDragEnterEvent\fR ( const QPoint & pos )"
+.BI "\fBTQDragEnterEvent\fR ( const QPoint & pos )"
.br
.in -1c
.SH DESCRIPTION
-The QDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget.
+The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget.
.PP
-This event is always immediately followed by a QDragMoveEvent, so you only need to respond to one or the other event. This class inherits most of its functionality from QDragMoveEvent, which in turn inherits most of its functionality from QDropEvent.
+This event is always immediately followed by a TQDragMoveEvent, so you only need to respond to one or the other event. This class inherits most of its functionality from TQDragMoveEvent, which in turn inherits most of its functionality from TQDropEvent.
.PP
-See also QDragLeaveEvent, QDragMoveEvent, QDropEvent, Drag And Drop Classes, and Event Classes.
+See also TQDragLeaveEvent, TQDragMoveEvent, TQDropEvent, Drag And Drop Classes, and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDragEnterEvent::QDragEnterEvent ( const QPoint & pos )"
-Constructs a QDragEnterEvent entering at the given point, \fIpos\fR.
+.SH "TQDragEnterEvent::TQDragEnterEvent ( const QPoint & pos )"
+Constructs a TQDragEnterEvent entering at the given point, \fIpos\fR.
.PP
-\fBWarning:\fR Do not create a QDragEnterEvent yourself since these
+\fBWarning:\fR Do not create a TQDragEnterEvent yourself since these
objects rely on Qt's internal state.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdragenterevent.html
+.BR http://doc.trolltech.com/tqdragenterevent.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/tqdragleaveevent.3qt b/doc/man/man3/tqdragleaveevent.3qt
index 5ae00034b..412c72eef 100644
--- a/doc/man/man3/tqdragleaveevent.3qt
+++ b/doc/man/man3/tqdragleaveevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDragLeaveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDragLeaveEvent 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
-QDragLeaveEvent \- Event which is sent to the widget when a drag and drop leaves the widget
+TQDragLeaveEvent \- Event which is sent to the widget when a drag and drop leaves the widget
.SH SYNOPSIS
\fC#include <ntqevent.h>\fR
.PP
@@ -16,24 +16,24 @@ Inherits QEvent.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDragLeaveEvent\fR ()"
+.BI "\fBTQDragLeaveEvent\fR ()"
.br
.in -1c
.SH DESCRIPTION
-The QDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget.
+The TQDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget.
.PP
-This event is always preceded by a QDragEnterEvent and a series of QDragMoveEvents. It is not sent if a QDropEvent is sent instead.
+This event is always preceded by a TQDragEnterEvent and a series of TQDragMoveEvents. It is not sent if a TQDropEvent is sent instead.
.PP
-See also QDragEnterEvent, QDragMoveEvent, QDropEvent, Drag And Drop Classes, and Event Classes.
+See also TQDragEnterEvent, TQDragMoveEvent, TQDropEvent, Drag And Drop Classes, and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDragLeaveEvent::QDragLeaveEvent ()"
-Constructs a QDragLeaveEvent.
+.SH "TQDragLeaveEvent::TQDragLeaveEvent ()"
+Constructs a TQDragLeaveEvent.
.PP
-\fBWarning:\fR Do not create a QDragLeaveEvent yourself since these
+\fBWarning:\fR Do not create a TQDragLeaveEvent yourself since these
objects rely on Qt's internal state.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdragleaveevent.html
+.BR http://doc.trolltech.com/tqdragleaveevent.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/tqdragmoveevent.3qt b/doc/man/man3/tqdragmoveevent.3qt
index 3a1b210d8..edb856fb5 100644
--- a/doc/man/man3/tqdragmoveevent.3qt
+++ b/doc/man/man3/tqdragmoveevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDragMoveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDragMoveEvent 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,18 +7,18 @@
.ad l
.nh
.SH NAME
-QDragMoveEvent \- Event which is sent while a drag and drop is in progress
+TQDragMoveEvent \- Event which is sent while a drag and drop is in progress
.SH SYNOPSIS
\fC#include <ntqevent.h>\fR
.PP
-Inherits QDropEvent.
+Inherits TQDropEvent.
.PP
-Inherited by QDragEnterEvent.
+Inherited by TQDragEnterEvent.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDragMoveEvent\fR ( const QPoint & pos, Type type = DragMove )"
+.BI "\fBTQDragMoveEvent\fR ( const QPoint & pos, Type type = DragMove )"
.br
.ti -1c
.BI "QRect \fBanswerRect\fR () const"
@@ -31,34 +31,34 @@ Inherited by QDragEnterEvent.
.br
.in -1c
.SH DESCRIPTION
-The QDragMoveEvent class provides an event which is sent while a drag and drop is in progress.
+The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress.
.PP
When a widget accepts drop events, it will receive this event repeatedly while the drag is within the widget's boundaries. The widget should examine the event to see what data it provides, and accept() the drop if appropriate.
.PP
-Note that this class inherits most of its functionality from QDropEvent.
+Note that this class inherits most of its functionality from TQDropEvent.
.PP
See also Drag And Drop Classes and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDragMoveEvent::QDragMoveEvent ( const QPoint & pos, Type type = DragMove )"
-Creates a QDragMoveEvent for which the mouse is at point \fIpos\fR, and the event is of type \fItype\fR.
+.SH "TQDragMoveEvent::TQDragMoveEvent ( const QPoint & pos, Type type = DragMove )"
+Creates a TQDragMoveEvent for which the mouse is at point \fIpos\fR, and the event is of type \fItype\fR.
.PP
-\fBWarning:\fR Do not create a QDragMoveEvent yourself since these objects rely on Qt's internal state.
-.SH "void QDragMoveEvent::accept ( const QRect & r )"
+\fBWarning:\fR Do not create a TQDragMoveEvent yourself since these objects rely on Qt's internal state.
+.SH "void TQDragMoveEvent::accept ( const QRect & r )"
The same as accept(), but also notifies that future moves will also be acceptable if they remain within the rectangle \fIr\fR on the widget: this can improve performance, but may also be ignored by the underlying system.
.PP
If the rectangle is empty, then drag move events will be sent continuously. This is useful if the source is scrolling in a timer event.
.PP
Examples:
.)l desktop/desktop.cpp and dirview/dirview.cpp.
-.SH "QRect QDragMoveEvent::answerRect () const"
+.SH "QRect TQDragMoveEvent::answerRect () const"
Returns the rectangle for which the acceptance of the move event applies.
-.SH "void QDragMoveEvent::ignore ( const QRect & r )"
+.SH "void TQDragMoveEvent::ignore ( const QRect & r )"
The opposite of accept(const QRect&), i.e. says that moves within rectangle \fIr\fR are not acceptable (will be ignored).
.PP
Example: dirview/dirview.cpp.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdragmoveevent.html
+.BR http://doc.trolltech.com/tqdragmoveevent.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/tqdragobject.3qt b/doc/man/man3/tqdragobject.3qt
index 957780fba..498ef445b 100644
--- a/doc/man/man3/tqdragobject.3qt
+++ b/doc/man/man3/tqdragobject.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDragObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDragObject 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,21 +7,21 @@
.ad l
.nh
.SH NAME
-QDragObject \- Encapsulates MIME-based data transfer
+TQDragObject \- Encapsulates MIME-based data transfer
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits TQObject and QMimeSource.
+Inherits TQObject and TQMimeSource.
.PP
-Inherited by QStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
+Inherited by TQStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDragObject\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBTQDragObject\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "virtual \fB~QDragObject\fR ()"
+.BI "virtual \fB~TQDragObject\fR ()"
.br
.ti -1c
.BI "bool \fBdrag\fR ()"
@@ -67,9 +67,9 @@ Inherited by QStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
.br
.in -1c
.SH DESCRIPTION
-The QDragObject class encapsulates MIME-based data transfer.
+The TQDragObject class encapsulates MIME-based data transfer.
.PP
-QDragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard.
+TQDragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard.
.PP
See the Drag-and-drop documentation for an overview of how to provide drag and drop in your application.
.PP
@@ -79,36 +79,36 @@ The drag() function is used to start a drag operation. You can specify the DragM
.PP
See also Drag And Drop Classes.
.SS "Member Type Documentation"
-.SH "QDragObject::DragMode"
+.SH "TQDragObject::DragMode"
This enum describes the possible drag modes.
.TP
-\fCQDragObject::DragDefault\fR - The mode is determined heuristically.
+\fCTQDragObject::DragDefault\fR - The mode is determined heuristically.
.TP
-\fCQDragObject::DragCopy\fR - The data is copied, never moved.
+\fCTQDragObject::DragCopy\fR - The data is copied, never moved.
.TP
-\fCQDragObject::DragMove\fR - The data is moved, if dragged at all.
+\fCTQDragObject::DragMove\fR - The data is moved, if dragged at all.
.TP
-\fCQDragObject::DragLink\fR - The data is linked, if dragged at all.
+\fCTQDragObject::DragLink\fR - The data is linked, if dragged at all.
.TP
-\fCQDragObject::DragCopyOrMove\fR - The user chooses the mode by using a control key to switch from the default.
+\fCTQDragObject::DragCopyOrMove\fR - The user chooses the mode by using a control key to switch from the default.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDragObject::QDragObject ( TQWidget * dragSource = 0, const char * name = 0 )"
+.SH "TQDragObject::TQDragObject ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR.
.PP
Note that the drag object will be deleted when \fIdragSource\fR is deleted.
-.SH "QDragObject::~QDragObject ()\fC [virtual]\fR"
+.SH "TQDragObject::~TQDragObject ()\fC [virtual]\fR"
Destroys the drag object, canceling any drag and drop operation in which it is involved, and frees up the storage used.
-.SH "bool QDragObject::drag ()"
+.SH "bool TQDragObject::drag ()"
Starts a drag operation using the contents of this object, using DragDefault mode.
.PP
The function returns TRUE if the caller should delete the original copy of the dragged data (but see target()); otherwise returns FALSE.
.PP
-If the drag contains \fIreferences\fR to information (e.g. file names in a QUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source \fImust not\fR delete the files!)
+If the drag contains \fIreferences\fR to information (e.g. file names in a TQUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source \fImust not\fR delete the files!)
.PP
Note that on Windows the drag operation will spin a blocking modal event loop that will not dispatch any TQTimers.
.PP
Example: dirview/dirview.cpp.
-.SH "bool QDragObject::drag ( DragMode mode )\fC [virtual protected]\fR"
+.SH "bool TQDragObject::drag ( DragMode mode )\fC [virtual protected]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Starts a drag operation using the contents of this object.
@@ -117,26 +117,26 @@ At this point, the object becomes owned by Qt, not the application. You should n
.PP
Returns TRUE if the dragged data was dragged as a \fImove\fR, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns FALSE.
.PP
-The \fImode\fR specifies the drag mode (see QDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead.
-.SH "void QDragObject::dragCopy ()"
+The \fImode\fR specifies the drag mode (see TQDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead.
+.SH "void TQDragObject::dragCopy ()"
Starts a drag operation using the contents of this object, using DragCopy mode. Be sure to read the constraints described in drag().
.PP
See also drag(), dragMove(), and dragLink().
.PP
Example: iconview/simple_dd/main.cpp.
-.SH "void QDragObject::dragLink ()"
+.SH "void TQDragObject::dragLink ()"
Starts a drag operation using the contents of this object, using DragLink mode. Be sure to read the constraints described in drag().
.PP
See also drag(), dragCopy(), and dragMove().
-.SH "bool QDragObject::dragMove ()"
+.SH "bool TQDragObject::dragMove ()"
Starts a drag operation using the contents of this object, using DragMove mode. Be sure to read the constraints described in drag().
.PP
See also drag(), dragCopy(), and dragLink().
-.SH "QPixmap QDragObject::pixmap () const"
+.SH "QPixmap TQDragObject::pixmap () const"
Returns the currently set pixmap (which isNull() if none is set).
-.SH "QPoint QDragObject::pixmapHotSpot () const"
+.SH "QPoint TQDragObject::pixmapHotSpot () const"
Returns the currently set pixmap hotspot.
-.SH "void QDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot )\fC [virtual]\fR"
+.SH "void TQDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot )\fC [virtual]\fR"
Set the pixmap \fIpm\fR to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it. For example, cursors on Windows 95 are of limited size.
.PP
The \fIhotspot\fR is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap.
@@ -144,20 +144,20 @@ The \fIhotspot\fR is the point on (or off) the pixmap that should be under the c
\fBWarning:\fR We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases.
.PP
Example: fileiconview/qfileiconview.cpp.
-.SH "void QDragObject::setPixmap ( QPixmap pm )\fC [virtual]\fR"
+.SH "void TQDragObject::setPixmap ( QPixmap pm )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window which they are dragging the data onto.
-.SH "TQWidget * QDragObject::source ()"
+.SH "TQWidget * TQDragObject::source ()"
Returns a pointer to the drag source where this object originated.
-.SH "TQWidget * QDragObject::target ()\fC [static]\fR"
+.SH "TQWidget * TQDragObject::target ()\fC [static]\fR"
After the drag completes, this function will return the TQWidget which received the drop, or 0 if the data was dropped on another application.
.PP
This can be useful for detecting the case where drag and drop is
to and from the same widget.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqdragobject.html
+.BR http://doc.trolltech.com/tqdragobject.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/tqdropevent.3qt b/doc/man/man3/tqdropevent.3qt
index 86abec601..5f66e425e 100644
--- a/doc/man/man3/tqdropevent.3qt
+++ b/doc/man/man3/tqdropevent.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDropEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDropEvent 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,18 +7,18 @@
.ad l
.nh
.SH NAME
-QDropEvent \- Event which is sent when a drag and drop is completed
+TQDropEvent \- Event which is sent when a drag and drop is completed
.SH SYNOPSIS
\fC#include <ntqevent.h>\fR
.PP
-Inherits QEvent and QMimeSource.
+Inherits QEvent and TQMimeSource.
.PP
-Inherited by QDragMoveEvent.
+Inherited by TQDragMoveEvent.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDropEvent\fR ( const QPoint & pos, Type typ = Drop )"
+.BI "\fBTQDropEvent\fR ( const QPoint & pos, Type typ = Drop )"
.br
.ti -1c
.BI "const QPoint & \fBpos\fR () const"
@@ -67,52 +67,52 @@ Inherited by QDragMoveEvent.
.br
.in -1c
.SH DESCRIPTION
-The QDropEvent class provides an event which is sent when a drag and drop is completed.
+The TQDropEvent class provides an event which is sent when a drag and drop is completed.
.PP
-When a widget accepts drop events, it will receive this event if it has accepted the most recent QDragEnterEvent or QDragMoveEvent sent to it.
+When a widget accepts drop events, it will receive this event if it has accepted the most recent TQDragEnterEvent or TQDragMoveEvent sent to it.
.PP
The widget should use data() to extract the data in an appropriate format.
.PP
See also Drag And Drop Classes and Event Classes.
.SS "Member Type Documentation"
-.SH "QDropEvent::Action"
+.SH "TQDropEvent::Action"
This enum describes the action which a source requests that a target perform with dropped data.
.TP
-\fCQDropEvent::Copy\fR - The default action. The source simply uses the data provided in the operation.
+\fCTQDropEvent::Copy\fR - The default action. The source simply uses the data provided in the operation.
.TP
-\fCQDropEvent::Link\fR - The source should somehow create a link to the location specified by the data.
+\fCTQDropEvent::Link\fR - The source should somehow create a link to the location specified by the data.
.TP
-\fCQDropEvent::Move\fR - The source should somehow move the object from the location specified by the data to a new location.
+\fCTQDropEvent::Move\fR - The source should somehow move the object from the location specified by the data to a new location.
.TP
-\fCQDropEvent::Private\fR - The target has special knowledge of the MIME type, which the source should respond to in a similar way to a Copy.
+\fCTQDropEvent::Private\fR - The target has special knowledge of the MIME type, which the source should respond to in a similar way to a Copy.
.TP
-\fCQDropEvent::UserAction\fR - The source and target can co-operate using special actions. This feature is not currently supported.
+\fCTQDropEvent::UserAction\fR - The source and target can co-operate using special actions. This feature is not currently supported.
.PP
-The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see QUriDrag).
+The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see TQUriDrag).
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDropEvent::QDropEvent ( const QPoint & pos, Type typ = Drop )"
+.SH "TQDropEvent::TQDropEvent ( const QPoint & pos, Type typ = Drop )"
Constructs a drop event that drops a drop of type \fItyp\fR on point \fIpos\fR.
-.SH "void QDropEvent::accept ( bool y = TRUE )"
-Call this function to indicate whether the event provided data which your widget processed. Set \fIy\fR to TRUE (the default) if your widget could process the data, otherwise set \fIy\fR to FALSE. To get the data, use encodedData(), or preferably, the decode() methods of existing QDragObject subclasses, such as TQTextDrag::decode(), or your own subclasses.
+.SH "void TQDropEvent::accept ( bool y = TRUE )"
+Call this function to indicate whether the event provided data which your widget processed. Set \fIy\fR to TRUE (the default) if your widget could process the data, otherwise set \fIy\fR to FALSE. To get the data, use encodedData(), or preferably, the decode() methods of existing TQDragObject subclasses, such as TQTextDrag::decode(), or your own subclasses.
.PP
See also acceptAction().
.PP
Example: iconview/simple_dd/main.cpp.
-.SH "void QDropEvent::acceptAction ( bool y = TRUE )"
+.SH "void TQDropEvent::acceptAction ( bool y = TRUE )"
Call this to indicate that the action described by action() is accepted (i.e. if \fIy\fR is TRUE, which is the default), not merely the default copy action. If you call acceptAction(TRUE), there is no need to also call accept(TRUE).
.PP
Examples:
.)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp.
-.SH "Action QDropEvent::action () const"
+.SH "Action TQDropEvent::action () const"
Returns the Action which the target is requesting to be performed with the data. If your application understands the action and can process the supplied data, call acceptAction(); if your application can process the supplied data but can only perform the Copy action, call accept().
.PP
Examples:
.)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp.
-.SH "QByteArray QDropEvent::data ( const char * f ) const"
+.SH "QByteArray TQDropEvent::data ( const char * f ) const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
-Use QDropEvent::encodedData().
-.SH "QByteArray QDropEvent::encodedData ( const char * format ) const\fC [virtual]\fR"
+Use TQDropEvent::encodedData().
+.SH "QByteArray TQDropEvent::encodedData ( const char * format ) const\fC [virtual]\fR"
Returns a byte array containing the drag's data, in \fIformat\fR.
.PP
data() normally needs to get the data from the drag source, which is potentially very slow, so it's advisable to call this function only if you're sure that you will need the data in \fIformat\fR.
@@ -121,8 +121,8 @@ The resulting data will have a size of 0 if the format was not available.
.PP
See also format() and QByteArray::size().
.PP
-Reimplemented from QMimeSource.
-.SH "const char * QDropEvent::format ( int n = 0 ) const\fC [virtual]\fR"
+Reimplemented from TQMimeSource.
+.SH "const char * TQDropEvent::format ( int n = 0 ) const\fC [virtual]\fR"
Returns a string describing one of the available data types for this drag. Common examples are "text/plain" and "image/gif". If \fIn\fR is less than zero or greater than the number of available data types, format() returns 0.
.PP
This function is provided mainly for debugging. Most drop targets will use provides().
@@ -131,40 +131,40 @@ See also data() and provides().
.PP
Example: iconview/main.cpp.
.PP
-Reimplemented from QMimeSource.
-.SH "void QDropEvent::ignore ()"
+Reimplemented from TQMimeSource.
+.SH "void TQDropEvent::ignore ()"
The opposite of accept(), i.e. you have ignored the drop event.
.PP
Example: fileiconview/qfileiconview.cpp.
-.SH "bool QDropEvent::isAccepted () const"
+.SH "bool TQDropEvent::isAccepted () const"
Returns TRUE if the drop target accepts the event; otherwise returns FALSE.
-.SH "bool QDropEvent::isActionAccepted () const"
+.SH "bool TQDropEvent::isActionAccepted () const"
Returns TRUE if the drop action was accepted by the drop site; otherwise returns FALSE.
-.SH "const QPoint & QDropEvent::pos () const"
+.SH "const QPoint & TQDropEvent::pos () const"
Returns the position where the drop was made.
.PP
Example: dirview/dirview.cpp.
-.SH "bool QDropEvent::provides ( const char * mimeType ) const\fC [virtual]\fR"
+.SH "bool TQDropEvent::provides ( const char * mimeType ) const\fC [virtual]\fR"
Returns TRUE if this event provides format \fImimeType\fR; otherwise returns FALSE.
.PP
See also data().
.PP
Example: fileiconview/qfileiconview.cpp.
.PP
-Reimplemented from QMimeSource.
-.SH "void QDropEvent::setAction ( Action a )"
+Reimplemented from TQMimeSource.
+.SH "void TQDropEvent::setAction ( Action a )"
Sets the action to \fIa\fR. This is used internally, you should not need to call this in your code: the \fIsource\fR decides the action, not the target.
-.SH "void QDropEvent::setPoint ( const QPoint & np )"
+.SH "void TQDropEvent::setPoint ( const QPoint & np )"
Sets the drop to happen at point \fInp\fR. You do not normally need to use this as it will be set internally before your widget receives the drop event.
-.SH "TQWidget * QDropEvent::source () const"
+.SH "TQWidget * TQDropEvent::source () const"
If the source of the drag operation is a widget in this application, this function returns that source, otherwise it returns 0. The source of the operation is the first parameter to drag object subclasses.
.PP
This is useful if your widget needs special behavior when dragging to itself, etc.
.PP
-See QDragObject::QDragObject() and subclasses.
+See TQDragObject::TQDragObject() and subclasses.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdropevent.html
+.BR http://doc.trolltech.com/tqdropevent.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 5378a5db7..fe54d3176 100644
--- a/doc/man/man3/tqevent.3qt
+++ b/doc/man/man3/tqevent.3qt
@@ -13,7 +13,7 @@ QEvent \- The base class of all event classes. Event objects contain event param
.PP
Inherits Qt.
.PP
-Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, QTabletEvent, QKeyEvent, QFocusEvent, QPaintEvent, QMoveEvent, QResizeEvent, QCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, QContextMenuEvent, QIMEvent, QDropEvent, QDragLeaveEvent, QChildEvent, and QCustomEvent.
+Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, QTabletEvent, QKeyEvent, QFocusEvent, QPaintEvent, QMoveEvent, QResizeEvent, QCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, QContextMenuEvent, QIMEvent, TQDropEvent, TQDragLeaveEvent, QChildEvent, and QCustomEvent.
.PP
.SS "Public Members"
.in +1c
@@ -141,13 +141,13 @@ This enum type defines the valid event types in Qt. The event types and the spec
.TP
\fCQEvent::SockAct\fR - Socket activated, used to implement QSocketNotifier.
.TP
-\fCQEvent::DragEnter\fR - A drag-and-drop enters widget, QDragEnterEvent.
+\fCQEvent::DragEnter\fR - A drag-and-drop enters widget, TQDragEnterEvent.
.TP
-\fCQEvent::DragMove\fR - A drag-and-drop is in progress, QDragMoveEvent.
+\fCQEvent::DragMove\fR - A drag-and-drop is in progress, TQDragMoveEvent.
.TP
-\fCQEvent::DragLeave\fR - A drag-and-drop leaves widget, QDragLeaveEvent.
+\fCQEvent::DragLeave\fR - A drag-and-drop leaves widget, TQDragLeaveEvent.
.TP
-\fCQEvent::Drop\fR - A drag-and-drop is completed, QDropEvent.
+\fCQEvent::Drop\fR - A drag-and-drop is completed, TQDropEvent.
.TP
\fCQEvent::DragResponse\fR - Internal event used by TQt on some platforms.
.TP
diff --git a/doc/man/man3/tqicondrag.3qt b/doc/man/man3/tqicondrag.3qt
index 26bf7bdef..203a15b4a 100644
--- a/doc/man/man3/tqicondrag.3qt
+++ b/doc/man/man3/tqicondrag.3qt
@@ -11,7 +11,7 @@ TQIconDrag \- Supports drag and drop operations within a TQIconView
.SH SYNOPSIS
\fC#include <tqiconview.h>\fR
.PP
-Inherits QDragObject.
+Inherits TQDragObject.
.PP
.SS "Public Members"
.in +1c
@@ -31,7 +31,7 @@ Inherits QDragObject.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "bool \fBcanDecode\fR ( QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( TQMimeSource * e )"
.br
.in -1c
.SH DESCRIPTION
@@ -41,11 +41,11 @@ A TQIconDrag object is used to maintain information about the positions of dragg
.PP
If you want to use the extended drag-and-drop functionality of TQIconView, create a TQIconDrag object in a reimplementation of TQIconView::dragObject(). Then create a TQIconDragItem for each item which should be dragged, set the data it represents with TQIconDragItem::setData(), and add each TQIconDragItem to the drag object using append().
.PP
-The data in TQIconDragItems is stored in a QByteArray and is mime-typed (see QMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from TQIconDrag and reimplement format(), encodedData() and canDecode().
+The data in TQIconDragItems is stored in a QByteArray and is mime-typed (see TQMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from TQIconDrag and reimplement format(), encodedData() and canDecode().
.PP
The fileiconview example program demonstrates the use of the TQIconDrag class including subclassing and reimplementing dragObject(), format(), encodedData() and canDecode(). See the files \fCqt/examples/fileiconview/qfileiconview.h\fR and \fCqt/examples/fileiconview/qfileiconview.cpp\fR.
.PP
-See also QMimeSource::format() and Drag And Drop Classes.
+See also TQMimeSource::format() and Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "TQIconDrag::TQIconDrag ( TQWidget * dragSource, const char * name = 0 )"
Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR.
@@ -59,7 +59,7 @@ Append the TQIconDragItem, \fIi\fR, to the TQIconDrag object's list of items. Yo
See also TQIconDragItem.
.PP
Example: fileiconview/qfileiconview.cpp.
-.SH "bool TQIconDrag::canDecode ( QMimeSource * e )\fC [static]\fR"
+.SH "bool TQIconDrag::canDecode ( TQMimeSource * e )\fC [static]\fR"
Returns TRUE if \fIe\fR can be decoded by the TQIconDrag, otherwise return FALSE.
.PP
Example: fileiconview/qfileiconview.cpp.
@@ -68,7 +68,7 @@ Returns the encoded data of the drag object if \fImime\fR is application/x-qicon
.PP
Example: fileiconview/qfileiconview.cpp.
.PP
-Reimplemented from QMimeSource.
+Reimplemented from TQMimeSource.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/tqicondrag.html
diff --git a/doc/man/man3/tqiconview.3qt b/doc/man/man3/tqiconview.3qt
index 779f45cc6..36090a06d 100644
--- a/doc/man/man3/tqiconview.3qt
+++ b/doc/man/man3/tqiconview.3qt
@@ -247,7 +247,7 @@ Inherits QScrollView.
.BI "void \fBcontextMenuRequested\fR ( TQIconViewItem * item, const QPoint & pos )"
.br
.ti -1c
-.BI "void \fBdropped\fR ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
+.BI "void \fBdropped\fR ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
.br
.ti -1c
.BI "void \fBmoved\fR ()"
@@ -325,7 +325,7 @@ Inherits QScrollView.
.BI "virtual void \fBdrawRubber\fR ( QPainter * p )"
.br
.ti -1c
-.BI "virtual QDragObject * \fBdragObject\fR ()"
+.BI "virtual TQDragObject * \fBdragObject\fR ()"
.br
.ti -1c
.BI "virtual void \fBstartDrag\fR ()"
@@ -419,7 +419,7 @@ The simple approach to dragging items out of the icon view is to subclass TQIcon
.PP
.nf
.br
- QDragObject *MyIconView::dragObject()
+ TQDragObject *MyIconView::dragObject()
.br
{
.br
@@ -429,13 +429,13 @@ The simple approach to dragging items out of the icon view is to subclass TQIcon
.br
.fi
.PP
-In this example we create a TQTextDrag object, (derived from QDragObject), containing the item's label and return it as the drag object. We could just as easily have created a TQImageDrag from the item's pixmap and returned that instead.
+In this example we create a TQTextDrag object, (derived from TQDragObject), containing the item's label and return it as the drag object. We could just as easily have created a TQImageDrag from the item's pixmap and returned that instead.
.PP
-TQIconViews and their TQIconViewItems can also be the targets of drag and drops. To make the TQIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a QDragEvent and a TQValueList of TQIconDragItems. To make a TQIconViewItem into a drop target subclass TQIconViewItem and reimplement TQIconViewItem::acceptDrop() and TQIconViewItem::dropped().
+TQIconViews and their TQIconViewItems can also be the targets of drag and drops. To make the TQIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a TQDragEvent and a TQValueList of TQIconDragItems. To make a TQIconViewItem into a drop target subclass TQIconViewItem and reimplement TQIconViewItem::acceptDrop() and TQIconViewItem::dropped().
.PP
.nf
.br
- bool MyIconViewItem::acceptDrop( const QMimeSource *mime ) const
+ bool MyIconViewItem::acceptDrop( const TQMimeSource *mime ) const
.br
{
.br
@@ -448,7 +448,7 @@ TQIconViews and their TQIconViewItems can also be the targets of drag and drops.
}
.br
.br
- void MyIconViewItem::dropped( QDropEvent *evt, const TQValueList<TQIconDragItem>& )
+ void MyIconViewItem::dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& )
.br
{
.br
@@ -573,8 +573,8 @@ See also setCurrentItem(), firstItem(), and lastItem().
Performs autoscrolling when selecting multiple icons with the rubber band.
.SH "void TQIconView::doubleClicked ( TQIconViewItem * item )\fC [signal]\fR"
This signal is emitted when the user double-clicks on \fIitem\fR.
-.SH "QDragObject * TQIconView::dragObject ()\fC [virtual protected]\fR"
-Returns the QDragObject that should be used for drag-and-drop. This function is called by the icon view when starting a drag to get the dragobject that should be used for the drag. Subclasses may reimplement this.
+.SH "TQDragObject * TQIconView::dragObject ()\fC [virtual protected]\fR"
+Returns the TQDragObject that should be used for drag-and-drop. This function is called by the icon view when starting a drag to get the dragobject that should be used for the drag. Subclasses may reimplement this.
.PP
See also TQIconDrag.
.PP
@@ -588,7 +588,7 @@ The default implementation fills \fIr\fR with the viewport's backgroundBrush().
See also contentsX, contentsY, and drawContents().
.SH "void TQIconView::drawRubber ( QPainter * p )\fC [virtual protected]\fR"
Draws the rubber band using the painter \fIp\fR.
-.SH "void TQIconView::dropped ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [signal]\fR"
+.SH "void TQIconView::dropped ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [signal]\fR"
This signal is emitted when a drop event occurs in the viewport (but not on any icon) which the icon view itself can't handle.
.PP
\fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data using TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you have to decode the data in \fIe\fR and work with that.
diff --git a/doc/man/man3/tqiconviewitem.3qt b/doc/man/man3/tqiconviewitem.3qt
index e0d995e36..2206b962b 100644
--- a/doc/man/man3/tqiconviewitem.3qt
+++ b/doc/man/man3/tqiconviewitem.3qt
@@ -148,7 +148,7 @@ Inherits Qt.
.BI "bool \fBintersects\fR ( const QRect & r ) const"
.br
.ti -1c
-.BI "virtual bool \fBacceptDrop\fR ( const QMimeSource * mime ) const"
+.BI "virtual bool \fBacceptDrop\fR ( const TQMimeSource * mime ) const"
.br
.ti -1c
.BI "void \fBrename\fR ()"
@@ -193,7 +193,7 @@ Inherits Qt.
.BI "virtual void \fBpaintFocus\fR ( QPainter * p, const QColorGroup & cg )"
.br
.ti -1c
-.BI "virtual void \fBdropped\fR ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
+.BI "virtual void \fBdropped\fR ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
.br
.ti -1c
.BI "virtual void \fBdragEntered\fR ()"
@@ -282,8 +282,8 @@ Constructs an icon view item and inserts it into the icon view \fIparent\fR usin
Constructs an icon view item and inserts it into the icon view \fIparent\fR using \fItext\fR as the text and \fIpicture\fR as the icon, after the icon view item \fIafter\fR.
.SH "TQIconViewItem::~TQIconViewItem ()\fC [virtual]\fR"
Destroys the icon view item and tells the parent icon view that the item has been destroyed.
-.SH "bool TQIconViewItem::acceptDrop ( const QMimeSource * mime ) const\fC [virtual]\fR"
-Returns TRUE if you can drop things with a QMimeSource of \fImime\fR onto this item; otherwise returns FALSE.
+.SH "bool TQIconViewItem::acceptDrop ( const TQMimeSource * mime ) const\fC [virtual]\fR"
+Returns TRUE if you can drop things with a TQMimeSource of \fImime\fR onto this item; otherwise returns FALSE.
.PP
The default implementation always returns FALSE. You must subclass TQIconViewItem and reimplement acceptDrop() to accept drops.
.PP
@@ -333,7 +333,7 @@ Example: fileiconview/qfileiconview.cpp.
Returns TRUE if the user is allowed to drop something onto the item; otherwise returns FALSE.
.PP
See also setDropEnabled().
-.SH "void TQIconViewItem::dropped ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR"
+.SH "void TQIconViewItem::dropped ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR"
This function is called when something is dropped on the item. \fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data by calling TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you must decode the data in \fIe\fR and work with that.
.PP
The default implementation does nothing; subclasses may reimplement this function.
diff --git a/doc/man/man3/tqimage.3qt b/doc/man/man3/tqimage.3qt
index 5d6dcf2bc..2057a1b87 100644
--- a/doc/man/man3/tqimage.3qt
+++ b/doc/man/man3/tqimage.3qt
@@ -619,7 +619,7 @@ See also invertPixels(), depth(), hasAlphaBuffer(), and create().
.SH "TQImage TQImage::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to an image.
.PP
-See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
+See also TQMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.SH "bool TQImage::hasAlphaBuffer () const"
Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE.
.PP
diff --git a/doc/man/man3/tqimagedrag.3qt b/doc/man/man3/tqimagedrag.3qt
index 3db69ee29..de4be4dfd 100644
--- a/doc/man/man3/tqimagedrag.3qt
+++ b/doc/man/man3/tqimagedrag.3qt
@@ -9,9 +9,9 @@
.SH NAME
TQImageDrag \- Drag and drop object for transferring images
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QDragObject.
+Inherits TQDragObject.
.PP
.SS "Public Members"
.in +1c
@@ -31,13 +31,13 @@ Inherits QDragObject.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "bool \fBcanDecode\fR ( const QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, TQImage & img )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, TQImage & img )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, QPixmap & pm )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, QPixmap & pm )"
.br
.in -1c
.SH DESCRIPTION
@@ -45,7 +45,7 @@ The TQImageDrag class provides a drag and drop object for transferring images.
.PP
Images are offered to the receiving application in multiple formats, determined by Qt's output formats.
.PP
-For more information about drag and drop, see the QDragObject class and the drag and drop documentation.
+For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
@@ -55,19 +55,19 @@ Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\
Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "TQImageDrag::~TQImageDrag ()"
Destroys the image drag object and frees up all allocated resources.
-.SH "bool TQImageDrag::canDecode ( const QMimeSource * e )\fC [static]\fR"
+.SH "bool TQImageDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE.
.PP
See also decode().
.PP
Example: desktop/desktop.cpp.
-.SH "bool TQImageDrag::decode ( const QMimeSource * e, TQImage & img )\fC [static]\fR"
+.SH "bool TQImageDrag::decode ( const TQMimeSource * e, TQImage & img )\fC [static]\fR"
Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP
See also canDecode().
.PP
Example: desktop/desktop.cpp.
-.SH "bool TQImageDrag::decode ( const QMimeSource * e, QPixmap & pm )\fC [static]\fR"
+.SH "bool TQImageDrag::decode ( const TQMimeSource * e, QPixmap & pm )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE.
diff --git a/doc/man/man3/tqlistview.3qt b/doc/man/man3/tqlistview.3qt
index c55052abb..261b22c2b 100644
--- a/doc/man/man3/tqlistview.3qt
+++ b/doc/man/man3/tqlistview.3qt
@@ -307,7 +307,7 @@ Inherits QScrollView.
.BI "void \fBcollapsed\fR ( QListViewItem * item )"
.br
.ti -1c
-.BI "void \fBdropped\fR ( QDropEvent * e )"
+.BI "void \fBdropped\fR ( TQDropEvent * e )"
.br
.ti -1c
.BI "void \fBitemRenamed\fR ( QListViewItem * item, int col, const TQString & text )"
@@ -370,7 +370,7 @@ Inherits QScrollView.
.BI "virtual void \fBcontentsMouseDoubleClickEvent\fR ( QMouseEvent * e )"
.br
.ti -1c
-.BI "virtual QDragObject * \fBdragObject\fR ()"
+.BI "virtual TQDragObject * \fBdragObject\fR ()"
.br
.ti -1c
.BI "virtual void \fBstartDrag\fR ()"
@@ -654,15 +654,15 @@ This signal is emitted whenever an item is double-clicked. It's emitted on the s
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. (use doubleClicked( QListViewItem *, const QPoint&, int ))
.PP
This signal is emitted whenever an item is double-clicked. It's emitted on the second button press, not the second button release. \fIitem\fR is the list view item on which the user did the double-click.
-.SH "QDragObject * QListView::dragObject ()\fC [virtual protected]\fR"
+.SH "TQDragObject * QListView::dragObject ()\fC [virtual protected]\fR"
If the user presses the mouse on an item and starts moving the mouse, and the item allow dragging (see QListViewItem::setDragEnabled()), this function is called to get a drag object and a drag is started unless dragObject() returns 0.
.PP
-By default this function returns 0. You should reimplement it and create a QDragObject depending on the selected items.
+By default this function returns 0. You should reimplement it and create a TQDragObject depending on the selected items.
.SH "void QListView::drawContentsOffset ( QPainter * p, int ox, int oy, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
Calls QListViewItem::paintCell() and QListViewItem::paintBranches() as necessary for all list view items that require repainting in the \fIcw\fR pixels wide and \fIch\fR pixels high bounding rectangle starting at position \fIcx\fR, \fIcy\fR with offset \fIox\fR, \fIoy\fR. Uses the painter \fIp\fR.
.PP
Reimplemented from QScrollView.
-.SH "void QListView::dropped ( QDropEvent * e )\fC [signal]\fR"
+.SH "void QListView::dropped ( TQDropEvent * e )\fC [signal]\fR"
This signal is emitted, when a drop event occurred on the viewport (not onto an item).
.PP
\fIe\fR provides all the information about the drop.
diff --git a/doc/man/man3/tqlistviewitem.3qt b/doc/man/man3/tqlistviewitem.3qt
index 46d85ae01..e641f8861 100644
--- a/doc/man/man3/tqlistviewitem.3qt
+++ b/doc/man/man3/tqlistviewitem.3qt
@@ -174,7 +174,7 @@ Inherited by QCheckListItem.
.BI "bool \fBdropEnabled\fR () const"
.br
.ti -1c
-.BI "virtual bool \fBacceptDrop\fR ( const QMimeSource * mime ) const"
+.BI "virtual bool \fBacceptDrop\fR ( const TQMimeSource * mime ) const"
.br
.ti -1c
.BI "void \fBsetVisible\fR ( bool b )"
@@ -222,7 +222,7 @@ Inherited by QCheckListItem.
.BI "bool \fBactivatedPos\fR ( QPoint & pos )"
.br
.ti -1c
-.BI "virtual void \fBdropped\fR ( QDropEvent * e )"
+.BI "virtual void \fBdropped\fR ( TQDropEvent * e )"
.br
.ti -1c
.BI "virtual void \fBdragEntered\fR ()"
@@ -346,8 +346,8 @@ Note that the order is changed according to QListViewItem::key() unless the list
See also setText().
.SH "QListViewItem::~QListViewItem ()\fC [virtual]\fR"
Destroys the item, deleting all its children and freeing up all allocated resources.
-.SH "bool QListViewItem::acceptDrop ( const QMimeSource * mime ) const\fC [virtual]\fR"
-Returns TRUE if the item can accept drops of type QMimeSource \fImime\fR; otherwise returns FALSE.
+.SH "bool QListViewItem::acceptDrop ( const TQMimeSource * mime ) const\fC [virtual]\fR"
+Returns TRUE if the item can accept drops of type TQMimeSource \fImime\fR; otherwise returns FALSE.
.PP
The default implementation does nothing and returns FALSE. A subclass must reimplement this to accept drops.
.SH "void QListViewItem::activate ()\fC [virtual protected]\fR"
@@ -415,7 +415,7 @@ The default implementation does nothing, subclasses may need to reimplement this
Returns TRUE if this item accepts drops; otherwise returns FALSE.
.PP
See also setDropEnabled() and acceptDrop().
-.SH "void QListViewItem::dropped ( QDropEvent * e )\fC [virtual protected]\fR"
+.SH "void QListViewItem::dropped ( TQDropEvent * e )\fC [virtual protected]\fR"
This function is called when something was dropped on the item. \fIe\fR contains all the information about the drop.
.PP
The default implementation does nothing, subclasses may need to reimplement this function.
diff --git a/doc/man/man3/tqmacmime.3qt b/doc/man/man3/tqmacmime.3qt
index fd0740e21..3ba9ef959 100644
--- a/doc/man/man3/tqmacmime.3qt
+++ b/doc/man/man3/tqmacmime.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QMacMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQMacMime 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,17 +7,17 @@
.ad l
.nh
.SH NAME
-QMacMime \- Maps open-standard MIME to Mac flavors
+TQMacMime \- Maps open-standard MIME to Mac flavors
.SH SYNOPSIS
-\fC#include <ntqmime.h>\fR
+\fC#include <tqmime.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQMacMime\fR ( char t )"
+.BI "\fBTQMacMime\fR ( char t )"
.br
.ti -1c
-.BI "virtual \fB~QMacMime\fR ()"
+.BI "virtual \fB~TQMacMime\fR ()"
.br
.ti -1c
.BI "virtual const char * \fBconvertorName\fR () = 0"
@@ -47,21 +47,21 @@ QMacMime \- Maps open-standard MIME to Mac flavors
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "TQPtrList<QMacMime> \fBall\fR ( QMacMimeType t )"
+.BI "TQPtrList<TQMacMime> \fBall\fR ( TQMacMimeType t )"
.br
.ti -1c
-.BI "QMacMime * \fBconvertor\fR ( QMacMimeType t, const char * mime, int flav )"
+.BI "TQMacMime * \fBconvertor\fR ( TQMacMimeType t, const char * mime, int flav )"
.br
.ti -1c
-.BI "const char * \fBflavorToMime\fR ( QMacMimeType t, int flav )"
+.BI "const char * \fBflavorToMime\fR ( TQMacMimeType t, int flav )"
.br
.in -1c
.SH DESCRIPTION
-The QMacMime class maps open-standard MIME to Mac flavors.
+The TQMacMime class maps open-standard MIME to Mac flavors.
.PP
Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Mac although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in Mac formats.
.PP
-By instantiating subclasses of QMacMime that provide conversions between Mac flavors and MIME formats, you can convert proprietary clipboard formats to MIME formats.
+By instantiating subclasses of TQMacMime that provide conversions between Mac flavors and MIME formats, you can convert proprietary clipboard formats to MIME formats.
.PP
Qt has predefined support for the following Mac flavors:
.TP
@@ -71,61 +71,61 @@ kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain"
.TP
kScrapFlavorTypePicture - converted to "image/format", where format is a TQt image format, and supported by TQImageDrag.
.TP
-kDragFlavorTypeHFS - converted to "text/uri-list", and supported by QUriDrag.
+kDragFlavorTypeHFS - converted to "text/uri-list", and supported by TQUriDrag.
.PP
You can check if a MIME type is convertible using canConvert() and can perform conversions with convertToMime() and convertFromMime().
.PP
See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QMacMime::QMacMime ( char t )"
+.SH "TQMacMime::TQMacMime ( char t )"
Constructs a new conversion object of type \fIt\fR, adding it to the globally accessed list of available convertors.
-.SH "QMacMime::~QMacMime ()\fC [virtual]\fR"
+.SH "TQMacMime::~TQMacMime ()\fC [virtual]\fR"
Destroys a conversion object, removing it from the global list of available convertors.
-.SH "TQPtrList<QMacMime> QMacMime::all ( QMacMimeType t )\fC [static]\fR"
-Returns a list of all currently defined QMacMime objects of type \fIt\fR.
-.SH "bool QMacMime::canConvert ( const char * mime, int flav )\fC [pure virtual]\fR"
+.SH "TQPtrList<TQMacMime> TQMacMime::all ( TQMacMimeType t )\fC [static]\fR"
+Returns a list of all currently defined TQMacMime objects of type \fIt\fR.
+.SH "bool TQMacMime::canConvert ( const char * mime, int flav )\fC [pure virtual]\fR"
Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIflav\fR; otherwise returns FALSE.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "TQValueList<QByteArray> QMacMime::convertFromMime ( QByteArray data, const char * mime, int flav )\fC [pure virtual]\fR"
+.SH "TQValueList<QByteArray> TQMacMime::convertFromMime ( QByteArray data, const char * mime, int flav )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from MIME type \fImime\fR to Mac flavor \fIflav\fR.
.PP
Note that Mac flavors must all be self-terminating. The return value may contain trailing data.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "QByteArray QMacMime::convertToMime ( TQValueList<QByteArray> data, const char * mime, int flav )\fC [pure virtual]\fR"
+.SH "QByteArray TQMacMime::convertToMime ( TQValueList<QByteArray> data, const char * mime, int flav )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from Mac flavor \fIflav\fR to MIME type \fImime\fR.
.PP
Note that Mac flavors must all be self-terminating. The input \fIdata\fR may contain trailing data.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "QMacMime * QMacMime::convertor ( QMacMimeType t, const char * mime, int flav )\fC [static]\fR"
-Returns the most-recently created QMacMime of type \fIt\fR that can convert between the \fImime\fR and \fIflav\fR formats. Returns 0 if no such convertor exists.
-.SH "const char * QMacMime::convertorName ()\fC [pure virtual]\fR"
+.SH "TQMacMime * TQMacMime::convertor ( TQMacMimeType t, const char * mime, int flav )\fC [static]\fR"
+Returns the most-recently created TQMacMime of type \fIt\fR that can convert between the \fImime\fR and \fIflav\fR formats. Returns 0 if no such convertor exists.
+.SH "const char * TQMacMime::convertorName ()\fC [pure virtual]\fR"
Returns a name for the convertor.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QMacMime::countFlavors ()\fC [pure virtual]\fR"
+.SH "int TQMacMime::countFlavors ()\fC [pure virtual]\fR"
Returns the number of Mac flavors supported by this convertor.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QMacMime::flavor ( int index )\fC [pure virtual]\fR"
+.SH "int TQMacMime::flavor ( int index )\fC [pure virtual]\fR"
Returns the Mac flavor supported by this convertor that is ordinarily at position \fIindex\fR. This means that flavor(0) returns the first Mac flavor supported, and flavor(countFlavors()-1) returns the last. If \fIindex\fR is out of range the return value is undefined.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QMacMime::flavorFor ( const char * mime )\fC [pure virtual]\fR"
+.SH "int TQMacMime::flavorFor ( const char * mime )\fC [pure virtual]\fR"
Returns the Mac flavor used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "const char * QMacMime::flavorToMime ( QMacMimeType t, int flav )\fC [static]\fR"
+.SH "const char * TQMacMime::flavorToMime ( TQMacMimeType t, int flav )\fC [static]\fR"
Returns a MIME type of type \fIt\fR for \fIflav\fR, or 0 if none exists.
-.SH "const char * QMacMime::mimeFor ( int flav )\fC [pure virtual]\fR"
+.SH "const char * TQMacMime::mimeFor ( int flav )\fC [pure virtual]\fR"
Returns the MIME type used for Mac flavor \fIflav\fR, or 0 if this convertor does not support \fIflav\fR.
.PP
All subclasses must reimplement this pure virtual function.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qmacmime.html
+.BR http://doc.trolltech.com/tqmacmime.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/tqmimesource.3qt b/doc/man/man3/tqmimesource.3qt
index 566c9df61..fc3ab2c9f 100644
--- a/doc/man/man3/tqmimesource.3qt
+++ b/doc/man/man3/tqmimesource.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QMimeSource 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQMimeSource 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
-QMimeSource \- Abstraction of objects which provide formatted data of a certain MIME type
+TQMimeSource \- Abstraction of objects which provide formatted data of a certain MIME type
.SH SYNOPSIS
-\fC#include <ntqmime.h>\fR
+\fC#include <tqmime.h>\fR
.PP
-Inherited by QDragObject and QDropEvent.
+Inherited by TQDragObject and TQDropEvent.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQMimeSource\fR ()"
+.BI "\fBTQMimeSource\fR ()"
.br
.ti -1c
-.BI "virtual \fB~QMimeSource\fR ()"
+.BI "virtual \fB~TQMimeSource\fR ()"
.br
.ti -1c
.BI "virtual const char * \fBformat\fR ( int i = 0 ) const = 0"
@@ -35,41 +35,41 @@ Inherited by QDragObject and QDropEvent.
.br
.in -1c
.SH DESCRIPTION
-The QMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type.
+The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type.
.PP
Drag-and-drop and clipboard use this abstraction.
.PP
See also IANA list of MIME media types, Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QMimeSource::QMimeSource ()"
+.SH "TQMimeSource::TQMimeSource ()"
Constructs a mime source and assigns a globally unique serial number to it.
.PP
See also serialNumber().
-.SH "QMimeSource::~QMimeSource ()\fC [virtual]\fR"
+.SH "TQMimeSource::~TQMimeSource ()\fC [virtual]\fR"
Provided to ensure that subclasses destroy themselves correctly.
-.SH "QByteArray QMimeSource::encodedData ( const char * ) const\fC [pure virtual]\fR"
+.SH "QByteArray TQMimeSource::encodedData ( const char * ) const\fC [pure virtual]\fR"
Returns the encoded data of this object in the specified MIME format.
.PP
Subclasses must reimplement this function.
.PP
-Reimplemented in QStoredDrag, QDropEvent, and TQIconDrag.
-.SH "const char * QMimeSource::format ( int i = 0 ) const\fC [pure virtual]\fR"
+Reimplemented in TQStoredDrag, TQDropEvent, and TQIconDrag.
+.SH "const char * TQMimeSource::format ( int i = 0 ) const\fC [pure virtual]\fR"
Returns the \fIi\fR-th supported MIME format, or 0.
.PP
-Reimplemented in QDropEvent.
-.SH "bool QMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR"
+Reimplemented in TQDropEvent.
+.SH "bool TQMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR"
Returns TRUE if the object can provide the data in format \fImimeType\fR; otherwise returns FALSE.
.PP
-If you inherit from QMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as TQTextDrag::canDecode() and TQImageDrag::canDecode().
+If you inherit from TQMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as TQTextDrag::canDecode() and TQImageDrag::canDecode().
.PP
Example: iconview/simple_dd/main.cpp.
.PP
-Reimplemented in QDropEvent.
-.SH "int QMimeSource::serialNumber () const"
+Reimplemented in TQDropEvent.
+.SH "int TQMimeSource::serialNumber () const"
Returns the mime source's globally unique serial number.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qmimesource.html
+.BR http://doc.trolltech.com/tqmimesource.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/tqmimesourcefactory.3qt b/doc/man/man3/tqmimesourcefactory.3qt
index 1ca7c8d7c..2b5370533 100644
--- a/doc/man/man3/tqmimesourcefactory.3qt
+++ b/doc/man/man3/tqmimesourcefactory.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QMimeSourceFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQMimeSourceFactory 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,26 +7,26 @@
.ad l
.nh
.SH NAME
-QMimeSourceFactory \- Extensible provider of mime-typed data
+TQMimeSourceFactory \- Extensible provider of mime-typed data
.SH SYNOPSIS
-\fC#include <ntqmime.h>\fR
+\fC#include <tqmime.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQMimeSourceFactory\fR ()"
+.BI "\fBTQMimeSourceFactory\fR ()"
.br
.ti -1c
-.BI "virtual \fB~QMimeSourceFactory\fR ()"
+.BI "virtual \fB~TQMimeSourceFactory\fR ()"
.br
.ti -1c
-.BI "virtual const QMimeSource * \fBdata\fR ( const TQString & abs_name ) const"
+.BI "virtual const TQMimeSource * \fBdata\fR ( const TQString & abs_name ) const"
.br
.ti -1c
.BI "virtual TQString \fBmakeAbsolute\fR ( const TQString & abs_or_rel_name, const TQString & context ) const"
.br
.ti -1c
-.BI "const QMimeSource * \fBdata\fR ( const TQString & abs_or_rel_name, const TQString & context ) const"
+.BI "const TQMimeSource * \fBdata\fR ( const TQString & abs_or_rel_name, const TQString & context ) const"
.br
.ti -1c
.BI "virtual void \fBsetText\fR ( const TQString & abs_name, const TQString & text )"
@@ -38,7 +38,7 @@ QMimeSourceFactory \- Extensible provider of mime-typed data
.BI "virtual void \fBsetPixmap\fR ( const TQString & abs_name, const QPixmap & pixmap )"
.br
.ti -1c
-.BI "virtual void \fBsetData\fR ( const TQString & abs_name, QMimeSource * data )"
+.BI "virtual void \fBsetData\fR ( const TQString & abs_name, TQMimeSource * data )"
.br
.ti -1c
.BI "virtual void \fBsetFilePath\fR ( const TQStringList & path )"
@@ -56,29 +56,29 @@ QMimeSourceFactory \- Extensible provider of mime-typed data
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "QMimeSourceFactory * \fBdefaultFactory\fR ()"
+.BI "TQMimeSourceFactory * \fBdefaultFactory\fR ()"
.br
.ti -1c
-.BI "void \fBsetDefaultFactory\fR ( QMimeSourceFactory * factory )"
+.BI "void \fBsetDefaultFactory\fR ( TQMimeSourceFactory * factory )"
.br
.ti -1c
-.BI "QMimeSourceFactory * \fBtakeDefaultFactory\fR ()"
+.BI "TQMimeSourceFactory * \fBtakeDefaultFactory\fR ()"
.br
.ti -1c
-.BI "void \fBaddFactory\fR ( QMimeSourceFactory * f )"
+.BI "void \fBaddFactory\fR ( TQMimeSourceFactory * f )"
.br
.ti -1c
-.BI "void \fBremoveFactory\fR ( QMimeSourceFactory * f )"
+.BI "void \fBremoveFactory\fR ( TQMimeSourceFactory * f )"
.br
.in -1c
.SH DESCRIPTION
-The QMimeSourceFactory class is an extensible provider of mime-typed data.
+The TQMimeSourceFactory class is an extensible provider of mime-typed data.
.PP
-A QMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a QMimeSource object which can be examined and converted to concrete data types by functions such as TQImageDrag::canDecode() and TQImageDrag::decode().
+A TQMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a TQMimeSource object which can be examined and converted to concrete data types by functions such as TQImageDrag::canDecode() and TQImageDrag::decode().
.PP
-The base QMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters).
+The base TQMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters).
.PP
-The rich text widgets, TQTextEdit and TQTextBrowser, use QMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as QLabel, QWhatsThis or QMessageBox) always use the default factory.
+The rich text widgets, TQTextEdit and TQTextBrowser, use TQMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as QLabel, QWhatsThis or QMessageBox) always use the default factory.
.PP
A factory can also be used as a container to store data associated with a name. This technique is useful whenever rich text contains images that are stored in the program itself, not loaded from the hard disk. Your program may, for example, define some image data as:
.PP
@@ -98,7 +98,7 @@ To be able to use this image within some rich text, for example inside a QLabel,
.PP
.nf
.br
- QMimeSourceFactory::defaultFactory()->setImage( "myimage", TQImage(myimage_data) );
+ TQMimeSourceFactory::defaultFactory()->setImage( "myimage", TQImage(myimage_data) );
.br
.fi
.PP
@@ -120,25 +120,25 @@ When no longer needed, you can clear the data from the factory:
.br
delete label;
.br
- QMimeSourceFactory::defaultFactory()->setData( "myimage", 0 );
+ TQMimeSourceFactory::defaultFactory()->setData( "myimage", 0 );
.br
.fi
.PP
See also Environment Classes and Input/Output and Networking.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QMimeSourceFactory::QMimeSourceFactory ()"
-Constructs a QMimeSourceFactory that has no file path and no stored content.
-.SH "QMimeSourceFactory::~QMimeSourceFactory ()\fC [virtual]\fR"
-Destroys the QMimeSourceFactory, deleting all stored content.
-.SH "void QMimeSourceFactory::addFactory ( QMimeSourceFactory * f )\fC [static]\fR"
-Adds the QMimeSourceFactory \fIf\fR to the list of available mimesource factories. If the defaultFactory() can't resolve a data() it iterates over the list of installed mimesource factories until the data can be resolved.
+.SH "TQMimeSourceFactory::TQMimeSourceFactory ()"
+Constructs a TQMimeSourceFactory that has no file path and no stored content.
+.SH "TQMimeSourceFactory::~TQMimeSourceFactory ()\fC [virtual]\fR"
+Destroys the TQMimeSourceFactory, deleting all stored content.
+.SH "void TQMimeSourceFactory::addFactory ( TQMimeSourceFactory * f )\fC [static]\fR"
+Adds the TQMimeSourceFactory \fIf\fR to the list of available mimesource factories. If the defaultFactory() can't resolve a data() it iterates over the list of installed mimesource factories until the data can be resolved.
.PP
See also removeFactory().
-.SH "void QMimeSourceFactory::addFilePath ( const TQString & p )"
+.SH "void TQMimeSourceFactory::addFilePath ( const TQString & p )"
Adds another search path, \fIp\fR to the existing search paths.
.PP
See also setFilePath().
-.SH "const QMimeSource * QMimeSourceFactory::data ( const TQString & abs_name ) const\fC [virtual]\fR"
+.SH "const TQMimeSource * TQMimeSourceFactory::data ( const TQString & abs_name ) const\fC [virtual]\fR"
Returns a reference to the data associated with \fIabs_name\fR. The return value remains valid only until the next data() or setData() call, so you should immediately decode the result.
.PP
If there is no data associated with \fIabs_name\fR in the factory's store, the factory tries to access the local filesystem. If \fIabs_name\fR isn't an absolute file name, the factory will search for it in all defined paths (see setFilePath()).
@@ -158,57 +158,57 @@ The factory understands all the image formats supported by TQImageIO. Any other
.fi
The effect of these is that file names ending in "txt" will be treated as text encoded in the local encoding; those ending in" xml" will be treated as text encoded in Unicode UTF-8 encoding. The text/html type is treated specially, since the encoding can be specified in the html file itself. "html" or "htm" will be treated as text encoded in the encoding specified by the html meta tag, if none could be found, the charset of the mime type will be used. The text subtype ("html", "plain", or "xml") does not affect the factory, but users of the factory may behave differently. We recommend creating "xml" files where practical. These files can be viewed regardless of the runtime encoding and can encode any Unicode characters without resorting to encoding definitions inside the file.
.PP
-Any file data that is not recognized will be retrieved as a QMimeSource providing the "application/octet-stream" mime type, meaning uninterpreted binary data.
+Any file data that is not recognized will be retrieved as a TQMimeSource providing the "application/octet-stream" mime type, meaning uninterpreted binary data.
.PP
-You can add further extensions or change existing ones with subsequent calls to setExtensionType(). If the extension mechanism is not sufficient for your problem domain, you can inherit QMimeSourceFactory and reimplement this function to perform some more specialized mime-type detection. The same applies if you want to use the mime source factory to access URL referenced data over a network.
-.SH "const QMimeSource * QMimeSourceFactory::data ( const TQString & abs_or_rel_name, const TQString & context ) const"
+You can add further extensions or change existing ones with subsequent calls to setExtensionType(). If the extension mechanism is not sufficient for your problem domain, you can inherit TQMimeSourceFactory and reimplement this function to perform some more specialized mime-type detection. The same applies if you want to use the mime source factory to access URL referenced data over a network.
+.SH "const TQMimeSource * TQMimeSourceFactory::data ( const TQString & abs_or_rel_name, const TQString & context ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
A convenience function. See data(const TQString& abs_name). The file name is given in \fIabs_or_rel_name\fR and the path is in \fIcontext\fR.
-.SH "QMimeSourceFactory * QMimeSourceFactory::defaultFactory ()\fC [static]\fR"
+.SH "TQMimeSourceFactory * TQMimeSourceFactory::defaultFactory ()\fC [static]\fR"
Returns the application-wide default mime source factory. This factory is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to resolve named references within rich text documents. It serves also as the initial factory for the more complex render widgets, TQTextEdit and TQTextBrowser.
.PP
See also setDefaultFactory().
.PP
Examples:
.)l action/application.cpp and application/application.cpp.
-.SH "TQStringList QMimeSourceFactory::filePath () const\fC [virtual]\fR"
+.SH "TQStringList TQMimeSourceFactory::filePath () const\fC [virtual]\fR"
Returns the currently set search paths.
-.SH "TQString QMimeSourceFactory::makeAbsolute ( const TQString & abs_or_rel_name, const TQString & context ) const\fC [virtual]\fR"
+.SH "TQString TQMimeSourceFactory::makeAbsolute ( const TQString & abs_or_rel_name, const TQString & context ) const\fC [virtual]\fR"
Converts the absolute or relative data item name \fIabs_or_rel_name\fR to an absolute name, interpreted within the context (path) of the data item named \fIcontext\fR (this must be an absolute name).
-.SH "void QMimeSourceFactory::removeFactory ( QMimeSourceFactory * f )\fC [static]\fR"
+.SH "void TQMimeSourceFactory::removeFactory ( TQMimeSourceFactory * f )\fC [static]\fR"
Removes the mimesource factory \fIf\fR from the list of available mimesource factories.
.PP
See also addFactory().
-.SH "void QMimeSourceFactory::setData ( const TQString & abs_name, QMimeSource * data )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setData ( const TQString & abs_name, TQMimeSource * data )\fC [virtual]\fR"
Sets \fIdata\fR to be the data item associated with the absolute name \fIabs_name\fR. Note that the ownership of \fIdata\fR is transferred to the factory: do not delete or access the pointer after passing it to this function.
.PP
Passing 0 for data removes previously stored data.
-.SH "void QMimeSourceFactory::setDefaultFactory ( QMimeSourceFactory * factory )\fC [static]\fR"
+.SH "void TQMimeSourceFactory::setDefaultFactory ( TQMimeSourceFactory * factory )\fC [static]\fR"
Sets the default \fIfactory\fR, destroying any previously set mime source provider. The ownership of the factory is transferred to Qt.
.PP
See also defaultFactory().
-.SH "void QMimeSourceFactory::setExtensionType ( const TQString & ext, const char * mimetype )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setExtensionType ( const TQString & ext, const char * mimetype )\fC [virtual]\fR"
Sets the mime-type to be associated with the file name extension, \fIext\fR to \fImimetype\fR. This determines the mime-type for files found via the paths set by setFilePath().
-.SH "void QMimeSourceFactory::setFilePath ( const TQStringList & path )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setFilePath ( const TQStringList & path )\fC [virtual]\fR"
Sets the list of directories that will be searched when named data is requested to the those given in the string list \fIpath\fR.
.PP
See also filePath().
-.SH "void QMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR"
Sets \fIimage\fR to be the data item associated with the absolute name \fIabs_name\fR.
.PP
Equivalent to setData(abs_name, new TQImageDrag(image)).
-.SH "void QMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR"
Sets \fIpixmap\fR to be the data item associated with the absolute name \fIabs_name\fR.
-.SH "void QMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR"
+.SH "void TQMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR"
Sets \fItext\fR to be the data item associated with the absolute name \fIabs_name\fR.
.PP
Equivalent to setData(abs_name, new TQTextDrag(text)).
-.SH "QMimeSourceFactory * QMimeSourceFactory::takeDefaultFactory ()\fC [static]\fR"
+.SH "TQMimeSourceFactory * TQMimeSourceFactory::takeDefaultFactory ()\fC [static]\fR"
Sets the defaultFactory() to 0 and returns the previous one.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qmimesourcefactory.html
+.BR http://doc.trolltech.com/tqmimesourcefactory.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/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 4d0e92de2..8bfdeb53b 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, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, TQSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, QTranslator, QUrlOperator, and QValidator.
+-Inherited by QAccel, QAccessibleObject, TQAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, TQDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, TQSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqpixmap.3qt b/doc/man/man3/tqpixmap.3qt
index 7be27685d..ce2098acd 100644
--- a/doc/man/man3/tqpixmap.3qt
+++ b/doc/man/man3/tqpixmap.3qt
@@ -472,7 +472,7 @@ Example:
.SH "QPixmap QPixmap::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to a pixmap.
.PP
-See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
+See also TQMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.PP
Example: textedit/textedit.cpp.
.SH "QPixmap QPixmap::grabWidget ( TQWidget * widget, int x = 0, int y = 0, int w = -1, int h = -1 )\fC [static]\fR"
diff --git a/doc/man/man3/tqscrollview.3qt b/doc/man/man3/tqscrollview.3qt
index abfcb3b8f..ac9ed9d6e 100644
--- a/doc/man/man3/tqscrollview.3qt
+++ b/doc/man/man3/tqscrollview.3qt
@@ -258,16 +258,16 @@ Inherited by TQCanvasView, QTable, QGridView, TQIconView, QListBox, QListView, a
.BI "virtual void \fBcontentsMouseMoveEvent\fR ( QMouseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragEnterEvent\fR ( QDragEnterEvent * )"
+.BI "virtual void \fBcontentsDragEnterEvent\fR ( TQDragEnterEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragMoveEvent\fR ( QDragMoveEvent * )"
+.BI "virtual void \fBcontentsDragMoveEvent\fR ( TQDragMoveEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragLeaveEvent\fR ( QDragLeaveEvent * )"
+.BI "virtual void \fBcontentsDragLeaveEvent\fR ( TQDragLeaveEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDropEvent\fR ( QDropEvent * )"
+.BI "virtual void \fBcontentsDropEvent\fR ( TQDropEvent * )"
.br
.ti -1c
.BI "virtual void \fBcontentsWheelEvent\fR ( QWheelEvent * e )"
@@ -521,19 +521,19 @@ See also visibleWidth and visibleHeight.
This event handler is called whenever the QScrollView receives a contextMenuEvent() in \fIe\fR: the mouse position is translated to be a point on the contents.
.PP
Example: chart/canvasview.cpp.
-.SH "void QScrollView::contentsDragEnterEvent ( QDragEnterEvent * )\fC [virtual protected]\fR"
+.SH "void QScrollView::contentsDragEnterEvent ( TQDragEnterEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragEnterEvent(): the drag position is translated to be a point on the contents.
.PP
Reimplemented in QTable.
-.SH "void QScrollView::contentsDragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR"
+.SH "void QScrollView::contentsDragLeaveEvent ( TQDragLeaveEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragLeaveEvent(): the drag position is translated to be a point on the contents.
.PP
Reimplemented in QTable.
-.SH "void QScrollView::contentsDragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR"
+.SH "void QScrollView::contentsDragMoveEvent ( TQDragMoveEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragMoveEvent(): the drag position is translated to be a point on the contents.
.PP
Reimplemented in QTable.
-.SH "void QScrollView::contentsDropEvent ( QDropEvent * )\fC [virtual protected]\fR"
+.SH "void QScrollView::contentsDropEvent ( TQDropEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dropEvent(): the drop position is translated to be a point on the contents.
.PP
Reimplemented in QTable.
@@ -851,7 +851,7 @@ This property holds whether autoscrolling in drag move events is enabled.
.PP
If this property is set to TRUE (the default), the QScrollView automatically scrolls the contents in drag move events if the user moves the cursor close to a border of the view. Of course this works only if the viewport accepts drops. Specifying FALSE disables this autoscroll feature.
.PP
-\fBWarning:\fR Enabling this property might not be enough to effectively turn on autoscrolling. If you put a custom widget in the QScrollView, you might need to call QDragEvent::ignore() on the event in the dragEnterEvent() and dragMoveEvent() reimplementations.
+\fBWarning:\fR Enabling this property might not be enough to effectively turn on autoscrolling. If you put a custom widget in the QScrollView, you might need to call TQDragEvent::ignore() on the event in the dragEnterEvent() and dragMoveEvent() reimplementations.
.PP
Set this property's value with setDragAutoScroll() and get this property's value with dragAutoScroll().
.SH "ScrollBarMode hScrollBarMode"
diff --git a/doc/man/man3/tqsimplerichtext.3qt b/doc/man/man3/tqsimplerichtext.3qt
index 05c356171..6ce135764 100644
--- a/doc/man/man3/tqsimplerichtext.3qt
+++ b/doc/man/man3/tqsimplerichtext.3qt
@@ -17,7 +17,7 @@ QSimpleRichText \- Small displayable piece of rich text
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )"
.br
.ti -1c
-.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
+.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
.br
.ti -1c
.BI "\fB~QSimpleRichText\fR ()"
@@ -85,15 +85,15 @@ The font is used as a basis for the text rendering. When using rich text renderi
.br
.fi
.PP
-\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details.
+\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
-.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
+.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR.
.PP
This is a slightly more complex constructor for QSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as QColorGroup's QColorGroup::link() color is used now.
.PP
-\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details.
+\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
.PP
diff --git a/doc/man/man3/tqstoreddrag.3qt b/doc/man/man3/tqstoreddrag.3qt
index a172ea855..a600fe60d 100644
--- a/doc/man/man3/tqstoreddrag.3qt
+++ b/doc/man/man3/tqstoreddrag.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QStoredDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQStoredDrag 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,21 +7,21 @@
.ad l
.nh
.SH NAME
-QStoredDrag \- Simple stored-value drag object for arbitrary MIME data
+TQStoredDrag \- Simple stored-value drag object for arbitrary MIME data
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QDragObject.
+Inherits TQDragObject.
.PP
-Inherited by QUriDrag and QColorDrag.
+Inherited by TQUriDrag and TQColorDrag.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQStoredDrag\fR ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBTQStoredDrag\fR ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QStoredDrag\fR ()"
+.BI "\fB~TQStoredDrag\fR ()"
.br
.ti -1c
.BI "virtual void \fBsetEncodedData\fR ( const QByteArray & encodedData )"
@@ -31,34 +31,34 @@ Inherited by QUriDrag and QColorDrag.
.br
.in -1c
.SH DESCRIPTION
-The QStoredDrag class provides a simple stored-value drag object for arbitrary MIME data.
+The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data.
.PP
-When a block of data has only one representation, you can use a QStoredDrag to hold it.
+When a block of data has only one representation, you can use a TQStoredDrag to hold it.
.PP
-For more information about drag and drop, see the QDragObject class and the drag and drop documentation.
+For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QStoredDrag::QStoredDrag ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
-Constructs a QStoredDrag. The \fIdragSource\fR and \fIname\fR are passed to the QDragObject constructor, and the format is set to \fImimeType\fR.
+.SH "TQStoredDrag::TQStoredDrag ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
+Constructs a TQStoredDrag. The \fIdragSource\fR and \fIname\fR are passed to the TQDragObject constructor, and the format is set to \fImimeType\fR.
.PP
The data will be unset. Use setEncodedData() to set it.
-.SH "QStoredDrag::~QStoredDrag ()"
+.SH "TQStoredDrag::~TQStoredDrag ()"
Destroys the drag object and frees up all allocated resources.
-.SH "QByteArray QStoredDrag::encodedData ( const char * m ) const\fC [virtual]\fR"
+.SH "QByteArray TQStoredDrag::encodedData ( const char * m ) const\fC [virtual]\fR"
Returns the stored data. \fIm\fR contains the data's format.
.PP
See also setEncodedData().
.PP
-Reimplemented from QMimeSource.
-.SH "void QStoredDrag::setEncodedData ( const QByteArray & encodedData )\fC [virtual]\fR"
+Reimplemented from TQMimeSource.
+.SH "void TQStoredDrag::setEncodedData ( const QByteArray & encodedData )\fC [virtual]\fR"
Sets the encoded data of this drag object to \fIencodedData\fR. The encoded data is what's delivered to the drop sites. It must be in a strictly defined and portable format.
.PP
The drag object can't be dropped (by the user) until this function
has been called.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qstoreddrag.html
+.BR http://doc.trolltech.com/tqstoreddrag.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/tqstylesheet.3qt b/doc/man/man3/tqstylesheet.3qt
index 77c7dc4e2..3f582ca59 100644
--- a/doc/man/man3/tqstylesheet.3qt
+++ b/doc/man/man3/tqstylesheet.3qt
@@ -28,7 +28,7 @@ Inherits TQObject.
.BI "const TQStyleSheetItem * \fBitem\fR ( const TQString & name ) const"
.br
.ti -1c
-.BI "virtual TQTextCustomItem * \fBtag\fR ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const"
+.BI "virtual TQTextCustomItem * \fBtag\fR ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const TQMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const"
.br
.ti -1c
.BI "virtual void \fBscaleFont\fR ( QFont & font, int logicalSize ) const"
@@ -187,12 +187,12 @@ See also TQStyleSheetItem::logicalFontSize(), TQStyleSheetItem::logicalFontSizeS
Sets the application-wide default style sheet to \fIsheet\fR, deleting any style sheet previously set. The ownership is transferred to TQStyleSheet.
.PP
See also defaultSheet().
-.SH "TQTextCustomItem * TQStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR"
+.SH "TQTextCustomItem * TQStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const TQMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR"
\fBThis function is under development and is subject to change.\fR
.PP
Generates an internal object for the tag called \fIname\fR, given the attributes \fIattr\fR, and using additional information provided by the mime source factory \fIfactory\fR.
.PP
-\fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details.
+\fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP
\fIemptyTag\fR and \fIdoc\fR are for internal use only.
.PP
diff --git a/doc/man/man3/tqtable.3qt b/doc/man/man3/tqtable.3qt
index 62e7f6884..7e2557a1d 100644
--- a/doc/man/man3/tqtable.3qt
+++ b/doc/man/man3/tqtable.3qt
@@ -351,7 +351,7 @@ Inherited by TQDataTable.
.BI "void \fBcontextMenuRequested\fR ( int row, int col, const QPoint & pos )"
.br
.ti -1c
-.BI "void \fBdropped\fR ( QDropEvent * e )"
+.BI "void \fBdropped\fR ( TQDropEvent * e )"
.br
.in -1c
.SS "Properties"
@@ -399,19 +399,19 @@ Inherited by TQDataTable.
.BI "void \fBsetEditMode\fR ( EditMode mode, int row, int col )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragEnterEvent\fR ( QDragEnterEvent * e )"
+.BI "virtual void \fBcontentsDragEnterEvent\fR ( TQDragEnterEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragMoveEvent\fR ( QDragMoveEvent * e )"
+.BI "virtual void \fBcontentsDragMoveEvent\fR ( TQDragMoveEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDragLeaveEvent\fR ( QDragLeaveEvent * e )"
+.BI "virtual void \fBcontentsDragLeaveEvent\fR ( TQDragLeaveEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsDropEvent\fR ( QDropEvent * e )"
+.BI "virtual void \fBcontentsDropEvent\fR ( TQDropEvent * e )"
.br
.ti -1c
-.BI "virtual QDragObject * \fBdragObject\fR ()"
+.BI "virtual TQDragObject * \fBdragObject\fR ()"
.br
.ti -1c
.BI "virtual void \fBstartDrag\fR ()"
@@ -693,23 +693,23 @@ Returns the width of column \fIcol\fR.
See also setColumnWidth() and rowHeight().
.SH "void QTable::columnWidthChanged ( int col )\fC [virtual protected slot]\fR"
This function should be called whenever the column width of \fIcol\fR has been changed. It updates the geometry of any affected columns and repaints the table to reflect the changes it has made.
-.SH "void QTable::contentsDragEnterEvent ( QDragEnterEvent * e )\fC [virtual protected]\fR"
-This event handler is called whenever a QTable object receives a QDragEnterEvent \fIe\fR, i.e. when the user pressed the mouse button to drag something.
+.SH "void QTable::contentsDragEnterEvent ( TQDragEnterEvent * e )\fC [virtual protected]\fR"
+This event handler is called whenever a QTable object receives a TQDragEnterEvent \fIe\fR, i.e. when the user pressed the mouse button to drag something.
.PP
-The focus is moved to the cell where the QDragEnterEvent occurred.
+The focus is moved to the cell where the TQDragEnterEvent occurred.
.PP
Reimplemented from QScrollView.
-.SH "void QTable::contentsDragLeaveEvent ( QDragLeaveEvent * e )\fC [virtual protected]\fR"
+.SH "void QTable::contentsDragLeaveEvent ( TQDragLeaveEvent * e )\fC [virtual protected]\fR"
This event handler is called when a drag activity leaves \fIthis\fR QTable object with event \fIe\fR.
.PP
Reimplemented from QScrollView.
-.SH "void QTable::contentsDragMoveEvent ( QDragMoveEvent * e )\fC [virtual protected]\fR"
-This event handler is called whenever a QTable object receives a QDragMoveEvent \fIe\fR, i.e. when the user actually drags the mouse.
+.SH "void QTable::contentsDragMoveEvent ( TQDragMoveEvent * e )\fC [virtual protected]\fR"
+This event handler is called whenever a QTable object receives a TQDragMoveEvent \fIe\fR, i.e. when the user actually drags the mouse.
.PP
-The focus is moved to the cell where the QDragMoveEvent occurred.
+The focus is moved to the cell where the TQDragMoveEvent occurred.
.PP
Reimplemented from QScrollView.
-.SH "void QTable::contentsDropEvent ( QDropEvent * e )\fC [virtual protected]\fR"
+.SH "void QTable::contentsDropEvent ( TQDropEvent * e )\fC [virtual protected]\fR"
This event handler is called when the user ends a drag and drop by dropping something onto \fIthis\fR QTable and thus triggers the drop event, \fIe\fR.
.PP
Reimplemented from QScrollView.
@@ -778,10 +778,10 @@ See also TQt::ButtonState.
If this function returns TRUE, the table supports dragging.
.PP
See also setDragEnabled().
-.SH "QDragObject * QTable::dragObject ()\fC [virtual protected]\fR"
+.SH "TQDragObject * QTable::dragObject ()\fC [virtual protected]\fR"
If the user presses the mouse on a selected cell, starts moving (i.e. dragging), and dragEnabled() is TRUE, this function is called to obtain a drag object. A drag using this object begins immediately unless dragObject() returns 0.
.PP
-By default this function returns 0. You might reimplement it and create a QDragObject depending on the selected items.
+By default this function returns 0. You might reimplement it and create a TQDragObject depending on the selected items.
.PP
See also dropped().
.SH "void QTable::drawContents ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
@@ -790,7 +790,7 @@ Draws the table contents on the painter \fIp\fR. This function is optimized so t
Additionally, drawContents() highlights the current cell.
.PP
Reimplemented from QScrollView.
-.SH "void QTable::dropped ( QDropEvent * e )\fC [signal]\fR"
+.SH "void QTable::dropped ( TQDropEvent * e )\fC [signal]\fR"
This signal is emitted when a drop event occurred on the table.
.PP
\fIe\fR contains information about the drop.
diff --git a/doc/man/man3/tqtextbrowser.3qt b/doc/man/man3/tqtextbrowser.3qt
index f4cc4faf0..84d740581 100644
--- a/doc/man/man3/tqtextbrowser.3qt
+++ b/doc/man/man3/tqtextbrowser.3qt
@@ -95,7 +95,7 @@ This class extends TQTextEdit (in read-only mode), adding some navigation functi
.PP
TQTextBrowser provides backward() and forward() slots which you can use to implement Back and Forward buttons. The home() slot sets the text to the very first document displayed. The linkClicked() signal is emitted when the user clicks a link.
.PP
-By using TQTextEdit::setMimeSourceFactory() you can provide your own subclass of QMimeSourceFactory. This makes it possible to access data from anywhere, for example from a network or from a database. See QMimeSourceFactory::data() for details.
+By using TQTextEdit::setMimeSourceFactory() you can provide your own subclass of TQMimeSourceFactory. This makes it possible to access data from anywhere, for example from a network or from a database. See TQMimeSourceFactory::data() for details.
.PP
If you intend using the mime factory to read the data directly from the file system, you may have to specify the encoding for the file extension you are using. For example:
.PP
@@ -196,7 +196,7 @@ Setting this property uses the mimeSourceFactory() to lookup the named document.
.PP
If the first tag in the document is \fC<qt type=detail>\fR, the document is displayed as a popup rather than as new document in the browser window itself. Otherwise, the document is displayed normally in the text browser with the text set to the contents of the named document with setText().
.PP
-If you are using the filesystem access capabilities of the mime source factory, you must ensure that the factory knows about the encoding of specified files; otherwise no data will be available. The default factory handles a couple of common file extensions such as \fC*.html\fR and \fC*.txt\fR with reasonable defaults. See QMimeSourceFactory::data() for details.
+If you are using the filesystem access capabilities of the mime source factory, you must ensure that the factory knows about the encoding of specified files; otherwise no data will be available. The default factory handles a couple of common file extensions such as \fC*.html\fR and \fC*.txt\fR with reasonable defaults. See TQMimeSourceFactory::data() for details.
.PP
Set this property's value with setSource() and get this property's value with source().
.SH "int undoDepth"
diff --git a/doc/man/man3/tqtextdrag.3qt b/doc/man/man3/tqtextdrag.3qt
index b4f903450..9573071ca 100644
--- a/doc/man/man3/tqtextdrag.3qt
+++ b/doc/man/man3/tqtextdrag.3qt
@@ -9,9 +9,9 @@
.SH NAME
TQTextDrag \- Drag and drop object for transferring plain and Unicode text
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QDragObject.
+Inherits TQDragObject.
.PP
.SS "Public Members"
.in +1c
@@ -34,13 +34,13 @@ Inherits QDragObject.
.SS "Static Public Members"
.in +1c
.ti -1c
-.BI "bool \fBcanDecode\fR ( const QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, TQString & str )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, TQString & str )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, TQString & str, QCString & subtype )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, TQString & str, QCString & subtype )"
.br
.in -1c
.SH DESCRIPTION
@@ -50,7 +50,7 @@ Plain text is passed in a TQString which may contain multiple lines (i.e. may co
.PP
Qt provides no built-in mechanism for delivering only a single-line.
.PP
-For more information about drag and drop, see the QDragObject class and the drag and drop documentation.
+For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
@@ -60,19 +60,19 @@ Constructs a text drag object and sets its data to \fItext\fR. \fIdragSource\fR
Constructs a default text drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "TQTextDrag::~TQTextDrag ()"
Destroys the text drag object and frees up all allocated resources.
-.SH "bool TQTextDrag::canDecode ( const QMimeSource * e )\fC [static]\fR"
+.SH "bool TQTextDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in \fIe\fR can be decoded into a TQString; otherwise returns FALSE.
.PP
See also decode().
.PP
Example: iconview/simple_dd/main.cpp.
-.SH "bool TQTextDrag::decode ( const QMimeSource * e, TQString & str )\fC [static]\fR"
+.SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str )\fC [static]\fR"
Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP
See also canDecode().
.PP
Example: iconview/simple_dd/main.cpp.
-.SH "bool TQTextDrag::decode ( const QMimeSource * e, TQString & str, QCString & subtype )\fC [static]\fR"
+.SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str, QCString & subtype )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. If \fIsubtype\fR is null, any text subtype is accepted; otherwise only the specified \fIsubtype\fR is accepted.
diff --git a/doc/man/man3/tqtextedit.3qt b/doc/man/man3/tqtextedit.3qt
index ac8c9c1cb..b4538f0da 100644
--- a/doc/man/man3/tqtextedit.3qt
+++ b/doc/man/man3/tqtextedit.3qt
@@ -93,7 +93,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.BI "TQStyleSheet * \fBstyleSheet\fR () const"
.br
.ti -1c
-.BI "QMimeSourceFactory * \fBmimeSourceFactory\fR () const"
+.BI "TQMimeSourceFactory * \fBmimeSourceFactory\fR () const"
.br
.ti -1c
.BI "QBrush \fBpaper\fR () const"
@@ -198,7 +198,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.SS "Public Slots"
.in +1c
.ti -1c
-.BI "virtual void \fBsetMimeSourceFactory\fR ( QMimeSourceFactory * factory )"
+.BI "virtual void \fBsetMimeSourceFactory\fR ( TQMimeSourceFactory * factory )"
.br
.ti -1c
.BI "virtual void \fBsetStyleSheet\fR ( TQStyleSheet * styleSheet )"
@@ -551,7 +551,7 @@ The text edit documentation uses the following concepts:
.TP
\fIcurrent paragraph\fR -- the paragraph which contains the cursor.
.PP
-TQTextEdit can display images (using QMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's QMimeSourceFactory; see setMimeSourceFactory().
+TQTextEdit can display images (using TQMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's TQMimeSourceFactory; see setMimeSourceFactory().
.PP
If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use QLabel or QSimpleRichText.
.PP
@@ -617,7 +617,7 @@ l - l. Keypresses Action UpArrow Move one line up DownArrow Move one line down L
.PP
The text edit may be able to provide some meta-information. For example, the documentTitle() function will return the text from within HTML \fC<title>\fR tags.
.PP
-The text displayed in a text edit has a \fIcontext\fR. The context is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data. (See TQTextEdit() and context().)
+The text displayed in a text edit has a \fIcontext\fR. The context is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data. (See TQTextEdit() and context().)
.PP
<h4> Using TQTextEdit in LogText Mode </h4>
.PP
@@ -774,9 +774,9 @@ See also wrapPolicy.
.SH "TQTextEdit::TQTextEdit ( const TQString & text, const TQString & context = TQString::null, TQWidget * parent = 0, const char * name = 0 )"
Constructs a TQTextEdit called \fIname\fR, with parent \fIparent\fR. The text edit will display the text \fItext\fR using context \fIcontext\fR.
.PP
-The \fIcontext\fR is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data.
+The \fIcontext\fR is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data.
.PP
-For example if the text contains an image tag, \fC<img src="image.png">\fR, and the context is "path/to/look/in", the QMimeSourceFactory will try to load the image from" path/to/look/in/image.png". If the tag was \fC<img src="/image.png">\fR, the context will not be used (because QMimeSourceFactory recognizes that we have used an absolute path) and will try to load "/image.png". The context is applied in exactly the same way to \fIhrefs\fR, for example, \fC<a href="target.html">Target</a>\fR, would resolve to" path/to/look/in/target.html".
+For example if the text contains an image tag, \fC<img src="image.png">\fR, and the context is "path/to/look/in", the TQMimeSourceFactory will try to load the image from" path/to/look/in/image.png". If the tag was \fC<img src="/image.png">\fR, the context will not be used (because TQMimeSourceFactory recognizes that we have used an absolute path) and will try to load "/image.png". The context is applied in exactly the same way to \fIhrefs\fR, for example, \fC<a href="target.html">Target</a>\fR, would resolve to" path/to/look/in/target.html".
.SH "TQTextEdit::TQTextEdit ( TQWidget * parent = 0, const char * name = 0 )"
Constructs an empty TQTextEdit called \fIname\fR, with parent \fIparent\fR.
.SH "int TQTextEdit::alignment () const"
@@ -817,7 +817,7 @@ Returns the color of the current format.
.PP
See also setColor() and paper.
.SH "TQString TQTextEdit::context () const"
-Returns the context of the text edit. The context is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images.
+Returns the context of the text edit. The context is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images.
.PP
See also text.
.PP
@@ -1001,8 +1001,8 @@ Returns the number of lines in paragraph \fIpara\fR, or -1 if there is no paragr
Returns TRUE if hypertext links will be underlined; otherwise returns FALSE. See the "linkUnderline" property for details.
.SH "int TQTextEdit::maxLogLines ()\fC [slot]\fR"
Returns the maximum number of lines TQTextEdit can hold in LogText mode. By default the number of lines is unlimited, which is signified by a value of -1.
-.SH "QMimeSourceFactory * TQTextEdit::mimeSourceFactory () const"
-Returns the QMimeSourceFactory which is being used by this text edit.
+.SH "TQMimeSourceFactory * TQTextEdit::mimeSourceFactory () const"
+Returns the TQMimeSourceFactory which is being used by this text edit.
.PP
See also setMimeSourceFactory().
.PP
@@ -1126,8 +1126,8 @@ Sets whether hypertext links will be underlined. See the "linkUnderline" propert
Sets the maximum number of lines a TQTextEdit can hold in LogText mode to \fIlimit\fR. If \fIlimit\fR is -1 (the default), this signifies an unlimited number of lines.
.PP
\fBWarning:\fR Never use formatting tags that span more than one line when the maximum log lines is set. When lines are removed from the top of the buffer it could result in an unbalanced tag pair, i.e. the left formatting tag is removed before the right one.
-.SH "void TQTextEdit::setMimeSourceFactory ( QMimeSourceFactory * factory )\fC [virtual slot]\fR"
-Sets the text edit's mimesource factory to \fIfactory\fR. See QMimeSourceFactory for further details.
+.SH "void TQTextEdit::setMimeSourceFactory ( TQMimeSourceFactory * factory )\fC [virtual slot]\fR"
+Sets the text edit's mimesource factory to \fIfactory\fR. See TQMimeSourceFactory for further details.
.PP
See also mimeSourceFactory().
.SH "void TQTextEdit::setModified ( bool m )\fC [virtual slot]\fR"
@@ -1179,7 +1179,7 @@ Changes the text of the text edit to the string \fItext\fR and the context to \f
.PP
For rich text the rendering style and available tags are defined by a styleSheet(); see TQStyleSheet for details.
.PP
-The optional \fIcontext\fR is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. (See TQTextEdit::TQTextEdit().) It is passed to the text edit's QMimeSourceFactory when quering data.
+The optional \fIcontext\fR is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. (See TQTextEdit::TQTextEdit().) It is passed to the text edit's TQMimeSourceFactory when quering data.
.PP
Note that the undo/redo history is cleared by this function.
.PP
diff --git a/doc/man/man3/tquridrag.3qt b/doc/man/man3/tquridrag.3qt
index e538c7b94..2093eacef 100644
--- a/doc/man/man3/tquridrag.3qt
+++ b/doc/man/man3/tquridrag.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QUriDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQUriDrag 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
-QUriDrag \- Drag object for a list of URI references
+TQUriDrag \- Drag object for a list of URI references
.SH SYNOPSIS
-\fC#include <ntqdragobject.h>\fR
+\fC#include <tqdragobject.h>\fR
.PP
-Inherits QStoredDrag.
+Inherits TQStoredDrag.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQUriDrag\fR ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBTQUriDrag\fR ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQUriDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
+.BI "\fBTQUriDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fB~QUriDrag\fR ()"
+.BI "\fB~TQUriDrag\fR ()"
.br
.ti -1c
.BI "void setFilenames ( const TQStringList & fnames ) \fI(obsolete)\fR"
@@ -52,20 +52,20 @@ Inherits QStoredDrag.
.BI "QCString \fBunicodeUriToUri\fR ( const TQString & uuri )"
.br
.ti -1c
-.BI "bool \fBcanDecode\fR ( const QMimeSource * e )"
+.BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br
.ti -1c
-.BI "bool \fBdecode\fR ( const QMimeSource * e, TQStrList & l )"
+.BI "bool \fBdecode\fR ( const TQMimeSource * e, TQStrList & l )"
.br
.ti -1c
-.BI "bool \fBdecodeToUnicodeUris\fR ( const QMimeSource * e, TQStringList & l )"
+.BI "bool \fBdecodeToUnicodeUris\fR ( const TQMimeSource * e, TQStringList & l )"
.br
.ti -1c
-.BI "bool \fBdecodeLocalFiles\fR ( const QMimeSource * e, TQStringList & l )"
+.BI "bool \fBdecodeLocalFiles\fR ( const TQMimeSource * e, TQStringList & l )"
.br
.in -1c
.SH DESCRIPTION
-The QUriDrag class provides a drag object for a list of URI references.
+The TQUriDrag class provides a drag object for a list of URI references.
.PP
URIs are a useful way to refer to files that may be distributed across multiple machines. A URI will often refer to a file on a machine local to both the drag source and the drop target, so the URI can be equivalent to passing a file name but is more extensible.
.PP
@@ -77,57 +77,57 @@ Static functions are provided to convert between filenames and URIs, e.g. uriToL
.PP
See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QUriDrag::QUriDrag ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
-Constructs an object to drag the list of URIs in \fIuris\fR. The \fIdragSource\fR and \fIname\fR arguments are passed on to QStoredDrag. Note that URIs are always in escaped UTF8 encoding.
-.SH "QUriDrag::QUriDrag ( TQWidget * dragSource = 0, const char * name = 0 )"
-Constructs an object to drag. You must call setUris() before you start the drag(). Passes \fIdragSource\fR and \fIname\fR to the QStoredDrag constructor.
-.SH "QUriDrag::~QUriDrag ()"
+.SH "TQUriDrag::TQUriDrag ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
+Constructs an object to drag the list of URIs in \fIuris\fR. The \fIdragSource\fR and \fIname\fR arguments are passed on to TQStoredDrag. Note that URIs are always in escaped UTF8 encoding.
+.SH "TQUriDrag::TQUriDrag ( TQWidget * dragSource = 0, const char * name = 0 )"
+Constructs an object to drag. You must call setUris() before you start the drag(). Passes \fIdragSource\fR and \fIname\fR to the TQStoredDrag constructor.
+.SH "TQUriDrag::~TQUriDrag ()"
Destroys the object.
-.SH "bool QUriDrag::canDecode ( const QMimeSource * e )\fC [static]\fR"
+.SH "bool TQUriDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if decode() would be able to decode \fIe\fR; otherwise returns FALSE.
-.SH "bool QUriDrag::decode ( const QMimeSource * e, TQStrList & l )\fC [static]\fR"
+.SH "bool TQUriDrag::decode ( const TQMimeSource * e, TQStrList & l )\fC [static]\fR"
Decodes URIs from \fIe\fR, placing the result in \fIl\fR (which is first cleared).
.PP
Returns TRUE if \fIe\fR contained a valid list of URIs; otherwise returns FALSE.
.PP
Example: dirview/dirview.cpp.
-.SH "bool QUriDrag::decodeLocalFiles ( const QMimeSource * e, TQStringList & l )\fC [static]\fR"
+.SH "bool TQUriDrag::decodeLocalFiles ( const TQMimeSource * e, TQStringList & l )\fC [static]\fR"
Decodes URIs from the mime source event \fIe\fR, converts them to local files if they refer to local files, and places them in \fIl\fR (which is first cleared).
.PP
Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE. The list will be empty if no URIs were local files.
.PP
Example: fileiconview/qfileiconview.cpp.
-.SH "bool QUriDrag::decodeToUnicodeUris ( const QMimeSource * e, TQStringList & l )\fC [static]\fR"
+.SH "bool TQUriDrag::decodeToUnicodeUris ( const TQMimeSource * e, TQStringList & l )\fC [static]\fR"
Decodes URIs from the mime source event \fIe\fR, converts them to Unicode URIs (only useful for displaying to humans), placing them in \fIl\fR (which is first cleared).
.PP
Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE.
-.SH "QCString QUriDrag::localFileToUri ( const TQString & filename )\fC [static]\fR"
+.SH "QCString TQUriDrag::localFileToUri ( const TQString & filename )\fC [static]\fR"
Returns the URI equivalent to the absolute local file \fIfilename\fR.
.PP
See also uriToLocalFile().
-.SH "void QUriDrag::setFileNames ( const TQStringList & fnames )"
+.SH "void TQUriDrag::setFileNames ( const TQStringList & fnames )"
Sets the URIs to be the local-file URIs equivalent to \fIfnames\fR.
.PP
See also localFileToUri() and setUris().
.PP
Example: dirview/dirview.cpp.
-.SH "void QUriDrag::setFilenames ( const TQStringList & fnames )"
+.SH "void TQUriDrag::setFilenames ( const TQStringList & fnames )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Use setFileNames() instead (notice the N).
-.SH "void QUriDrag::setUnicodeUris ( const TQStringList & uuris )"
+.SH "void TQUriDrag::setUnicodeUris ( const TQStringList & uuris )"
Sets the URIs in \fIuuris\fR to be the Unicode URIs (only useful for displaying to humans).
.PP
See also localFileToUri() and setUris().
-.SH "void QUriDrag::setUris ( TQStrList uris )\fC [virtual]\fR"
+.SH "void TQUriDrag::setUris ( TQStrList uris )\fC [virtual]\fR"
Changes the list of \fIuris\fR to be dragged.
.PP
Note that URIs are always in escaped UTF8 encoding.
-.SH "QCString QUriDrag::unicodeUriToUri ( const TQString & uuri )\fC [static]\fR"
+.SH "QCString TQUriDrag::unicodeUriToUri ( const TQString & uuri )\fC [static]\fR"
Returns the URI equivalent of the Unicode URI given in \fIuuri\fR (only useful for displaying to humans).
.PP
See also uriToLocalFile().
-.SH "TQString QUriDrag::uriToLocalFile ( const char * uri )\fC [static]\fR"
+.SH "TQString TQUriDrag::uriToLocalFile ( const char * uri )\fC [static]\fR"
Returns the name of a local file equivalent to \fIuri\fR or a null string if \fIuri\fR is not a local file.
.PP
Note that URIs are always in escaped UTF8 encoding.
@@ -135,7 +135,7 @@ Note that URIs are always in escaped UTF8 encoding.
See also localFileToUri().
.PP
Example: dirview/dirview.cpp.
-.SH "TQString QUriDrag::uriToUnicodeUri ( const char * uri )\fC [static]\fR"
+.SH "TQString TQUriDrag::uriToUnicodeUri ( const char * uri )\fC [static]\fR"
Returns the Unicode URI (only useful for displaying to humans) equivalent of \fIuri\fR.
.PP
Note that URIs are always in escaped UTF8 encoding.
@@ -143,7 +143,7 @@ Note that URIs are always in escaped UTF8 encoding.
See also localFileToUri().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/quridrag.html
+.BR http://doc.trolltech.com/tquridrag.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/tqwhatsthis.3qt b/doc/man/man3/tqwhatsthis.3qt
index 5696d4e6f..3a473a463 100644
--- a/doc/man/man3/tqwhatsthis.3qt
+++ b/doc/man/man3/tqwhatsthis.3qt
@@ -82,7 +82,7 @@ The text can be either rich text or plain text. If you specify a rich text forma
.br
"from the <b>File</b> menu.</p>";
.br
- QMimeSourceFactory::defaultFactory()->setPixmap( "fileopen",
+ TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen",
.br
fileOpenAction->iconSet().pixmap() );
.br
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index 0590cf292..d10a4d2b5 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -915,16 +915,16 @@ Inherited by QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDataView, TQD
.BI "virtual void \fBtabletEvent\fR ( QTabletEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBdragEnterEvent\fR ( QDragEnterEvent * )"
+.BI "virtual void \fBdragEnterEvent\fR ( TQDragEnterEvent * )"
.br
.ti -1c
-.BI "virtual void \fBdragMoveEvent\fR ( QDragMoveEvent * )"
+.BI "virtual void \fBdragMoveEvent\fR ( TQDragMoveEvent * )"
.br
.ti -1c
-.BI "virtual void \fBdragLeaveEvent\fR ( QDragLeaveEvent * )"
+.BI "virtual void \fBdragLeaveEvent\fR ( TQDragLeaveEvent * )"
.br
.ti -1c
-.BI "virtual void \fBdropEvent\fR ( QDropEvent * )"
+.BI "virtual void \fBdropEvent\fR ( TQDropEvent * )"
.br
.ti -1c
.BI "virtual void \fBshowEvent\fR ( QShowEvent * )"
@@ -1290,26 +1290,26 @@ Frees up window system resources. Destroys the widget window if \fIdestroyWindow
destroy() calls itself recursively for all the child widgets, passing \fIdestroySubWindows\fR for the \fIdestroyWindow\fR parameter. To have more control over destruction of subwidgets, destroy subwidgets selectively first.
.PP
This function is usually called from the TQWidget destructor.
-.SH "void TQWidget::dragEnterEvent ( QDragEnterEvent * )\fC [virtual protected]\fR"
+.SH "void TQWidget::dragEnterEvent ( TQDragEnterEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse enters this widget.
.PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP
-See also TQTextDrag, TQImageDrag, and QDragEnterEvent.
+See also TQTextDrag, TQImageDrag, and TQDragEnterEvent.
.PP
Example: iconview/simple_dd/main.cpp.
-.SH "void TQWidget::dragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR"
+.SH "void TQWidget::dragLeaveEvent ( TQDragLeaveEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse leaves this widget.
.PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP
-See also TQTextDrag, TQImageDrag, and QDragLeaveEvent.
-.SH "void TQWidget::dragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR"
+See also TQTextDrag, TQImageDrag, and TQDragLeaveEvent.
+.SH "void TQWidget::dragMoveEvent ( TQDragMoveEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget.
.PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP
-See also TQTextDrag, TQImageDrag, and QDragMoveEvent.
+See also TQTextDrag, TQImageDrag, and TQDragMoveEvent.
.SH "void TQWidget::drawText ( int x, int y, const TQString & str )"
Draws the string \fIstr\fR at position \fI(x, y)\fR.
.PP
@@ -1322,12 +1322,12 @@ See also font, foregroundColor(), and QPainter::drawText().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Draws the string \fIstr\fR at position \fIpos\fR.
-.SH "void TQWidget::dropEvent ( QDropEvent * )\fC [virtual protected]\fR"
+.SH "void TQWidget::dropEvent ( TQDropEvent * )\fC [virtual protected]\fR"
This event handler is called when the drag is dropped on this widget.
.PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP
-See also TQTextDrag, TQImageDrag, and QDropEvent.
+See also TQTextDrag, TQImageDrag, and TQDropEvent.
.PP
Example: iconview/simple_dd/main.cpp.
.SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR"
diff --git a/doc/man/man3/tqwidgetfactory.3qt b/doc/man/man3/tqwidgetfactory.3qt
index c4ba9cef3..7f6aa4262 100644
--- a/doc/man/man3/tqwidgetfactory.3qt
+++ b/doc/man/man3/tqwidgetfactory.3qt
@@ -103,7 +103,7 @@ Subclass TQWidgetFactory. Then reimplement this function to create and return an
where MyWidgetFactory is your TQWidgetFactory subclass.
.IP
.SH "void TQWidgetFactory::loadImages ( const TQString & dir )\fC [static]\fR"
-If you use a pixmap collection (which is the default for new projects) rather than saving the pixmaps within the .ui XML file, you must load the pixmap collection. TQWidgetFactory looks in the default QMimeSourceFactory for the pixmaps. Either add it there manually, or call this function and specify the directory where the images can be found, as \fIdir\fR. This is normally the directory called \fCimages\fR in the project's directory.
+If you use a pixmap collection (which is the default for new projects) rather than saving the pixmaps within the .ui XML file, you must load the pixmap collection. TQWidgetFactory looks in the default TQMimeSourceFactory for the pixmaps. Either add it there manually, or call this function and specify the directory where the images can be found, as \fIdir\fR. This is normally the directory called \fCimages\fR in the project's directory.
.SH "bool TQWidgetFactory::supportsWidget ( const TQString & widget )\fC [static]\fR"
Returns TRUE if the widget factory can create the specified \fIwidget\fR; otherwise returns FALSE.
.SH "TQStringList TQWidgetFactory::widgets ()\fC [static]\fR"
diff --git a/doc/man/man3/tqwindowsmime.3qt b/doc/man/man3/tqwindowsmime.3qt
index a8d6181a6..8c10624b3 100644
--- a/doc/man/man3/tqwindowsmime.3qt
+++ b/doc/man/man3/tqwindowsmime.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QWindowsMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQWindowsMime 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,17 +7,17 @@
.ad l
.nh
.SH NAME
-QWindowsMime \- Maps open-standard MIME to Window Clipboard formats
+TQWindowsMime \- Maps open-standard MIME to Window Clipboard formats
.SH SYNOPSIS
-\fC#include <ntqmime.h>\fR
+\fC#include <tqmime.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQWindowsMime\fR ()"
+.BI "\fBTQWindowsMime\fR ()"
.br
.ti -1c
-.BI "virtual \fB~QWindowsMime\fR ()"
+.BI "virtual \fB~TQWindowsMime\fR ()"
.br
.ti -1c
.BI "virtual const char * \fBconvertorName\fR () = 0"
@@ -50,21 +50,21 @@ QWindowsMime \- Maps open-standard MIME to Window Clipboard formats
.BI "void \fBinitialize\fR ()"
.br
.ti -1c
-.BI "TQPtrList<QWindowsMime> \fBall\fR ()"
+.BI "TQPtrList<TQWindowsMime> \fBall\fR ()"
.br
.ti -1c
-.BI "QWindowsMime * \fBconvertor\fR ( const char * mime, int cf )"
+.BI "TQWindowsMime * \fBconvertor\fR ( const char * mime, int cf )"
.br
.ti -1c
.BI "const char * \fBcfToMime\fR ( int cf )"
.br
.in -1c
.SH DESCRIPTION
-The QWindowsMime class maps open-standard MIME to Window Clipboard formats.
+The TQWindowsMime class maps open-standard MIME to Window Clipboard formats.
.PP
Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Windows although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in formats of Windows.
.PP
-By instantiating subclasses of QWindowsMime that provide conversions between Windows Clipboard and MIME formats, you can convert proprietary clipboard formats to MIME formats.
+By instantiating subclasses of TQWindowsMime that provide conversions between Windows Clipboard and MIME formats, you can convert proprietary clipboard formats to MIME formats.
.PP
Qt has predefined support for the following Windows Clipboard formats:
.TP
@@ -74,7 +74,7 @@ CF_TEXT - converted to "text/plain;charset=system" or "text/plain" and supported
.TP
CF_DIB - converted to "image/*", where * is a TQt image format, and supported by TQImageDrag.
.TP
-CF_HDROP - converted to "text/uri-list", and supported by QUriDrag.
+CF_HDROP - converted to "text/uri-list", and supported by TQUriDrag.
.PP
An example use of this class would be to map the Windows Metafile clipboard format (CF_METAFILEPICT) to and from the MIME type "image/x-wmf". This conversion might simply be adding or removing a header, or even just passing on the data. See the Drag-and-Drop documentation for more information on choosing and definition MIME types.
.PP
@@ -82,57 +82,57 @@ You can check if a MIME type is convertible using canConvert() and can perform c
.PP
See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QWindowsMime::QWindowsMime ()"
+.SH "TQWindowsMime::TQWindowsMime ()"
Constructs a new conversion object, adding it to the globally accessed list of available convertors.
-.SH "QWindowsMime::~QWindowsMime ()\fC [virtual]\fR"
+.SH "TQWindowsMime::~TQWindowsMime ()\fC [virtual]\fR"
Destroys a conversion object, removing it from the global list of available convertors.
-.SH "TQPtrList<QWindowsMime> QWindowsMime::all ()\fC [static]\fR"
-Returns a list of all currently defined QWindowsMime objects.
-.SH "bool QWindowsMime::canConvert ( const char * mime, int cf )\fC [pure virtual]\fR"
+.SH "TQPtrList<TQWindowsMime> TQWindowsMime::all ()\fC [static]\fR"
+Returns a list of all currently defined TQWindowsMime objects.
+.SH "bool TQWindowsMime::canConvert ( const char * mime, int cf )\fC [pure virtual]\fR"
Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIcf\fR; otherwise returns FALSE.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QWindowsMime::cf ( int index )\fC [pure virtual]\fR"
+.SH "int TQWindowsMime::cf ( int index )\fC [pure virtual]\fR"
Returns the Windows Clipboard format supported by this convertor that is ordinarily at position \fIindex\fR. This means that cf(0) returns the first Windows Clipboard format supported, and cf(countCf()-1) returns the last. If \fIindex\fR is out of range the return value is undefined.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QWindowsMime::cfFor ( const char * mime )\fC [pure virtual]\fR"
+.SH "int TQWindowsMime::cfFor ( const char * mime )\fC [pure virtual]\fR"
Returns the Windows Clipboard type used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "const char * QWindowsMime::cfToMime ( int cf )\fC [static]\fR"
+.SH "const char * TQWindowsMime::cfToMime ( int cf )\fC [static]\fR"
Returns a MIME type for \fIcf\fR, or 0 if none exists.
-.SH "QByteArray QWindowsMime::convertFromMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
+.SH "QByteArray TQWindowsMime::convertFromMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from MIME type \fImime\fR to Windows Clipboard format \fIcf\fR.
.PP
Note that Windows Clipboard formats must all be self-terminating. The return value may contain trailing data.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "QByteArray QWindowsMime::convertToMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
+.SH "QByteArray TQWindowsMime::convertToMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from Windows Clipboard format \fIcf\fR to MIME type \fImime\fR.
.PP
Note that Windows Clipboard formats must all be self-terminating. The input \fIdata\fR may contain trailing data.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "QWindowsMime * QWindowsMime::convertor ( const char * mime, int cf )\fC [static]\fR"
-Returns the most-recently created QWindowsMime that can convert between the \fImime\fR and \fIcf\fR formats. Returns 0 if no such convertor exists.
-.SH "const char * QWindowsMime::convertorName ()\fC [pure virtual]\fR"
+.SH "TQWindowsMime * TQWindowsMime::convertor ( const char * mime, int cf )\fC [static]\fR"
+Returns the most-recently created TQWindowsMime that can convert between the \fImime\fR and \fIcf\fR formats. Returns 0 if no such convertor exists.
+.SH "const char * TQWindowsMime::convertorName ()\fC [pure virtual]\fR"
Returns a name for the convertor.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "int QWindowsMime::countCf ()\fC [pure virtual]\fR"
+.SH "int TQWindowsMime::countCf ()\fC [pure virtual]\fR"
Returns the number of Windows Clipboard formats supported by this convertor.
.PP
All subclasses must reimplement this pure virtual function.
-.SH "void QWindowsMime::initialize ()\fC [static]\fR"
+.SH "void TQWindowsMime::initialize ()\fC [static]\fR"
This is an internal function.
-.SH "const char * QWindowsMime::mimeFor ( int cf )\fC [pure virtual]\fR"
+.SH "const char * TQWindowsMime::mimeFor ( int cf )\fC [pure virtual]\fR"
Returns the MIME type used for Windows Clipboard format \fIcf\fR, or 0 if this convertor does not support \fIcf\fR.
.PP
All subclasses must reimplement this pure virtual function.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qwindowsmime.html
+.BR http://doc.trolltech.com/tqwindowsmime.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the