Collection of functions describing the capabilities of the Backend. More...
Classes |
|
| class | Notifier |
| Notifications about backend capabilities.
More... |
|
Functions |
|
| PHONON_EXPORT Notifier * | notifier () |
| Use this function to get a QObject pointer to connect to one of
the Notifier signals.
|
|
| PHONON_EXPORT QStringList | availableMimeTypes () |
| Returns a list of mime types that the
Backend can decode. |
|
| PHONON_EXPORT bool | isMimeTypeAvailable (const QString &mimeType) |
| Often all you want to know is whether one
given MIME type can be decoded by the backend. |
|
| PHONON_EXPORT
QList < AudioOutputDevice > |
availableAudioOutputDevices () |
| Returns the audio output devices the backend
supports. |
|
| PHONON_EXPORT
QList < AudioCaptureDevice > |
availableAudioCaptureDevices () |
| Returns the audio capture devices the
backend supports. |
|
| PHONON_EXPORT
QList < EffectDescription > |
availableAudioEffects () |
| Returns the video output devices the backend
supports. |
|
Collection of functions describing the capabilities of the Backend.
| PHONON_EXPORT Notifier* Phonon::BackendCapabilities::notifier | ( | ) |
Use this function to get a QObject pointer to connect to one of the Notifier signals.
To connect to the signal do the following:
QObject::connect(BackendCapabilities::notifier(), SIGNAL(capabilitiesChanged()), ...
| PHONON_EXPORT QStringList Phonon::BackendCapabilities::availableMimeTypes | ( | ) |
Returns a list of mime types that the Backend can decode.
| PHONON_EXPORT bool Phonon::BackendCapabilities::isMimeTypeAvailable | ( | const QString & | mimeType | ) |
Often all you want to know is whether one given MIME type can be decoded by the backend.
Use this method in favor of availableMimeTypes() as it can give you a negative answer without having a backend loaded.
| PHONON_EXPORT QList<AudioOutputDevice> Phonon::BackendCapabilities::availableAudioOutputDevices | ( | ) |
Returns the audio output devices the backend supports.
| PHONON_EXPORT QList<AudioCaptureDevice> Phonon::BackendCapabilities::availableAudioCaptureDevices | ( | ) |
Returns the audio capture devices the backend supports.
| PHONON_EXPORT QList<EffectDescription> Phonon::BackendCapabilities::availableAudioEffects | ( | ) |
Returns the video output devices the backend supports.