summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqclipboard.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqclipboard.3qt')
-rw-r--r--doc/man/man3/tqclipboard.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqclipboard.3qt b/doc/man/man3/tqclipboard.3qt
index 2e493bc9..62bcbaed 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.