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.3qt22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/man/man3/tqclipboard.3qt b/doc/man/man3/tqclipboard.3qt
index fac76e43f..761819cbd 100644
--- a/doc/man/man3/tqclipboard.3qt
+++ b/doc/man/man3/tqclipboard.3qt
@@ -58,13 +58,13 @@ Inherits TQObject.
.BI "TQImage \fBimage\fR ( Mode mode ) const"
.br
.ti -1c
-.BI "QPixmap \fBpixmap\fR ( Mode mode ) const"
+.BI "TQPixmap \fBpixmap\fR ( Mode mode ) const"
.br
.ti -1c
.BI "void \fBsetImage\fR ( const TQImage & image, Mode mode )"
.br
.ti -1c
-.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap, Mode mode )"
+.BI "void \fBsetPixmap\fR ( const TQPixmap & pixmap, Mode mode )"
.br
.ti -1c
.BI "TQString \fBtext\fR () const"
@@ -85,13 +85,13 @@ Inherits TQObject.
.BI "TQImage \fBimage\fR () const"
.br
.ti -1c
-.BI "QPixmap \fBpixmap\fR () const"
+.BI "TQPixmap \fBpixmap\fR () const"
.br
.ti -1c
.BI "void \fBsetImage\fR ( const TQImage & image )"
.br
.ti -1c
-.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap )"
+.BI "void \fBsetPixmap\fR ( const TQPixmap & pixmap )"
.br
.in -1c
.SS "Signals"
@@ -136,7 +136,7 @@ Example:
.br
.fi
.PP
-TQClipboard 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().
+TQClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of TQPixmaps 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"
@@ -214,13 +214,13 @@ This function uses the TQClipboard::image() function which takes a TQClipboard::
Returns TRUE if this clipboard object owns the clipboard data; otherwise returns FALSE.
.SH "bool TQClipboard::ownsSelection () const"
Returns TRUE if this clipboard object owns the mouse selection data; otherwise returns FALSE.
-.SH "QPixmap TQClipboard::pixmap ( Mode mode ) const"
+.SH "TQPixmap TQClipboard::pixmap ( Mode mode ) const"
Returns the clipboard pixmap, or null if the clipboard does not contain a pixmap. Note that this can lose information. For example, if the image is 24-bit and the display is 8-bit, the result is converted to 8 bits, and if the image has an alpha channel, the result just has a mask.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is TQClipboard::Clipboard, the pixmap is retrieved from the global clipboard. If \fImode\fR is TQClipboard::Selection, the pixmap is retrieved from the global mouse selection.
.PP
-See also setPixmap(), image(), data(), and QPixmap::convertFromImage().
-.SH "QPixmap TQClipboard::pixmap () const"
+See also setPixmap(), image(), data(), and TQPixmap::convertFromImage().
+.SH "TQPixmap TQClipboard::pixmap () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the TQClipboard::pixmap() function which takes a TQClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard.
@@ -266,13 +266,13 @@ See also image(), setPixmap(), and setData().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the TQClipboard::setImage() function which takes a TQClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard.
-.SH "void TQClipboard::setPixmap ( const QPixmap & pixmap, Mode mode )"
-Copies \fIpixmap\fR into the clipboard. Note that this is slower than setImage() because it needs to convert the QPixmap to a TQImage first.
+.SH "void TQClipboard::setPixmap ( const TQPixmap & pixmap, Mode mode )"
+Copies \fIpixmap\fR into the clipboard. Note that this is slower than setImage() because it needs to convert the TQPixmap to a TQImage first.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is TQClipboard::Clipboard, the pixmap is stored in the global clipboard. If \fImode\fR is TQClipboard::Selection, the pixmap is stored in the global mouse selection.
.PP
See also pixmap(), setImage(), and setData().
-.SH "void TQClipboard::setPixmap ( const QPixmap & pixmap )"
+.SH "void TQClipboard::setPixmap ( const TQPixmap & pixmap )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the TQClipboard::setPixmap() function which takes a TQClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard.