The QRadioDataControl class provides access to the RDS functionality of the radio in the QMediaService. More...
Header: | #include <QRadioDataControl> |
qmake: | QT += multimedia |
Inherits: | QMediaControl |
virtual | ~QRadioDataControl() |
virtual QRadioData::Error | error() const = 0 |
virtual QString | errorString() const = 0 |
virtual bool | isAlternativeFrequenciesEnabled() const = 0 |
virtual QRadioData::ProgramType | programType() const = 0 |
virtual QString | programTypeName() const = 0 |
virtual QString | radioText() const = 0 |
virtual void | setAlternativeFrequenciesEnabled(bool enabled) = 0 |
virtual QString | stationId() const = 0 |
virtual QString | stationName() const = 0 |
void | alternativeFrequenciesEnabledChanged(bool enabled) |
void | error(QRadioData::Error error) |
void | programTypeChanged(QRadioData::ProgramType programType) |
void | programTypeNameChanged(QString programTypeName) |
void | radioTextChanged(QString radioText) |
void | stationIdChanged(QString stationId) |
void | stationNameChanged(QString stationName) |
QRadioDataControl(QObject *parent = nullptr) |
The QRadioDataControl class provides access to the RDS functionality of the radio in the QMediaService.
The functionality provided by this control is exposed to application code through the QRadioData class.
The interface name of QRadioDataControl is org.qt-project.qt.radiodatacontrol/5.0
as defined in QRadioDataControl_iid.
See also QMediaService::requestControl() and QRadioData.
[protected]
QRadioDataControl::QRadioDataControl(QObject *parent = nullptr)Constructs a radio data control with the given parent.
[virtual]
QRadioDataControl::~QRadioDataControl()Destroys a radio data control.
[signal]
void
QRadioDataControl::alternativeFrequenciesEnabledChanged(bool enabled)Signals that the alternative frequencies setting has changed to the value of enabled.
[pure virtual]
QRadioData::Error QRadioDataControl::error() constReturns the error state of a radio data.
[signal]
void QRadioDataControl::error(QRadioData::Error
error)Signals that an error has occurred.
Note: Signal error is overloaded in this class. To connect to this signal by using the function pointer syntax, Qt provides a convenient helper for obtaining the function pointer as shown in this example:
connect(radioDataControl, QOverload<QRadioData::Error>::of(&QRadioDataControl::error), [=](QRadioData::Error error){ /* ... */ });
[pure virtual]
QString QRadioDataControl::errorString()
constReturns a string describing a radio data's error state.
[pure virtual]
bool QRadioDataControl::isAlternativeFrequenciesEnabled() constReturns true if Alternative Frequency is currently enabled
[pure virtual]
QRadioData::ProgramType QRadioDataControl::programType() constReturns the current Program Type
[signal]
void QRadioDataControl::programTypeChanged(QRadioData::ProgramType programType)Signals that the Program Type programType has changed
[pure virtual]
QString QRadioDataControl::programTypeName() constReturns the current Program Type Name
[signal]
void QRadioDataControl::programTypeNameChanged(QString programTypeName)Signals that the Program Type Name programTypeName has changed
[pure virtual]
QString QRadioDataControl::radioText()
constReturns the current Radio Text
[signal]
void QRadioDataControl::radioTextChanged(QString radioText)Signals that the Radio Text radioText has changed
[pure virtual]
void
QRadioDataControl::setAlternativeFrequenciesEnabled(bool enabled)Sets the Alternative Frequency to enabled
See also isAlternativeFrequenciesEnabled().
[pure virtual]
QString QRadioDataControl::stationId()
constReturns the current Program Identification
[signal]
void QRadioDataControl::stationIdChanged(QString stationId)Signals that the Program Identification stationId has changed
[pure virtual]
QString QRadioDataControl::stationName()
constReturns the current Program Service
[signal]
void QRadioDataControl::stationNameChanged(QString stationName)Signals that the Program Service stationName has changed
org.qt-project.qt.radiodatacontrol/5.0
Defines the interface name of the QRadioDataControl class.