summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqurloperator.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqurloperator.3qt')
-rw-r--r--doc/man/man3/tqurloperator.3qt64
1 files changed, 32 insertions, 32 deletions
diff --git a/doc/man/man3/tqurloperator.3qt b/doc/man/man3/tqurloperator.3qt
index 937313ac..36c60f02 100644
--- a/doc/man/man3/tqurloperator.3qt
+++ b/doc/man/man3/tqurloperator.3qt
@@ -11,7 +11,7 @@ QUrlOperator \- Common operations on URLs
.SH SYNOPSIS
\fC#include <ntqurloperator.h>\fR
.PP
-Inherits QObject and QUrl.
+Inherits TQObject and QUrl.
.PP
.SS "Public Members"
.in +1c
@@ -19,13 +19,13 @@ Inherits QObject and QUrl.
.BI "\fBQUrlOperator\fR ()"
.br
.ti -1c
-.BI "\fBQUrlOperator\fR ( const QString & url )"
+.BI "\fBQUrlOperator\fR ( const TQString & url )"
.br
.ti -1c
.BI "\fBQUrlOperator\fR ( const QUrlOperator & url )"
.br
.ti -1c
-.BI "\fBQUrlOperator\fR ( const QUrlOperator & url, const QString & relUrl, bool checkSlash = FALSE )"
+.BI "\fBQUrlOperator\fR ( const QUrlOperator & url, const TQString & relUrl, bool checkSlash = FALSE )"
.br
.ti -1c
.BI "virtual \fB~QUrlOperator\fR ()"
@@ -34,37 +34,37 @@ Inherits QObject and QUrl.
.BI "virtual const QNetworkOperation * \fBlistChildren\fR ()"
.br
.ti -1c
-.BI "virtual const QNetworkOperation * \fBmkdir\fR ( const QString & dirname )"
+.BI "virtual const QNetworkOperation * \fBmkdir\fR ( const TQString & dirname )"
.br
.ti -1c
-.BI "virtual const QNetworkOperation * \fBremove\fR ( const QString & filename )"
+.BI "virtual const QNetworkOperation * \fBremove\fR ( const TQString & filename )"
.br
.ti -1c
-.BI "virtual const QNetworkOperation * \fBrename\fR ( const QString & oldname, const QString & newname )"
+.BI "virtual const QNetworkOperation * \fBrename\fR ( const TQString & oldname, const TQString & newname )"
.br
.ti -1c
-.BI "virtual const QNetworkOperation * \fBget\fR ( const QString & location = QString::null )"
+.BI "virtual const QNetworkOperation * \fBget\fR ( const TQString & location = TQString::null )"
.br
.ti -1c
-.BI "virtual const QNetworkOperation * \fBput\fR ( const QByteArray & data, const QString & location = QString::null )"
+.BI "virtual const QNetworkOperation * \fBput\fR ( const QByteArray & data, const TQString & location = TQString::null )"
.br
.ti -1c
-.BI "virtual QPtrList<QNetworkOperation> \fBcopy\fR ( const QString & from, const QString & to, bool move = FALSE, bool toPath = TRUE )"
+.BI "virtual QPtrList<QNetworkOperation> \fBcopy\fR ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )"
.br
.ti -1c
-.BI "virtual void \fBcopy\fR ( const QStringList & files, const QString & dest, bool move = FALSE )"
+.BI "virtual void \fBcopy\fR ( const QStringList & files, const TQString & dest, bool move = FALSE )"
.br
.ti -1c
.BI "virtual bool \fBisDir\fR ( bool * ok = 0 )"
.br
.ti -1c
-.BI "virtual void \fBsetNameFilter\fR ( const QString & nameFilter )"
+.BI "virtual void \fBsetNameFilter\fR ( const TQString & nameFilter )"
.br
.ti -1c
-.BI "QString \fBnameFilter\fR () const"
+.BI "TQString \fBnameFilter\fR () const"
.br
.ti -1c
-.BI "virtual QUrlInfo \fBinfo\fR ( const QString & entry ) const"
+.BI "virtual QUrlInfo \fBinfo\fR ( const TQString & entry ) const"
.br
.ti -1c
.BI "virtual void \fBstop\fR ()"
@@ -100,7 +100,7 @@ Inherits QObject and QUrl.
.BI "void \fBstartedNextCopy\fR ( const QPtrList<QNetworkOperation> & lst )"
.br
.ti -1c
-.BI "void \fBconnectionStateChanged\fR ( int state, const QString & data )"
+.BI "void \fBconnectionStateChanged\fR ( int state, const TQString & data )"
.br
.in -1c
.SS "Protected Members"
@@ -139,7 +139,7 @@ A QUrlOperator can be used like this, for example to download a file (and assumi
.br
QUrlOperator *op = new QUrlOperator();
.br
- op->copy( QString("ftp://ftp.trolltech.com/qt/source/qt-2.1.0.tar.gz"),
+ op->copy( TQString("ftp://ftp.trolltech.com/qt/source/qt-2.1.0.tar.gz"),
.br
"file:/tmp" );
.br
@@ -163,23 +163,23 @@ See also QNetworkProtocol, QNetworkOperation, Input/Output and Networking, and M
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QUrlOperator::QUrlOperator ()"
Constructs a QUrlOperator with an empty (i.e. invalid) URL.
-.SH "QUrlOperator::QUrlOperator ( const QString & url )"
+.SH "QUrlOperator::QUrlOperator ( const TQString & url )"
Constructs a QUrlOperator using \fIurl\fR and parses this string.
.PP
If you pass strings like "/home/qt" the "file" protocol is assumed.
.SH "QUrlOperator::QUrlOperator ( const QUrlOperator & url )"
Constructs a copy of \fIurl\fR.
-.SH "QUrlOperator::QUrlOperator ( const QUrlOperator & url, const QString & relUrl, bool checkSlash = FALSE )"
+.SH "QUrlOperator::QUrlOperator ( const QUrlOperator & url, const TQString & relUrl, bool checkSlash = FALSE )"
Constructs a QUrlOperator. The URL on which this QUrlOperator operates is constructed out of the arguments \fIurl\fR, \fIrelUrl\fR and \fIcheckSlash\fR: see the corresponding QUrl constructor for an explanation of these arguments.
.SH "QUrlOperator::~QUrlOperator ()\fC [virtual]\fR"
Destructor.
.SH "void QUrlOperator::clearEntries ()\fC [virtual protected]\fR"
Clears the cache of children.
-.SH "void QUrlOperator::connectionStateChanged ( int state, const QString & data )\fC [signal]\fR"
+.SH "void QUrlOperator::connectionStateChanged ( int state, const TQString & data )\fC [signal]\fR"
This signal is emitted whenever the URL operator's connection state changes. \fIstate\fR describes the new state, which is a QNetworkProtocol::ConnectionState value.
.PP
\fIdata\fR is a string that describes the change of the connection. This can be used to display a message to the user.
-.SH "QPtrList<QNetworkOperation> QUrlOperator::copy ( const QString & from, const QString & to, bool move = FALSE, bool toPath = TRUE )\fC [virtual]\fR"
+.SH "QPtrList<QNetworkOperation> QUrlOperator::copy ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )\fC [virtual]\fR"
Copies the file \fIfrom\fR to \fIto\fR. If \fImove\fR is TRUE, the file is moved (copied and removed). \fIfrom\fR must point to a file and \fIto\fR must point to a directory (into which \fIfrom\fR is copied) unless \fItoPath\fR is set to FALSE. If \fItoPath\fR is set to FALSE then the \fIto\fR variable is assumed to be the absolute file path (destination file path + file name). The copying is done using the get() and put() operations. If you want to be notified about the progress of the operation, connect to the dataTransferProgress() signal. Bear in mind that the get() and put() operations emit this signal through the QUrlOperator. The number of transferred bytes and the total bytes that you receive as arguments in this signal do not relate to the the whole copy operation; they relate first to the get() and then to the put() operation. Always check what type of operation the signal comes from; this is given in the signal's last argument.
.PP
At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful.
@@ -187,7 +187,7 @@ At the end, finished() (with success or failure) is emitted, so check the state
Because a move or copy operation consists of multiple operations (get(), put() and maybe remove()), this function doesn't return a single QNetworkOperation, but rather a list of them. They are in the order: get(), put() and (if applicable) remove().
.PP
See also get() and put().
-.SH "void QUrlOperator::copy ( const QStringList & files, const QString & dest, bool move = FALSE )\fC [virtual]\fR"
+.SH "void QUrlOperator::copy ( const QStringList & files, const TQString & dest, bool move = FALSE )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Copies the \fIfiles\fR to the directory \fIdest\fR. If \fImove\fR is TRUE the files are moved, not copied. \fIdest\fR must point to a directory.
@@ -213,10 +213,10 @@ Deletes the currently used network protocol.
This signal is emitted when an operation of some sort finishes, whether with success or failure. \fIop\fR is a pointer to the operation object, which contains all the information, including the state, of the operation which has been finished. Check the state and error code of the operation object to see whether or not the operation was successful.
.PP
See also QNetworkOperation and QNetworkProtocol.
-.SH "const QNetworkOperation * QUrlOperator::get ( const QString & location = QString::null )\fC [virtual]\fR"
-Tells the network protocol to get data from \fIlocation\fR or, if this is QString::null, to get data from the location to which this URL points (see QUrl::fileName() and QUrl::encodedPathAndQuery()). What happens then depends on the network protocol. The data() signal is emitted when data comes in. Because it's unlikely that all data will come in at once, it is common for multiple data() signals to be emitted. The dataTransferProgress() signal is emitted while processing the operation. At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful.
+.SH "const QNetworkOperation * QUrlOperator::get ( const TQString & location = TQString::null )\fC [virtual]\fR"
+Tells the network protocol to get data from \fIlocation\fR or, if this is TQString::null, to get data from the location to which this URL points (see QUrl::fileName() and QUrl::encodedPathAndQuery()). What happens then depends on the network protocol. The data() signal is emitted when data comes in. Because it's unlikely that all data will come in at once, it is common for multiple data() signals to be emitted. The dataTransferProgress() signal is emitted while processing the operation. At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful.
.PP
-If \fIlocation\fR is QString::null, the path of this QUrlOperator should point to a file when you use this operation. If \fIlocation\fR is not empty, it can be a relative URL (a child of the path to which the QUrlOperator points) or an absolute URL.
+If \fIlocation\fR is TQString::null, the path of this QUrlOperator should point to a file when you use this operation. If \fIlocation\fR is not empty, it can be a relative URL (a child of the path to which the QUrlOperator points) or an absolute URL.
.PP
For example, to get a web page you might do something like this:
.PP
@@ -257,7 +257,7 @@ If \fIlocation\fR is not empty and relative it must not contain any queries or r
See also copy().
.SH "void QUrlOperator::getNetworkProtocol ()\fC [protected]\fR"
Finds a network protocol for the URL and deletes the old network protocol.
-.SH "QUrlInfo QUrlOperator::info ( const QString & entry ) const\fC [virtual]\fR"
+.SH "QUrlInfo QUrlOperator::info ( const TQString & entry ) const\fC [virtual]\fR"
Returns the URL information for the child \fIentry\fR, or returns an empty QUrlInfo object if there is no information available about \fIentry\fR. Information about \fIentry\fR is only available after a successfully finished listChildren() operation.
.SH "bool QUrlOperator::isDir ( bool * ok = 0 )\fC [virtual]\fR"
Returns TRUE if the URL is a directory; otherwise returns FALSE. This may not always work correctly, if the protocol of the URL is something other than file (local filesystem). If you pass a bool pointer as the \fIok\fR argument, \fI*ok\fR is set to TRUE if the result of this function is known to be correct, and to FALSE otherwise.
@@ -271,13 +271,13 @@ Starts listing the children of this URL (e.g. the files in the directory). The s
Because the operation may not be executed immediately, a pointer to the QNetworkOperation object created by this function is returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the signals that are emitted by the QUrlOperator). The return value can also be 0 if the operation object couldn't be created.
.PP
The path of this QUrlOperator must to point to a directory (because the children of this directory will be listed), not to a file.
-.SH "const QNetworkOperation * QUrlOperator::mkdir ( const QString & dirname )\fC [virtual]\fR"
+.SH "const QNetworkOperation * QUrlOperator::mkdir ( const TQString & dirname )\fC [virtual]\fR"
Tries to create a directory (child) with the name \fIdirname\fR. If it is successful, a newChildren() signal with the new child is emitted, and the createdDirectory() signal with the information about the new child is also emitted. The finished() signal (with success or failure) is emitted after the operation has been processed, so check the state of the network operation object to see whether or not the operation was successful.
.PP
Because the operation will not be executed immediately, a pointer to the QNetworkOperation object created by this function is returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the signals that are emitted by the QUrlOperator). The return value can also be 0 if the operation object couldn't be created.
.PP
The path of this QUrlOperator must to point to a directory (not a file) because the new directory will be created in this path.
-.SH "QString QUrlOperator::nameFilter () const"
+.SH "TQString QUrlOperator::nameFilter () const"
Returns the name filter of the URL.
.PP
See also QUrlOperator::setNameFilter() and QDir::nameFilter().
@@ -285,10 +285,10 @@ See also QUrlOperator::setNameFilter() and QDir::nameFilter().
This signal is emitted after listChildren() was called and new children (i.e. files) have been read from a list of files. \fIi\fR holds the information about the new files. \fIop\fR is a pointer to the operation object which contains all the information about the operation, including the state.
.PP
See also QNetworkOperation and QNetworkProtocol.
-.SH "const QNetworkOperation * QUrlOperator::put ( const QByteArray & data, const QString & location = QString::null )\fC [virtual]\fR"
-This function tells the network protocol to put \fIdata\fR in \fIlocation\fR. If \fIlocation\fR is empty (QString::null), it puts the \fIdata\fR in the location to which the URL points. What happens depends on the network protocol. Depending on the network protocol, some data might come back after putting data, in which case the data() signal is emitted. The dataTransferProgress() signal is emitted during processing of the operation. At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful.
+.SH "const QNetworkOperation * QUrlOperator::put ( const QByteArray & data, const TQString & location = TQString::null )\fC [virtual]\fR"
+This function tells the network protocol to put \fIdata\fR in \fIlocation\fR. If \fIlocation\fR is empty (TQString::null), it puts the \fIdata\fR in the location to which the URL points. What happens depends on the network protocol. Depending on the network protocol, some data might come back after putting data, in which case the data() signal is emitted. The dataTransferProgress() signal is emitted during processing of the operation. At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful.
.PP
-If \fIlocation\fR is QString::null, the path of this QUrlOperator should point to a file when you use this operation. If \fIlocation\fR is not empty, it can be a relative (a child of the path to which the QUrlOperator points) or an absolute URL.
+If \fIlocation\fR is TQString::null, the path of this QUrlOperator should point to a file when you use this operation. If \fIlocation\fR is not empty, it can be a relative (a child of the path to which the QUrlOperator points) or an absolute URL.
.PP
For putting some data to a file you can do the following:
.PP
@@ -315,7 +315,7 @@ For most other operations, the path of the QUrlOperator must point to a director
This will upload the data to ftp://ftp.whatever.com/home/me/filename.dat.
.PP
See also copy().
-.SH "const QNetworkOperation * QUrlOperator::remove ( const QString & filename )\fC [virtual]\fR"
+.SH "const QNetworkOperation * QUrlOperator::remove ( const TQString & filename )\fC [virtual]\fR"
Tries to remove the file (child) \fIfilename\fR. If it succeeds the removed() signal is emitted. finished() (with success or failure) is also emitted after the operation has been processed, so check the state of the network operation object to see whether or not the operation was successful.
.PP
Because the operation will not be executed immediately, a pointer to the QNetworkOperation object created by this function is returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the signals that are emitted by the QUrlOperator). The return value can also be 0 if the operation object couldn't be created.
@@ -327,13 +327,13 @@ This signal is emitted when remove() has been succesful and the file has been re
\fIop\fR is a pointer to the operation object which contains all the information about the operation, including the state. \fCop->arg(0)\fR holds the name of the file that was removed.
.PP
See also QNetworkOperation and QNetworkProtocol.
-.SH "const QNetworkOperation * QUrlOperator::rename ( const QString & oldname, const QString & newname )\fC [virtual]\fR"
+.SH "const QNetworkOperation * QUrlOperator::rename ( const TQString & oldname, const TQString & newname )\fC [virtual]\fR"
Tries to rename the file (child) called \fIoldname\fR to \fInewname\fR. If it succeeds, the itemChanged() signal is emitted. finished() (with success or failure) is also emitted after the operation has been processed, so check the state of the network operation object to see whether or not the operation was successful.
.PP
Because the operation may not be executed immediately, a pointer to the QNetworkOperation object created by this function is returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the signals that are emitted by the QUrlOperator). The return value can also be 0 if the operation object couldn't be created.
.PP
This path of this QUrlOperator must to point to a directory because \fIoldname\fR and \fInewname\fR are handled relative to this directory.
-.SH "void QUrlOperator::setNameFilter ( const QString & nameFilter )\fC [virtual]\fR"
+.SH "void QUrlOperator::setNameFilter ( const TQString & nameFilter )\fC [virtual]\fR"
Sets the name filter of the URL to \fInameFilter\fR.
.PP
See also QDir::setNameFilter().