Expose availability from the backend to C++ and QML.

The availabilityError property was static based on the service, but it
can change at run time, so add the plumbing to allow the backend to
report it itself.

Also make sure that both QML and C++ expose the availability.

The radio tuner and data controls previously had properties (but no
signals) for availability - these have been removed.

Change-Id: I9240cf93e2a51b14cd38642f9312ae3c75f05361
Reviewed-by: Ling Hu <ling.hu@nokia.com>
This commit is contained in:
Michael Goddard
2012-03-02 00:21:04 +10:00
committed by Qt by Nokia
parent d1b6bf5fac
commit 2a8463711c
41 changed files with 763 additions and 154 deletions

View File

@@ -33,7 +33,8 @@ PUBLIC_HEADERS += \
controls/qvideoencodercontrol.h \
controls/qvideorenderercontrol.h \
controls/qmediaaudioprobecontrol.h \
controls/qmediavideoprobecontrol.h
controls/qmediavideoprobecontrol.h \
controls/qmediaavailabilitycontrol.h
PRIVATE_HEADERS += \
controls/qaudiodecodercontrol_p.h
@@ -71,4 +72,7 @@ SOURCES += \
controls/qvideorenderercontrol.cpp \
controls/qmediaaudioprobecontrol.cpp \
controls/qmediavideoprobecontrol.cpp \
controls/qaudiodecodercontrol_p.cpp
controls/qaudiodecodercontrol_p.cpp \
controls/qmediaavailabilitycontrol.cpp