summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqclipboard.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqclipboard.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.tar.gz
tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/man/man3/tqclipboard.3qt')
-rw-r--r--doc/man/man3/tqclipboard.3qt52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/man/man3/tqclipboard.3qt b/doc/man/man3/tqclipboard.3qt
index c7936220..a837a697 100644
--- a/doc/man/man3/tqclipboard.3qt
+++ b/doc/man/man3/tqclipboard.3qt
@@ -11,7 +11,7 @@ QClipboard \- Access to the window system clipboard
.SH SYNOPSIS
\fC#include <ntqclipboard.h>\fR
.PP
-Inherits QObject.
+Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
@@ -40,13 +40,13 @@ Inherits QObject.
.BI "bool selectionModeEnabled () const \fI(obsolete)\fR"
.br
.ti -1c
-.BI "QString \fBtext\fR ( Mode mode ) const"
+.BI "TQString \fBtext\fR ( Mode mode ) const"
.br
.ti -1c
-.BI "QString \fBtext\fR ( QCString & subtype, Mode mode ) const"
+.BI "TQString \fBtext\fR ( QCString & subtype, Mode mode ) const"
.br
.ti -1c
-.BI "void \fBsetText\fR ( const QString & text, Mode mode )"
+.BI "void \fBsetText\fR ( const TQString & text, Mode mode )"
.br
.ti -1c
.BI "QMimeSource * \fBdata\fR ( Mode mode ) const"
@@ -55,25 +55,25 @@ Inherits QObject.
.BI "void \fBsetData\fR ( QMimeSource * src, Mode mode )"
.br
.ti -1c
-.BI "QImage \fBimage\fR ( Mode mode ) const"
+.BI "TQImage \fBimage\fR ( Mode mode ) const"
.br
.ti -1c
.BI "QPixmap \fBpixmap\fR ( Mode mode ) const"
.br
.ti -1c
-.BI "void \fBsetImage\fR ( const QImage & image, Mode mode )"
+.BI "void \fBsetImage\fR ( const TQImage & image, Mode mode )"
.br
.ti -1c
.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap, Mode mode )"
.br
.ti -1c
-.BI "QString \fBtext\fR () const"
+.BI "TQString \fBtext\fR () const"
.br
.ti -1c
-.BI "QString \fBtext\fR ( QCString & subtype ) const"
+.BI "TQString \fBtext\fR ( QCString & subtype ) const"
.br
.ti -1c
-.BI "void \fBsetText\fR ( const QString & text )"
+.BI "void \fBsetText\fR ( const TQString & text )"
.br
.ti -1c
.BI "QMimeSource * \fBdata\fR () const"
@@ -82,13 +82,13 @@ Inherits QObject.
.BI "void \fBsetData\fR ( QMimeSource * src )"
.br
.ti -1c
-.BI "QImage \fBimage\fR () const"
+.BI "TQImage \fBimage\fR () const"
.br
.ti -1c
.BI "QPixmap \fBpixmap\fR () const"
.br
.ti -1c
-.BI "void \fBsetImage\fR ( const QImage & image )"
+.BI "void \fBsetImage\fR ( const TQImage & image )"
.br
.ti -1c
.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap )"
@@ -121,7 +121,7 @@ Example:
.br
// Copy text from the clipboard (paste)
.br
- QString text = cb->text(QClipboard::Clipboard);
+ TQString text = cb->text(QClipboard::Clipboard);
.br
if ( !text.isNull() )
.br
@@ -200,13 +200,13 @@ This is an overloaded member function, provided for convenience. It behaves esse
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.
.SH "void QClipboard::dataChanged ()\fC [signal]\fR"
This signal is emitted when the clipboard data is changed.
-.SH "QImage QClipboard::image ( Mode mode ) const"
+.SH "TQImage QClipboard::image ( Mode mode ) const"
Returns the clipboard image, or returns a null image if the clipboard does not contain an image or if it contains an image in an unsupported image format.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the image is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the image is retrieved from the global mouse selection.
.PP
-See also setImage(), pixmap(), data(), and QImage::isNull().
-.SH "QImage QClipboard::image () const"
+See also setImage(), pixmap(), data(), and TQImage::isNull().
+.SH "TQImage QClipboard::image () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::image() 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.
@@ -248,7 +248,7 @@ See also data().
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.
-.SH "void QClipboard::setImage ( const QImage & image, Mode mode )"
+.SH "void QClipboard::setImage ( const TQImage & image, Mode mode )"
Copies \fIimage\fR into the clipboard.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the image is stored in the global clipboard. If \fImode\fR is QClipboard::Selection, the data is stored in the global mouse selection.
@@ -262,12 +262,12 @@ This is shorthand for:
.fi
.PP
See also image(), setPixmap(), and setData().
-.SH "void QClipboard::setImage ( const QImage & image )"
+.SH "void QClipboard::setImage ( const TQImage & image )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::setImage() 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 "void QClipboard::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 QImage first.
+Copies \fIpixmap\fR into the clipboard. Note that this is slower than setImage() because it needs to convert the QPixmap 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 QClipboard::Clipboard, the pixmap is stored in the global clipboard. If \fImode\fR is QClipboard::Selection, the pixmap is stored in the global mouse selection.
.PP
@@ -284,7 +284,7 @@ Use the QClipboard::data(), QClipboard::setData() and related functions which ta
Sets the clipboard selection mode. If \fIenable\fR is TRUE, then subsequent calls to QClipboard::setData() and other functions which put data into the clipboard will put the data into the mouse selection, otherwise the data will be put into the clipboard.
.PP
See also supportsSelection() and selectionModeEnabled().
-.SH "void QClipboard::setText ( const QString & text, Mode mode )"
+.SH "void QClipboard::setText ( const TQString & text, Mode mode )"
Copies \fItext\fR into the clipboard as plain text.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the text is stored in the global clipboard. If \fImode\fR is QClipboard::Selection, the text is stored in the global mouse selection.
@@ -292,7 +292,7 @@ The \fImode\fR argument is used to control which part of the system clipboard is
See also text() and setData().
.PP
Example: regexptester/regexptester.cpp.
-.SH "void QClipboard::setText ( const QString & text )"
+.SH "void QClipboard::setText ( const TQString & text )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::setText() 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.
@@ -300,13 +300,13 @@ This function uses the QClipboard::setText() function which takes a QClipboard::
Returns TRUE if the clipboard supports mouse selection; otherwise returns FALSE.
.PP
Example: regexptester/regexptester.cpp.
-.SH "QString QClipboard::text ( Mode mode ) const"
+.SH "TQString QClipboard::text ( Mode mode ) const"
Returns the clipboard text as plain text, or a null string if the clipboard does not contain any text.
.PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the text is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the text is retrieved from the global mouse selection.
.PP
-See also setText(), data(), and QString::operator!().
-.SH "QString QClipboard::text ( QCString & subtype, Mode mode ) const"
+See also setText(), data(), and TQString::operator!().
+.SH "TQString QClipboard::text ( QCString & subtype, Mode mode ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the clipboard text in subtype \fIsubtype\fR, or a null string if the clipboard does not contain any text. If \fIsubtype\fR is null, any subtype is acceptable, and \fIsubtype\fR is set to the chosen subtype.
@@ -315,12 +315,12 @@ The \fImode\fR argument is used to control which part of the system clipboard is
.PP
Common values for \fIsubtype\fR are "plain" and "html".
.PP
-See also setText(), data(), and QString::operator!().
-.SH "QString QClipboard::text () const"
+See also setText(), data(), and TQString::operator!().
+.SH "TQString QClipboard::text () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
This function uses the QClipboard::text() 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 "QString QClipboard::text ( QCString & subtype ) const"
+.SH "TQString QClipboard::text ( QCString & subtype ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the clipboard text in subtype \fIsubtype\fR, or a null string