Notation used in Ruby API documentation
Module: QtMultimedia
Description: Binding of QMediaResource
new QMediaResource | new | Constructor QMediaResource::QMediaResource() | |
new QMediaResource | new | (const QUrl url, string mimeType = QString()) | Constructor QMediaResource::QMediaResource(const QUrl &url, const QString &mimeType) |
new QMediaResource | new | (const QNetworkRequest request, string mimeType = QString()) | Constructor QMediaResource::QMediaResource(const QNetworkRequest &request, const QString &mimeType) |
new QMediaResource | new | (const QMediaResource other) | Constructor QMediaResource::QMediaResource(const QMediaResource &other) |
[const] | bool | != | (const QMediaResource other) | Method bool QMediaResource::operator !=(const QMediaResource &other) |
[const] | bool | == | (const QMediaResource other) | Method bool QMediaResource::operator ==(const QMediaResource &other) |
void | _assign | (const QMediaResource other) | Assigns another object to self | |
[const] | QMediaResource 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] | 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. | ||
QMediaResource | assign | (const QMediaResource other) | Method QMediaResource &QMediaResource::operator =(const QMediaResource &other) | |
[const] | int | audioBitRate | Method int QMediaResource::audioBitRate() | |
void | audioBitRate= | (int rate) | Method void QMediaResource::setAudioBitRate(int rate) | |
[const] | string | audioCodec | Method QString QMediaResource::audioCodec() | |
void | audioCodec= | (string codec) | Method void QMediaResource::setAudioCodec(const QString &codec) | |
[const] | int | channelCount | Method int QMediaResource::channelCount() | |
void | channelCount= | (int channels) | Method void QMediaResource::setChannelCount(int channels) | |
[const] | long long | dataSize | Method qint64 QMediaResource::dataSize() | |
void | dataSize= | (long long size) | Method void QMediaResource::setDataSize(const qint64 size) | |
[const] | new QMediaResource ptr | dup | Creates a copy of self | |
[const] | bool | isNull? | Method bool QMediaResource::isNull() | |
[const] | string | language | Method QString QMediaResource::language() | |
void | language= | (string language) | Method void QMediaResource::setLanguage(const QString &language) | |
[const] | string | mimeType | Method QString QMediaResource::mimeType() | |
[const] | QNetworkRequest | request | Method QNetworkRequest QMediaResource::request() | |
[const] | QSize | resolution | Method QSize QMediaResource::resolution() | |
void | resolution= | (const QSize resolution) | Method void QMediaResource::setResolution(const QSize &resolution) | |
[const] | int | sampleRate | Method int QMediaResource::sampleRate() | |
void | sampleRate= | (int frequency) | Method void QMediaResource::setSampleRate(int frequency) | |
void | setAudioBitRate | (int rate) | Method void QMediaResource::setAudioBitRate(int rate) | |
void | setAudioCodec | (string codec) | Method void QMediaResource::setAudioCodec(const QString &codec) | |
void | setChannelCount | (int channels) | Method void QMediaResource::setChannelCount(int channels) | |
void | setDataSize | (long long size) | Method void QMediaResource::setDataSize(const qint64 size) | |
void | setLanguage | (string language) | Method void QMediaResource::setLanguage(const QString &language) | |
void | setResolution | (const QSize resolution) | Method void QMediaResource::setResolution(const QSize &resolution) | |
void | setResolution | (int width, int height) | Method void QMediaResource::setResolution(int width, int height) | |
void | setSampleRate | (int frequency) | Method void QMediaResource::setSampleRate(int frequency) | |
void | setVideoBitRate | (int rate) | Method void QMediaResource::setVideoBitRate(int rate) | |
void | setVideoCodec | (string codec) | Method void QMediaResource::setVideoCodec(const QString &codec) | |
[const] | QUrl | url | Method QUrl QMediaResource::url() | |
[const] | int | videoBitRate | Method int QMediaResource::videoBitRate() | |
void | videoBitRate= | (int rate) | Method void QMediaResource::setVideoBitRate(int rate) | |
[const] | string | videoCodec | Method QString QMediaResource::videoCodec() | |
void | videoCodec= | (string codec) | Method void QMediaResource::setVideoCodec(const QString &codec) |
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 QMediaResource other) Description: Method bool QMediaResource::operator !=(const QMediaResource &other) |
== | Signature: [const] bool == (const QMediaResource other) Description: Method bool QMediaResource::operator ==(const QMediaResource &other) |
_assign | Signature: void _assign (const QMediaResource other) Description: Assigns another object to self |
_const_cast | Signature: [const] QMediaResource 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. |
_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: QMediaResource assign (const QMediaResource other) Description: Method QMediaResource &QMediaResource::operator =(const QMediaResource &other) |
audioBitRate | Signature: [const] int audioBitRate Description: Method int QMediaResource::audioBitRate() Python specific notes: |
audioBitRate= | Signature: void audioBitRate= (int rate) Description: Method void QMediaResource::setAudioBitRate(int rate) Python specific notes: |
audioCodec | Signature: [const] string audioCodec Description: Method QString QMediaResource::audioCodec() Python specific notes: |
audioCodec= | Signature: void audioCodec= (string codec) Description: Method void QMediaResource::setAudioCodec(const QString &codec) Python specific notes: |
channelCount | Signature: [const] int channelCount Description: Method int QMediaResource::channelCount() Python specific notes: |
channelCount= | Signature: void channelCount= (int channels) Description: Method void QMediaResource::setChannelCount(int channels) Python specific notes: |
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. |
dataSize | Signature: [const] long long dataSize Description: Method qint64 QMediaResource::dataSize() Python specific notes: |
dataSize= | Signature: void dataSize= (long long size) Description: Method void QMediaResource::setDataSize(const qint64 size) Python specific notes: |
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. |
dup | Signature: [const] new QMediaResource ptr dup Description: Creates a copy of self Python specific notes: |
isNull? | Signature: [const] bool isNull? Description: Method bool QMediaResource::isNull() |
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. |
language | Signature: [const] string language Description: Method QString QMediaResource::language() Python specific notes: |
language= | Signature: void language= (string language) Description: Method void QMediaResource::setLanguage(const QString &language) Python specific notes: |
mimeType | Signature: [const] string mimeType Description: Method QString QMediaResource::mimeType() |
new | (1) Signature: [static] new QMediaResource new Description: Constructor QMediaResource::QMediaResource() This method creates an object of class QMediaResource. Python specific notes: |
(2) Signature: [static] new QMediaResource new (const QUrl url, string mimeType = QString()) Description: Constructor QMediaResource::QMediaResource(const QUrl &url, const QString &mimeType) This method creates an object of class QMediaResource. Python specific notes: | |
(3) Signature: [static] new QMediaResource new (const QNetworkRequest request, string mimeType = QString()) Description: Constructor QMediaResource::QMediaResource(const QNetworkRequest &request, const QString &mimeType) This method creates an object of class QMediaResource. Python specific notes: | |
(4) Signature: [static] new QMediaResource new (const QMediaResource other) Description: Constructor QMediaResource::QMediaResource(const QMediaResource &other) This method creates an object of class QMediaResource. Python specific notes: | |
request | Signature: [const] QNetworkRequest request Description: Method QNetworkRequest QMediaResource::request() |
resolution | Signature: [const] QSize resolution Description: Method QSize QMediaResource::resolution() Python specific notes: |
resolution= | Signature: void resolution= (const QSize resolution) Description: Method void QMediaResource::setResolution(const QSize &resolution) Python specific notes: |
sampleRate | Signature: [const] int sampleRate Description: Method int QMediaResource::sampleRate() Python specific notes: |
sampleRate= | Signature: void sampleRate= (int frequency) Description: Method void QMediaResource::setSampleRate(int frequency) Python specific notes: |
setAudioBitRate | Signature: void setAudioBitRate (int rate) Description: Method void QMediaResource::setAudioBitRate(int rate) Python specific notes: |
setAudioCodec | Signature: void setAudioCodec (string codec) Description: Method void QMediaResource::setAudioCodec(const QString &codec) Python specific notes: |
setChannelCount | Signature: void setChannelCount (int channels) Description: Method void QMediaResource::setChannelCount(int channels) Python specific notes: |
setDataSize | Signature: void setDataSize (long long size) Description: Method void QMediaResource::setDataSize(const qint64 size) Python specific notes: |
setLanguage | Signature: void setLanguage (string language) Description: Method void QMediaResource::setLanguage(const QString &language) Python specific notes: |
setResolution | (1) Signature: void setResolution (const QSize resolution) Description: Method void QMediaResource::setResolution(const QSize &resolution) Python specific notes: |
(2) Signature: void setResolution (int width, int height) Description: Method void QMediaResource::setResolution(int width, int height) | |
setSampleRate | Signature: void setSampleRate (int frequency) Description: Method void QMediaResource::setSampleRate(int frequency) Python specific notes: |
setVideoBitRate | Signature: void setVideoBitRate (int rate) Description: Method void QMediaResource::setVideoBitRate(int rate) Python specific notes: |
setVideoCodec | Signature: void setVideoCodec (string codec) Description: Method void QMediaResource::setVideoCodec(const QString &codec) Python specific notes: |
url | Signature: [const] QUrl url Description: Method QUrl QMediaResource::url() |
videoBitRate | Signature: [const] int videoBitRate Description: Method int QMediaResource::videoBitRate() Python specific notes: |
videoBitRate= | Signature: void videoBitRate= (int rate) Description: Method void QMediaResource::setVideoBitRate(int rate) Python specific notes: |
videoCodec | Signature: [const] string videoCodec Description: Method QString QMediaResource::videoCodec() Python specific notes: |
videoCodec= | Signature: void videoCodec= (string codec) Description: Method void QMediaResource::setVideoCodec(const QString &codec) Python specific notes: |