API reference - Class QLocalSocketNotation used in Ruby API documentation Description: Binding of QLocalSocket Class hierarchy: QLocalSocket » QIODevice » QObject Public constructors
Public methods
Public static methods and constants
Detailed description[static] QLocalSocket_LocalSocketState ClosingStateDescription: Enum constant QLocalSocket::ClosingState [static] QLocalSocket_LocalSocketState ConnectedStateDescription: Enum constant QLocalSocket::ConnectedState [static] QLocalSocket_LocalSocketState ConnectingStateDescription: Enum constant QLocalSocket::ConnectingState [static] QLocalSocket_LocalSocketError ConnectionErrorDescription: Enum constant QLocalSocket::ConnectionError [static] QLocalSocket_LocalSocketError ConnectionRefusedErrorDescription: Enum constant QLocalSocket::ConnectionRefusedError [static] QLocalSocket_LocalSocketError DatagramTooLargeErrorDescription: Enum constant QLocalSocket::DatagramTooLargeError [static] QLocalSocket_LocalSocketError PeerClosedErrorDescription: Enum constant QLocalSocket::PeerClosedError [static] QLocalSocket_LocalSocketError ServerNotFoundErrorDescription: Enum constant QLocalSocket::ServerNotFoundError [static] QLocalSocket_LocalSocketError SocketAccessErrorDescription: Enum constant QLocalSocket::SocketAccessError [static] QLocalSocket_LocalSocketError SocketResourceErrorDescription: Enum constant QLocalSocket::SocketResourceError [static] QLocalSocket_LocalSocketError SocketTimeoutErrorDescription: Enum constant QLocalSocket::SocketTimeoutError [static] QLocalSocket_LocalSocketState UnconnectedStateDescription: Enum constant QLocalSocket::UnconnectedState [static] QLocalSocket_LocalSocketError UnknownSocketErrorDescription: Enum constant QLocalSocket::UnknownSocketError [static] QLocalSocket_LocalSocketError UnsupportedSocketOperationErrorDescription: Enum constant QLocalSocket::UnsupportedSocketOperationError void abortDescription: Method void QLocalSocket::abort() [const] long long bytesAvailableDescription: Method qint64 QLocalSocket::bytesAvailable() This is a reimplementation of QIODevice::bytesAvailable [const] long long bytesToWriteDescription: Method qint64 QLocalSocket::bytesToWrite() This is a reimplementation of QIODevice::bytesToWrite [const] bool canReadLineDescription: Method bool QLocalSocket::canReadLine() This is a reimplementation of QIODevice::canReadLine void closeDescription: Method void QLocalSocket::close() This is a reimplementation of QIODevice::close void connectToServer(string name,const QIODevice_QFlags_OpenModeFlag openMode = QIODevice::ReadWrite)Description: Method void QLocalSocket::connectToServer(const QString &name, QFlags<QIODevice::OpenModeFlag> openMode) void createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void destroyDescription: Explicitly destroy the object Explicitly destroy the object on C++ side if it was owned by the Ruby interpreter. Subsequent access to this object will throw an exception. If the object is not owned by Ruby, this method will do nothing. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. void disconnectFromServerDescription: Method void QLocalSocket::disconnectFromServer() [const] QLocalSocket_LocalSocketError errorDescription: Method QLocalSocket::LocalSocketError QLocalSocket::error() bool flushDescription: Method bool QLocalSocket::flush() [const] string fullServerNameDescription: Method QString QLocalSocket::fullServerName() [const] bool isSequentialDescription: Method bool QLocalSocket::isSequential() This is a reimplementation of QIODevice::isSequential [const] bool isSequential?Description: Method bool QLocalSocket::isSequential() This is a reimplementation of QIODevice::isSequential [const] bool isValidDescription: Method bool QLocalSocket::isValid() [const] bool isValid?Description: Method bool QLocalSocket::isValid() [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. [static] new QLocalSocket new(QObject ptr parent = 0)Description: Constructor QLocalSocket::QLocalSocket(QObject *parent) This method creates an object of class QLocalSocket. [const] long long readBufferSizeDescription: Method qint64 QLocalSocket::readBufferSize() void readBufferSize=(long long size)Description: Method void QLocalSocket::setReadBufferSize(qint64 size) [const] string serverNameDescription: Method QString QLocalSocket::serverName() void setReadBufferSize(long long size)Description: Method void QLocalSocket::setReadBufferSize(qint64 size) bool setSocketDescriptor(unsigned int socketDescriptor,const QLocalSocket_LocalSocketState socketState = QLocalSocket::ConnectedState,const QIODevice_QFlags_OpenModeFlag openMode = QIODevice::ReadWrite)Description: Method bool QLocalSocket::setSocketDescriptor(quintptr socketDescriptor, QLocalSocket::LocalSocketState socketState, QFlags<QIODevice::OpenModeFlag> openMode) [const] unsigned int socketDescriptorDescription: Method quintptr QLocalSocket::socketDescriptor() [const] QLocalSocket_LocalSocketState stateDescription: Method QLocalSocket::LocalSocketState QLocalSocket::state() [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. [static] string tr(string s,string c = 0)Description: Static method QString QLocalSocket::tr(const char *s, const char *c) This method is static and can be called without an instance. [static] string tr(string s,string c,int n)Description: Static method QString QLocalSocket::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. [static] string trUtf8(string s,string c = 0)Description: Static method QString QLocalSocket::trUtf8(const char *s, const char *c) This method is static and can be called without an instance. [static] string trUtf8(string s,string c,int n)Description: Static method QString QLocalSocket::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. bool waitForBytesWritten(int msecs = 30000)Description: Method bool QLocalSocket::waitForBytesWritten(int msecs) This is a reimplementation of QIODevice::waitForBytesWritten bool waitForConnected(int msecs = 30000)Description: Method bool QLocalSocket::waitForConnected(int msecs) bool waitForDisconnected(int msecs = 30000)Description: Method bool QLocalSocket::waitForDisconnected(int msecs) bool waitForReadyRead(int msecs = 30000)Description: Method bool QLocalSocket::waitForReadyRead(int msecs) This is a reimplementation of QIODevice::waitForReadyRead |