API reference - Class QIODeviceNotation used in Ruby API documentation Description: Binding of QIODevice Class hierarchy: QIODevice » QObject Public methods
Public static methods and constants
Detailed description[static] QIODevice_OpenModeFlag AppendDescription: Enum constant QIODevice::Append [static] QIODevice_OpenModeFlag NotOpenDescription: Enum constant QIODevice::NotOpen [static] QIODevice_OpenModeFlag ReadOnlyDescription: Enum constant QIODevice::ReadOnly [static] QIODevice_OpenModeFlag ReadWriteDescription: Enum constant QIODevice::ReadWrite [static] QIODevice_OpenModeFlag TextDescription: Enum constant QIODevice::Text [static] QIODevice_OpenModeFlag TruncateDescription: Enum constant QIODevice::Truncate [static] QIODevice_OpenModeFlag UnbufferedDescription: Enum constant QIODevice::Unbuffered [static] QIODevice_OpenModeFlag WriteOnlyDescription: Enum constant QIODevice::WriteOnly [const] bool atEndDescription: Method bool QIODevice::atEnd() [const] long long bytesAvailableDescription: Method qint64 QIODevice::bytesAvailable() [const] long long bytesToWriteDescription: Method qint64 QIODevice::bytesToWrite() [const] bool canReadLineDescription: Method bool QIODevice::canReadLine() void closeDescription: Method void QIODevice::close() 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. [const] string errorStringDescription: Method QString QIODevice::errorString() [const] bool isOpenDescription: Method bool QIODevice::isOpen() [const] bool isOpen?Description: Method bool QIODevice::isOpen() [const] bool isReadableDescription: Method bool QIODevice::isReadable() [const] bool isReadable?Description: Method bool QIODevice::isReadable() [const] bool isSequentialDescription: Method bool QIODevice::isSequential() [const] bool isSequential?Description: Method bool QIODevice::isSequential() [const] bool isTextModeEnabledDescription: Method bool QIODevice::isTextModeEnabled() [const] bool isTextModeEnabled?Description: Method bool QIODevice::isTextModeEnabled() [const] bool isWritableDescription: Method bool QIODevice::isWritable() [const] bool isWritable?Description: Method bool QIODevice::isWritable() [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. bool open(const QIODevice_QFlags_OpenModeFlag mode)Description: Method bool QIODevice::open(QFlags<QIODevice::OpenModeFlag> mode) [const] QIODevice_QFlags_OpenModeFlag openModeDescription: Method QFlags<QIODevice::OpenModeFlag> QIODevice::openMode() string peek(long long maxlen)Description: Method QByteArray QIODevice::peek(qint64 maxlen) [const] long long posDescription: Method qint64 QIODevice::pos() bool putChar(char c)Description: Method bool QIODevice::putChar(char c) string read(long long maxlen)Description: Method QByteArray QIODevice::read(qint64 maxlen) string readAllDescription: Method QByteArray QIODevice::readAll() string readLine(long long maxlen = 0)Description: Method QByteArray QIODevice::readLine(qint64 maxlen) bool resetDescription: Method bool QIODevice::reset() bool seek(long long pos)Description: Method bool QIODevice::seek(qint64 pos) void setTextModeEnabled(bool enabled)Description: Method void QIODevice::setTextModeEnabled(bool enabled) [const] long long sizeDescription: Method qint64 QIODevice::size() [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. void textModeEnabled=(bool enabled)Description: Method void QIODevice::setTextModeEnabled(bool enabled) [static] string tr(string s,string c = 0)Description: Static method QString QIODevice::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 QIODevice::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 QIODevice::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 QIODevice::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void ungetChar(char c)Description: Method void QIODevice::ungetChar(char c) bool waitForBytesWritten(int msecs)Description: Method bool QIODevice::waitForBytesWritten(int msecs) bool waitForReadyRead(int msecs)Description: Method bool QIODevice::waitForReadyRead(int msecs) long long write(string data,long long len)Description: Method qint64 QIODevice::write(const char *data, qint64 len) long long write(string data)Description: Method qint64 QIODevice::write(const QByteArray &data) |