| [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 |
| 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] | 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. |
| void | assign | (const QUrlInfo other) | Assigns another object to self |
| [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) |
| [virtual] | void | setDir | (bool b) | Virtual method void QUrlInfo::setDir(bool b) |
| [virtual] | void | setFile | (bool b) | Virtual method void QUrlInfo::setFile(bool b) |
| [virtual] | void | setGroup | (string s) | Virtual method void QUrlInfo::setGroup(const QString &s) |
| [virtual] | 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) |
| [virtual] | void | setName | (string name) | Virtual method void QUrlInfo::setName(const QString &name) |
| [virtual] | void | setOwner | (string s) | Virtual method void QUrlInfo::setOwner(const QString &s) |
| [virtual] | void | setPermissions | (int p) | Virtual method void QUrlInfo::setPermissions(int p) |
| [virtual] | void | setReadable | (bool b) | Virtual method void QUrlInfo::setReadable(bool b) |
| [virtual] | void | setSize | (long long size) | Virtual method void QUrlInfo::setSize(qint64 size) |
| [virtual] | void | setSymLink | (bool b) | Virtual method void QUrlInfo::setSymLink(bool b) |
| [virtual] | 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) |
!= | 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 |
_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. |
_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: void assign (const QUrlInfo other) Description: Assigns another object to self |
create | Signature: void create Description: Ensures the C++ object is created Use of this method is deprecated. Use _create instead |
destroy | Signature: void destroy Description: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead |
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 |
dir | Signature: [const] bool dir Description: Method bool QUrlInfo::isDir() Python specific notes: The object exposes a readable attribute 'dir'. This is the getter.
|
dir= | Signature: void dir= (bool b) Description: Method void QUrlInfo::setDir(bool b) Python specific notes: The object exposes a writable attribute 'dir'. This is the setter.
|
dup | Signature: [const] new QUrlInfo ptr dup Description: Creates a copy of self |
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: The object exposes a readable attribute 'file'. This is the getter.
|
file= | Signature: void file= (bool b) Description: Method void QUrlInfo::setFile(bool b) Python specific notes: The object exposes a writable attribute 'file'. This is the setter.
|
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: The object exposes a readable attribute 'group'. This is the getter.
|
group= | Signature: void group= (string s) Description: Method void QUrlInfo::setGroup(const QString &s) Python specific notes: The object exposes a writable attribute 'group'. This is the setter.
|
isDir? | Signature: [const] bool isDir? Description: Method bool QUrlInfo::isDir() Python specific notes: The object exposes a readable attribute 'dir'. This is the getter.
|
isExecutable? | Signature: [const] bool isExecutable? Description: Method bool QUrlInfo::isExecutable() |
isFile? | Signature: [const] bool isFile? Description: Method bool QUrlInfo::isFile() Python specific notes: The object exposes a readable attribute 'file'. This is the getter.
|
isReadable? | Signature: [const] bool isReadable? Description: Method bool QUrlInfo::isReadable() Python specific notes: The object exposes a readable attribute 'readable'. This is the getter.
|
isSymLink? | Signature: [const] bool isSymLink? Description: Method bool QUrlInfo::isSymLink() Python specific notes: The object exposes a readable attribute 'symLink'. This is the getter.
|
isValid? | Signature: [const] bool isValid? Description: Method bool QUrlInfo::isValid() |
isWritable? | Signature: [const] bool isWritable? Description: Method bool QUrlInfo::isWritable() Python specific notes: The object exposes a readable attribute 'writable'. This is the getter.
|
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 |
lastModified | Signature: [const] QDateTime lastModified Description: Method QDateTime QUrlInfo::lastModified() Python specific notes: The object exposes a readable attribute 'lastModified'. This is the getter.
|
lastModified= | Signature: void lastModified= (const QDateTime dt) Description: Method void QUrlInfo::setLastModified(const QDateTime &dt) Python specific notes: The object exposes a writable attribute 'lastModified'. This is the setter.
|
lastRead | Signature: [const] QDateTime lastRead Description: Method QDateTime QUrlInfo::lastRead() Python specific notes: The object exposes a readable attribute 'lastRead'. This is the getter.
|
lastRead= | Signature: void lastRead= (const QDateTime dt) Description: Method void QUrlInfo::setLastRead(const QDateTime &dt) Python specific notes: The object exposes a writable attribute 'lastRead'. This is the setter.
|
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: The object exposes a readable attribute 'name'. This is the getter.
|
name= | Signature: void name= (string name) Description: Method void QUrlInfo::setName(const QString &name) Python specific notes: The object exposes a writable attribute 'name'. This is the setter.
|
new | Signature: [static] new QUrlInfo new Description: Constructor QUrlInfo::QUrlInfo()
This method creates an object of class QUrlInfo. Python specific notes: This method is the default initializer of the object
|
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: This method is the default initializer of the object
|
owner | Signature: [const] string owner Description: Method QString QUrlInfo::owner() Python specific notes: The object exposes a readable attribute 'owner'. This is the getter.
|
owner= | Signature: void owner= (string s) Description: Method void QUrlInfo::setOwner(const QString &s) Python specific notes: The object exposes a writable attribute 'owner'. This is the setter.
|
permissions | Signature: [const] int permissions Description: Method int QUrlInfo::permissions() Python specific notes: The object exposes a readable attribute 'permissions'. This is the getter.
|
permissions= | Signature: void permissions= (int p) Description: Method void QUrlInfo::setPermissions(int p) Python specific notes: The object exposes a writable attribute 'permissions'. This is the setter.
|
readable | Signature: [const] bool readable Description: Method bool QUrlInfo::isReadable() Python specific notes: The object exposes a readable attribute 'readable'. This is the getter.
|
readable= | Signature: void readable= (bool b) Description: Method void QUrlInfo::setReadable(bool b) Python specific notes: The object exposes a writable attribute 'readable'. This is the setter.
|
setDir | Signature: [virtual] void setDir (bool b) Description: Virtual method void QUrlInfo::setDir(bool b)
This method can be reimplemented in a derived class. |
setFile | Signature: [virtual] void setFile (bool b) Description: Virtual method void QUrlInfo::setFile(bool b)
This method can be reimplemented in a derived class. |
setGroup | Signature: [virtual] void setGroup (string s) Description: Virtual method void QUrlInfo::setGroup(const QString &s)
This method can be reimplemented in a derived class. |
setLastModified | Signature: [virtual] 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: The object exposes a writable attribute 'lastRead'. This is the setter.
|
setName | Signature: [virtual] void setName (string name) Description: Virtual method void QUrlInfo::setName(const QString &name)
This method can be reimplemented in a derived class. |
setOwner | Signature: [virtual] void setOwner (string s) Description: Virtual method void QUrlInfo::setOwner(const QString &s)
This method can be reimplemented in a derived class. |
setPermissions | Signature: [virtual] void setPermissions (int p) Description: Virtual method void QUrlInfo::setPermissions(int p)
This method can be reimplemented in a derived class. |
setReadable | Signature: [virtual] void setReadable (bool b) Description: Virtual method void QUrlInfo::setReadable(bool b)
This method can be reimplemented in a derived class. |
setSize | Signature: [virtual] void setSize (long long size) Description: Virtual method void QUrlInfo::setSize(qint64 size)
This method can be reimplemented in a derived class. |
setSymLink | Signature: [virtual] void setSymLink (bool b) Description: Virtual method void QUrlInfo::setSymLink(bool b)
This method can be reimplemented in a derived class. |
setWritable | Signature: [virtual] 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: The object exposes a readable attribute 'size'. This is the getter.
|
size= | Signature: void size= (long long size) Description: Method void QUrlInfo::setSize(qint64 size) Python specific notes: The object exposes a writable attribute 'size'. This is the setter.
|
symLink | Signature: [const] bool symLink Description: Method bool QUrlInfo::isSymLink() Python specific notes: The object exposes a readable attribute 'symLink'. This is the getter.
|
symLink= | Signature: void symLink= (bool b) Description: Method void QUrlInfo::setSymLink(bool b) Python specific notes: The object exposes a writable attribute 'symLink'. This is the setter.
|
writable | Signature: [const] bool writable Description: Method bool QUrlInfo::isWritable() Python specific notes: The object exposes a readable attribute 'writable'. This is the getter.
|
writable= | Signature: void writable= (bool b) Description: Method void QUrlInfo::setWritable(bool b) Python specific notes: The object exposes a writable attribute 'writable'. This is the setter.
|