Qt 3 Support Members for QAbstractSocketThe following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code. Public TypesPublic Functions
Signals
Member Type Documentationenum QAbstractSocket::ErrorUse QAbstractSocket::SocketError instead.
typedef QAbstractSocket::StateUse QAbstractSocket::SocketState instead.
Member Function Documentationvoid QAbstractSocket::connectionClosed () [signal]Use disconnected() instead. void QAbstractSocket::delayedCloseFinished () [signal]Use disconnected() instead. void QAbstractSocket::setSocket ( int socket )Use setSocketDescriptor() instead. See also socket(). int QAbstractSocket::socket () constUse socketDescriptor() instead. See also setSocket(). qulonglong QAbstractSocket::waitForMore ( int msecs, bool * timeout = 0 ) constUse waitForReadyRead() instead. For example, if you have code like bool timeout; Q_ULONG numBytes = socket->waitForMore(30000, &timeout); you can rewrite it as qint64 numBytes = 0;
if (socket->waitForReadyRead(msecs))
numBytes = socket->bytesAvailable();
bool timeout = (error() == QAbstractSocket::SocketTimeoutError);
See also waitForReadyRead(), bytesAvailable(), error(), and SocketTimeoutError.
|
|
Попытка перевода Qt документации. Если есть желание присоединиться, или если есть замечания или пожелания, то заходите на форум: Перевод Qt документации на русский язык... Люди внесшие вклад в перевод: Команда переводчиков |