Detailed Description
The QAudioEndpointSelector class provides an audio endpoint selector media control.
The QAudioEndpointSelector class provides descriptions of the audio endpoints available on a system and allows one to be selected as the audio of a media service.
The interface name of QAudioEndpointSelector is org.qt-project.qt.audioendpointselector/5.0 as defined in QAudioEndpointSelector_iid.
Member Function Documentation
QAudioEndpointSelector::QAudioEndpointSelector(QObject * parent = 0) [protected]
Constructs a new audio endpoint selector with the given parent.
QAudioEndpointSelector::~QAudioEndpointSelector() [virtual]
Destroys an audio endpoint selector.
QString QAudioEndpointSelector::activeEndpoint() const [pure virtual]
Returns the name of the currently selected audio endpoint.
See also setActiveEndpoint().
void QAudioEndpointSelector::activeEndpointChanged(const QString & name) [signal]
Signals that the audio endpoint has changed to name.
QList<QString> QAudioEndpointSelector::availableEndpoints() const [pure virtual]
Returns a list of the names of the available audio endpoints.
void QAudioEndpointSelector::availableEndpointsChanged() [signal]
Signals that list of available endpoints has changed.
QString QAudioEndpointSelector::defaultEndpoint() const [pure virtual]
Returns the name of the default audio endpoint.
QString QAudioEndpointSelector::endpointDescription(const QString & name) const [pure virtual]
Returns the description of the endpoint name.
void QAudioEndpointSelector::setActiveEndpoint(const QString & name) [pure virtual slot]
Set the active audio endpoint to name.
See also activeEndpoint().