summaryrefslogtreecommitdiffstats
path: root/src/multimedia/recording/qmediarecorder.h
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2012-03-02 00:21:04 +1000
committerQt by Nokia <qt-info@nokia.com>2012-03-02 09:30:34 +0100
commit2a8463711c7fd683ddf46f716bfff47c1603e863 (patch)
tree88a504ca27afe1891cce66f678cee5be9cba7993 /src/multimedia/recording/qmediarecorder.h
parentd1b6bf5fac54a39d911079ba792ca95424c5c70c (diff)
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>
Diffstat (limited to 'src/multimedia/recording/qmediarecorder.h')
-rw-r--r--src/multimedia/recording/qmediarecorder.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/multimedia/recording/qmediarecorder.h b/src/multimedia/recording/qmediarecorder.h
index 1aac73cf2..84a6eca63 100644
--- a/src/multimedia/recording/qmediarecorder.h
+++ b/src/multimedia/recording/qmediarecorder.h
@@ -42,6 +42,7 @@
#ifndef QMEDIARECORDER_H
#define QMEDIARECORDER_H
+#include <qtmedianamespace.h>
#include <qmediaobject.h>
#include <qmediaencodersettings.h>
#include <qmediabindableinterface.h>
@@ -173,6 +174,9 @@ Q_SIGNALS:
void metaDataChanged();
void metaDataChanged(const QString &key, const QVariant &value);
+ void availabilityChanged(bool available);
+ void availabilityErrorChanged(QtMultimedia::AvailabilityError error);
+
protected:
QMediaRecorder(QMediaRecorderPrivate &dd, QMediaObject *mediaObject, QObject *parent = 0);
bool setMediaObject(QMediaObject *object);
@@ -188,6 +192,7 @@ private:
Q_PRIVATE_SLOT(d_func(), void _q_updateActualLocation(const QUrl &))
Q_PRIVATE_SLOT(d_func(), void _q_updateNotifyInterval(int))
Q_PRIVATE_SLOT(d_func(), void _q_applySettings())
+ Q_PRIVATE_SLOT(d_func(), void _q_availabilityChanged(QtMultimedia::AvailabilityError))
};
QT_END_NAMESPACE