Notation used in Ruby API documentation
Module: QtNetwork
Description: Binding of QUrlInfo
Class hierarchy: QUrlInfo
new QUrlInfo | new | Constructor QUrlInfo::QUrlInfo() | |
new QUrlInfo | new | (const QUrlInfo ui) | Constructor QUrlInfo::QUrlInfo(const QUrlInfo &ui) |
[const] | bool | != | (const QUrlInfo i) | Method bool QUrlInfo::operator!=(const QUrlInfo &i) |
[const] | bool | == | (const QUrlInfo i) | Method bool QUrlInfo::operator==(const QUrlInfo &i) |
void | _assign | (const QUrlInfo other) | Assigns another object to self | |
[const] | QUrlInfo ptr | _const_cast | Returns a non-const reference to self. | |
void | _create | Ensures the C++ object is created | ||
void | _destroy | Explicitly destroys the object | ||
[const] | bool | _destroyed? | Returns a value indicating whether the object was already destroyed | |
[const] | new QUrlInfo ptr | _dup | Creates a copy of self | |
[const] | bool | _is_const_object? | Returns a value indicating whether the reference is a const reference | |
void | _manage | Marks the object as managed by the script side. | ||
void | _unmanage | Marks the object as no longer owned by the script side. | ||
QUrlInfo | assign | (const QUrlInfo ui) | Method QUrlInfo &QUrlInfo::operator=(const QUrlInfo &ui) | |
[const] | bool | dir | Method bool QUrlInfo::isDir() | |
void | dir= | (bool b) | Method void QUrlInfo::setDir(bool b) | |
[const] | new QUrlInfo ptr | dup | Creates a copy of self | |
[const] | bool | file | Method bool QUrlInfo::isFile() | |
void | file= | (bool b) | Method void QUrlInfo::setFile(bool b) | |
[const] | string | group | Method QString QUrlInfo::group() | |
void | group= | (string s) | Method void QUrlInfo::setGroup(const QString &s) | |
[const] | bool | isDir? | Method bool QUrlInfo::isDir() | |
[const] | bool | isExecutable? | Method bool QUrlInfo::isExecutable() | |
[const] | bool | isFile? | Method bool QUrlInfo::isFile() | |
[const] | bool | isReadable? | Method bool QUrlInfo::isReadable() | |
[const] | bool | isSymLink? | Method bool QUrlInfo::isSymLink() | |
[const] | bool | isValid? | Method bool QUrlInfo::isValid() | |
[const] | bool | isWritable? | Method bool QUrlInfo::isWritable() | |
[const] | QDateTime | lastModified | Method QDateTime QUrlInfo::lastModified() | |
void | lastModified= | (const QDateTime dt) | Method void QUrlInfo::setLastModified(const QDateTime &dt) | |
[const] | QDateTime | lastRead | Method QDateTime QUrlInfo::lastRead() | |
void | lastRead= | (const QDateTime dt) | Method void QUrlInfo::setLastRead(const QDateTime &dt) | |
[const] | string | name | Method QString QUrlInfo::name() | |
void | name= | (string name) | Method void QUrlInfo::setName(const QString &name) | |
[const] | string | owner | Method QString QUrlInfo::owner() | |
void | owner= | (string s) | Method void QUrlInfo::setOwner(const QString &s) | |
[const] | int | permissions | Method int QUrlInfo::permissions() | |
void | permissions= | (int p) | Method void QUrlInfo::setPermissions(int p) | |
[const] | bool | readable | Method bool QUrlInfo::isReadable() | |
void | readable= | (bool b) | Method void QUrlInfo::setReadable(bool b) | |
void | setDir | (bool b) | Virtual method void QUrlInfo::setDir(bool b) | |
void | setFile | (bool b) | Virtual method void QUrlInfo::setFile(bool b) | |
void | setGroup | (string s) | Virtual method void QUrlInfo::setGroup(const QString &s) | |
void | setLastModified | (const QDateTime dt) | Virtual method void QUrlInfo::setLastModified(const QDateTime &dt) | |
void | setLastRead | (const QDateTime dt) | Method void QUrlInfo::setLastRead(const QDateTime &dt) | |
void | setName | (string name) | Virtual method void QUrlInfo::setName(const QString &name) | |
void | setOwner | (string s) | Virtual method void QUrlInfo::setOwner(const QString &s) | |
void | setPermissions | (int p) | Virtual method void QUrlInfo::setPermissions(int p) | |
void | setReadable | (bool b) | Virtual method void QUrlInfo::setReadable(bool b) | |
void | setSize | (long long size) | Virtual method void QUrlInfo::setSize(qint64 size) | |
void | setSymLink | (bool b) | Virtual method void QUrlInfo::setSymLink(bool b) | |
void | setWritable | (bool b) | Virtual method void QUrlInfo::setWritable(bool b) | |
[const] | long long | size | Method qint64 QUrlInfo::size() | |
void | size= | (long long size) | Method void QUrlInfo::setSize(qint64 size) | |
[const] | bool | symLink | Method bool QUrlInfo::isSymLink() | |
void | symLink= | (bool b) | Method void QUrlInfo::setSymLink(bool b) | |
[const] | bool | writable | Method bool QUrlInfo::isWritable() | |
void | writable= | (bool b) | Method void QUrlInfo::setWritable(bool b) |
bool | equal | (const QUrlInfo i1, const QUrlInfo i2, int sortBy) | Static method bool QUrlInfo::equal(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) | |
bool | greaterThan | (const QUrlInfo i1, const QUrlInfo i2, int sortBy) | Static method bool QUrlInfo::greaterThan(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) | |
bool | lessThan | (const QUrlInfo i1, const QUrlInfo i2, int sortBy) | Static method bool QUrlInfo::lessThan(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) |
void | create | Use of this method is deprecated. Use _create instead | ||
void | destroy | Use of this method is deprecated. Use _destroy instead | ||
[const] | bool | destroyed? | Use of this method is deprecated. Use _destroyed? instead | |
[const] | bool | is_const_object? | Use of this method is deprecated. Use _is_const_object? instead |
!= | Signature: [const] bool != (const QUrlInfo i) Description: Method bool QUrlInfo::operator!=(const QUrlInfo &i) |
== | Signature: [const] bool == (const QUrlInfo i) Description: Method bool QUrlInfo::operator==(const QUrlInfo &i) |
_assign | Signature: void _assign (const QUrlInfo other) Description: Assigns another object to self |
_const_cast | Signature: [const] QUrlInfo ptr _const_cast Description: Returns a non-const reference to self. Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects. This method has been introduced in version 0.29.6. |
_create | Signature: void _create Description: 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. |
_destroy | Signature: void _destroy Description: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. |
_destroyed? | Signature: [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. |
_dup | Signature: [const] new QUrlInfo ptr _dup Description: Creates a copy of self |
_is_const_object? | Signature: [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. |
_manage | Signature: void _manage Description: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. |
_unmanage | Signature: void _unmanage Description: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. |
assign | Signature: QUrlInfo assign (const QUrlInfo ui) Description: Method QUrlInfo &QUrlInfo::operator=(const QUrlInfo &ui) |
create | Signature: void create Description: Ensures the C++ object is created Use of this method is deprecated. Use _create instead 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. |
destroy | Signature: void destroy Description: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. |
destroyed? | Signature: [const] bool destroyed? Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead 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. |
dir | Signature: [const] bool dir Description: Method bool QUrlInfo::isDir() Python specific notes: |
dir= | Signature: void dir= (bool b) Description: Method void QUrlInfo::setDir(bool b) Python specific notes: |
dup | Signature: [const] new QUrlInfo ptr dup Description: Creates a copy of self Python specific notes: |
equal | Signature: [static] bool equal (const QUrlInfo i1, const QUrlInfo i2, int sortBy) Description: Static method bool QUrlInfo::equal(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) This method is static and can be called without an instance. |
file | Signature: [const] bool file Description: Method bool QUrlInfo::isFile() Python specific notes: |
file= | Signature: void file= (bool b) Description: Method void QUrlInfo::setFile(bool b) Python specific notes: |
greaterThan | Signature: [static] bool greaterThan (const QUrlInfo i1, const QUrlInfo i2, int sortBy) Description: Static method bool QUrlInfo::greaterThan(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) This method is static and can be called without an instance. |
group | Signature: [const] string group Description: Method QString QUrlInfo::group() Python specific notes: |
group= | Signature: void group= (string s) Description: Method void QUrlInfo::setGroup(const QString &s) Python specific notes: |
isDir? | Signature: [const] bool isDir? Description: Method bool QUrlInfo::isDir() Python specific notes: |
isExecutable? | Signature: [const] bool isExecutable? Description: Method bool QUrlInfo::isExecutable() |
isFile? | Signature: [const] bool isFile? Description: Method bool QUrlInfo::isFile() Python specific notes: |
isReadable? | Signature: [const] bool isReadable? Description: Method bool QUrlInfo::isReadable() Python specific notes: |
isSymLink? | Signature: [const] bool isSymLink? Description: Method bool QUrlInfo::isSymLink() Python specific notes: |
isValid? | Signature: [const] bool isValid? Description: Method bool QUrlInfo::isValid() |
isWritable? | Signature: [const] bool isWritable? Description: Method bool QUrlInfo::isWritable() Python specific notes: |
is_const_object? | Signature: [const] bool is_const_object? Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead This method returns true, if self is a const reference. In that case, only const methods may be called on self. |
lastModified | Signature: [const] QDateTime lastModified Description: Method QDateTime QUrlInfo::lastModified() Python specific notes: |
lastModified= | Signature: void lastModified= (const QDateTime dt) Description: Method void QUrlInfo::setLastModified(const QDateTime &dt) Python specific notes: |
lastRead | Signature: [const] QDateTime lastRead Description: Method QDateTime QUrlInfo::lastRead() Python specific notes: |
lastRead= | Signature: void lastRead= (const QDateTime dt) Description: Method void QUrlInfo::setLastRead(const QDateTime &dt) Python specific notes: |
lessThan | Signature: [static] bool lessThan (const QUrlInfo i1, const QUrlInfo i2, int sortBy) Description: Static method bool QUrlInfo::lessThan(const QUrlInfo &i1, const QUrlInfo &i2, int sortBy) This method is static and can be called without an instance. |
name | Signature: [const] string name Description: Method QString QUrlInfo::name() Python specific notes: |
name= | Signature: void name= (string name) Description: Method void QUrlInfo::setName(const QString &name) Python specific notes: |
new | (1) Signature: [static] new QUrlInfo new Description: Constructor QUrlInfo::QUrlInfo() This method creates an object of class QUrlInfo. Python specific notes: |
(2) Signature: [static] new QUrlInfo new (const QUrlInfo ui) Description: Constructor QUrlInfo::QUrlInfo(const QUrlInfo &ui) This method creates an object of class QUrlInfo. Python specific notes: | |
owner | Signature: [const] string owner Description: Method QString QUrlInfo::owner() Python specific notes: |
owner= | Signature: void owner= (string s) Description: Method void QUrlInfo::setOwner(const QString &s) Python specific notes: |
permissions | Signature: [const] int permissions Description: Method int QUrlInfo::permissions() Python specific notes: |
permissions= | Signature: void permissions= (int p) Description: Method void QUrlInfo::setPermissions(int p) Python specific notes: |
readable | Signature: [const] bool readable Description: Method bool QUrlInfo::isReadable() Python specific notes: |
readable= | Signature: void readable= (bool b) Description: Method void QUrlInfo::setReadable(bool b) Python specific notes: |
setDir | Signature: void setDir (bool b) Description: Virtual method void QUrlInfo::setDir(bool b) This method can be reimplemented in a derived class. |
setFile | Signature: void setFile (bool b) Description: Virtual method void QUrlInfo::setFile(bool b) This method can be reimplemented in a derived class. |
setGroup | Signature: void setGroup (string s) Description: Virtual method void QUrlInfo::setGroup(const QString &s) This method can be reimplemented in a derived class. |
setLastModified | Signature: void setLastModified (const QDateTime dt) Description: Virtual method void QUrlInfo::setLastModified(const QDateTime &dt) This method can be reimplemented in a derived class. |
setLastRead | Signature: void setLastRead (const QDateTime dt) Description: Method void QUrlInfo::setLastRead(const QDateTime &dt) Python specific notes: |
setName | Signature: void setName (string name) Description: Virtual method void QUrlInfo::setName(const QString &name) This method can be reimplemented in a derived class. |
setOwner | Signature: void setOwner (string s) Description: Virtual method void QUrlInfo::setOwner(const QString &s) This method can be reimplemented in a derived class. |
setPermissions | Signature: void setPermissions (int p) Description: Virtual method void QUrlInfo::setPermissions(int p) This method can be reimplemented in a derived class. |
setReadable | Signature: void setReadable (bool b) Description: Virtual method void QUrlInfo::setReadable(bool b) This method can be reimplemented in a derived class. |
setSize | Signature: void setSize (long long size) Description: Virtual method void QUrlInfo::setSize(qint64 size) This method can be reimplemented in a derived class. |
setSymLink | Signature: void setSymLink (bool b) Description: Virtual method void QUrlInfo::setSymLink(bool b) This method can be reimplemented in a derived class. |
setWritable | Signature: void setWritable (bool b) Description: Virtual method void QUrlInfo::setWritable(bool b) This method can be reimplemented in a derived class. |
size | Signature: [const] long long size Description: Method qint64 QUrlInfo::size() Python specific notes: |
size= | Signature: void size= (long long size) Description: Method void QUrlInfo::setSize(qint64 size) Python specific notes: |
symLink | Signature: [const] bool symLink Description: Method bool QUrlInfo::isSymLink() Python specific notes: |
symLink= | Signature: void symLink= (bool b) Description: Method void QUrlInfo::setSymLink(bool b) Python specific notes: |
writable | Signature: [const] bool writable Description: Method bool QUrlInfo::isWritable() Python specific notes: |
writable= | Signature: void writable= (bool b) Description: Method void QUrlInfo::setWritable(bool b) Python specific notes: |