Definition at line 64 of file qabstractsocket.h.
|
| QAbstractSocket (SocketType socketType, QObject *parent) |
|
virtual | ~QAbstractSocket () |
|
void | connectToHost (const QString &hostName, quint16 port, OpenMode mode=ReadWrite) |
|
void | connectToHost (const QHostAddress &address, quint16 port, OpenMode mode=ReadWrite) |
|
void | disconnectFromHost () |
|
bool | isValid () const |
|
qint64 | bytesAvailable () const |
|
qint64 | bytesToWrite () const |
|
bool | canReadLine () const |
|
quint16 | localPort () const |
|
QHostAddress | localAddress () const |
|
quint16 | peerPort () const |
|
QHostAddress | peerAddress () const |
|
QString | peerName () const |
|
qint64 | readBufferSize () const |
|
void | setReadBufferSize (qint64 size) |
|
void | abort () |
|
int | socketDescriptor () const |
|
bool | setSocketDescriptor (int socketDescriptor, SocketState state=ConnectedState, OpenMode openMode=ReadWrite) |
|
void | setSocketOption (QAbstractSocket::SocketOption option, const QVariant &value) |
|
QVariant | socketOption (QAbstractSocket::SocketOption option) |
|
SocketType | socketType () const |
|
SocketState | state () const |
|
SocketError | error () const |
|
void | close () |
|
bool | isSequential () const |
|
bool | atEnd () const |
|
bool | flush () |
|
bool | waitForConnected (int msecs=30000) |
|
bool | waitForReadyRead (int msecs=30000) |
|
bool | waitForBytesWritten (int msecs=30000) |
|
bool | waitForDisconnected (int msecs=30000) |
|
void | setProxy (const QNetworkProxy &networkProxy) |
|
QNetworkProxy | proxy () const |
|
| QIODevice () |
|
| QIODevice (QObject *parent) |
|
virtual | ~QIODevice () |
|
OpenMode | openMode () const |
|
void | setTextModeEnabled (bool enabled) |
|
bool | isTextModeEnabled () const |
|
bool | isOpen () const |
|
bool | isReadable () const |
|
bool | isWritable () const |
|
virtual bool | open (OpenMode mode) |
|
virtual qint64 | pos () const |
|
virtual qint64 | size () const |
|
virtual bool | seek (qint64 pos) |
|
virtual bool | reset () |
|
qint64 | read (char *data, qint64 maxlen) |
|
QByteArray | read (qint64 maxlen) |
|
QByteArray | readAll () |
|
qint64 | readLine (char *data, qint64 maxlen) |
|
QByteArray | readLine (qint64 maxlen=0) |
|
qint64 | write (const char *data, qint64 len) |
|
qint64 | write (const char *data) |
|
qint64 | write (const QByteArray &data) |
|
qint64 | peek (char *data, qint64 maxlen) |
|
QByteArray | peek (qint64 maxlen) |
|
void | ungetChar (char c) |
|
bool | putChar (char c) |
|
bool | getChar (char *c) |
|
QString | errorString () const |
|
Q_INVOKABLE | QObject (QObject *parent=0) |
|
virtual | ~QObject () |
|
virtual bool | event (QEvent *) |
|
virtual bool | eventFilter (QObject *, QEvent *) |
|
QString | objectName () const |
|
void | setObjectName (const QString &name) |
|
bool | isWidgetType () const |
|
bool | signalsBlocked () const |
|
bool | blockSignals (bool b) |
|
QThread * | thread () const |
|
void | moveToThread (QThread *thread) |
|
int | startTimer (int interval) |
|
void | killTimer (int id) |
|
template<typename T > |
T | findChild (const QString &aName=QString()) const |
|
template<typename T > |
QList< T > | findChildren (const QString &aName=QString()) const |
|
template<typename T > |
QList< T > | findChildren (const QRegExp &re) const |
|
const QObjectList & | children () const |
|
void | setParent (QObject *) |
|
void | installEventFilter (QObject *) |
|
void | removeEventFilter (QObject *) |
|
bool | connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const |
|
bool | disconnect (const char *signal=0, const QObject *receiver=0, const char *member=0) |
|
bool | disconnect (const QObject *receiver, const char *member=0) |
|
void | dumpObjectTree () |
|
void | dumpObjectInfo () |
|
bool | setProperty (const char *name, const QVariant &value) |
|
QVariant | property (const char *name) const |
|
QList< QByteArray > | dynamicPropertyNames () const |
|
void | setUserData (uint id, QObjectUserData *data) |
|
QObjectUserData * | userData (uint id) const |
|
QObject * | parent () const |
|
bool | inherits (const char *classname) const |
|