/**************************************************************************** ** ** 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 #include "qmediaobject.h" #include "qmediaserviceprovider.h" #include #include 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