summaryrefslogtreecommitdiffstats
path: root/src/multimedia/qradiodata.h
diff options
context:
space:
mode:
authorSami Nurmenniemi <ext-sami.nurmenniemi@nokia.com>2011-10-11 09:06:12 +0300
committerQt by Nokia <qt-info@nokia.com>2011-10-21 03:40:14 +0200
commit6aea1a22eeebfe040a330d746de9e9d2cc99b130 (patch)
tree62cc58c369f866cfaaeb78f2284a94994b9b8180 /src/multimedia/qradiodata.h
parentcbb21e30d5cd18d17d60a049087f98a82c2862b9 (diff)
Added RDS functionality to the QRadioTuner/QDeclarativeRadio
Change-Id: I865e3caba82977002cf1f01f1d64ee0a42de77c6 Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com> Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'src/multimedia/qradiodata.h')
-rw-r--r--src/multimedia/qradiodata.h136
1 files changed, 136 insertions, 0 deletions
diff --git a/src/multimedia/qradiodata.h b/src/multimedia/qradiodata.h
new file mode 100644
index 0000000..71ae222
--- /dev/null
+++ b/src/multimedia/qradiodata.h
@@ -0,0 +1,136 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QRADIODATA_H
+#define QRADIODATA_H
+
+#include <QtCore/qobject.h>
+
+#include "qmediaobject.h"
+#include "qmediaserviceprovider.h"
+#include <qmediaenumdebug.h>
+
+#include <QPair>
+
+QT_BEGIN_HEADER
+
+QT_BEGIN_NAMESPACE
+
+QT_MODULE(Multimedia)
+
+
+class QRadioDataPrivate;
+class Q_MULTIMEDIA_EXPORT QRadioData : public QMediaObject
+{
+ Q_OBJECT
+ Q_PROPERTY(QString stationId READ stationId NOTIFY stationIdChanged)
+ Q_PROPERTY(ProgramType programType READ programType NOTIFY programTypeChanged)
+ Q_PROPERTY(QString programTypeName READ programTypeName NOTIFY programTypeNameChanged)
+ Q_PROPERTY(QString stationName READ stationName NOTIFY stationNameChanged)
+ Q_PROPERTY(QString radioText READ radioText NOTIFY radioTextChanged)
+ Q_PROPERTY(bool alternativeFrequenciesEnabled READ isAlternativeFrequenciesEnabled
+ WRITE setAlternativeFrequenciesEnabled NOTIFY alternativeFrequenciesEnabledChanged)
+ Q_ENUMS(Error)
+ Q_ENUMS(ProgramType)
+
+public:
+ enum Error { NoError, ResourceError, OpenError, OutOfRangeError };
+
+ enum ProgramType { Undefined = 0, News, CurrentAffairs, Information,
+ Sport, Education, Drama, Culture, Science, Varied,
+ PopMusic, RockMusic, EasyListening, LightClassical,
+ SeriousClassical, OtherMusic, Weather, Finance,
+ ChildrensProgrammes, SocialAffairs, Religion,
+ PhoneIn, Travel, Leisure, JazzMusic, CountryMusic,
+ NationalMusic, OldiesMusic, FolkMusic, Documentary,
+ AlarmTest, Alarm, Talk, ClassicRock, AdultHits,
+ SoftRock, Top40, Soft, Nostalgia, Classical,
+ RhythmAndBlues, SoftRhythmAndBlues, Language,
+ ReligiousMusic, ReligiousTalk, Personality, Public,
+ College
+ };
+
+ QRadioData(QObject *parent = 0, QMediaServiceProvider *provider = QMediaServiceProvider::defaultServiceProvider());
+ ~QRadioData();
+
+ bool isAvailable() const;
+ QtMultimedia::AvailabilityError availabilityError() const;
+
+ QString stationId() const;
+ ProgramType programType() const;
+ QString programTypeName() const;
+ QString stationName() const;
+ QString radioText() const;
+ bool isAlternativeFrequenciesEnabled() const;
+
+ Error error() const;
+ QString errorString() const;
+
+public Q_SLOTS:
+ void setAlternativeFrequenciesEnabled(bool enabled);
+
+Q_SIGNALS:
+ void stationIdChanged(QString stationId);
+ void programTypeChanged(QRadioData::ProgramType programType);
+ void programTypeNameChanged(QString programTypeName);
+ void stationNameChanged(QString stationName);
+ void radioTextChanged(QString radioText);
+ void alternativeFrequenciesEnabledChanged(bool enabled);
+
+ void error(QRadioData::Error error);
+
+private:
+
+ Q_DISABLE_COPY(QRadioData)
+ Q_DECLARE_PRIVATE(QRadioData)
+};
+
+QT_END_NAMESPACE
+
+Q_DECLARE_METATYPE(QRadioData::Error)
+Q_DECLARE_METATYPE(QRadioData::ProgramType)
+
+Q_MEDIA_ENUM_DEBUG(QRadioData, Error)
+Q_MEDIA_ENUM_DEBUG(QRadioData, ProgramType)
+
+QT_END_HEADER
+
+#endif // QRADIOPLAYER_H