1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QRADIODATA_H |
41 | #define QRADIODATA_H |
42 | |
43 | #include <QtCore/qobject.h> |
44 | |
45 | #include <QtMultimedia/qmediaobject.h> |
46 | #include <QtMultimedia/qmediabindableinterface.h> |
47 | #include <QtMultimedia/qmediaenumdebug.h> |
48 | |
49 | QT_BEGIN_NAMESPACE |
50 | |
51 | |
52 | class QRadioDataPrivate; |
53 | class Q_MULTIMEDIA_EXPORT QRadioData : public QObject, public QMediaBindableInterface |
54 | { |
55 | Q_OBJECT |
56 | Q_PROPERTY(QString stationId READ stationId NOTIFY stationIdChanged) |
57 | Q_PROPERTY(ProgramType programType READ programType NOTIFY programTypeChanged) |
58 | Q_PROPERTY(QString programTypeName READ programTypeName NOTIFY programTypeNameChanged) |
59 | Q_PROPERTY(QString stationName READ stationName NOTIFY stationNameChanged) |
60 | Q_PROPERTY(QString radioText READ radioText NOTIFY radioTextChanged) |
61 | Q_PROPERTY(bool alternativeFrequenciesEnabled READ isAlternativeFrequenciesEnabled |
62 | WRITE setAlternativeFrequenciesEnabled NOTIFY alternativeFrequenciesEnabledChanged) |
63 | Q_ENUMS(Error) |
64 | Q_ENUMS(ProgramType) |
65 | |
66 | Q_INTERFACES(QMediaBindableInterface) |
67 | |
68 | public: |
69 | enum Error { NoError, ResourceError, OpenError, OutOfRangeError }; |
70 | |
71 | enum ProgramType { Undefined = 0, News, CurrentAffairs, Information, |
72 | Sport, Education, Drama, Culture, Science, Varied, |
73 | PopMusic, RockMusic, EasyListening, LightClassical, |
74 | SeriousClassical, OtherMusic, Weather, Finance, |
75 | ChildrensProgrammes, SocialAffairs, Religion, |
76 | PhoneIn, Travel, Leisure, JazzMusic, CountryMusic, |
77 | NationalMusic, OldiesMusic, FolkMusic, Documentary, |
78 | AlarmTest, Alarm, Talk, ClassicRock, AdultHits, |
79 | SoftRock, Top40, Soft, Nostalgia, Classical, |
80 | RhythmAndBlues, SoftRhythmAndBlues, Language, |
81 | ReligiousMusic, ReligiousTalk, Personality, Public, |
82 | College |
83 | }; |
84 | |
85 | explicit QRadioData(QMediaObject *mediaObject, QObject *parent = nullptr); |
86 | ~QRadioData(); |
87 | |
88 | QMultimedia::AvailabilityStatus availability() const; |
89 | |
90 | QMediaObject *mediaObject() const override; |
91 | |
92 | QString stationId() const; |
93 | ProgramType programType() const; |
94 | QString programTypeName() const; |
95 | QString stationName() const; |
96 | QString radioText() const; |
97 | bool isAlternativeFrequenciesEnabled() const; |
98 | |
99 | Error error() const; |
100 | QString errorString() const; |
101 | |
102 | public Q_SLOTS: |
103 | void setAlternativeFrequenciesEnabled(bool enabled); |
104 | |
105 | Q_SIGNALS: |
106 | void stationIdChanged(QString stationId); |
107 | void programTypeChanged(QRadioData::ProgramType programType); |
108 | void programTypeNameChanged(QString programTypeName); |
109 | void stationNameChanged(QString stationName); |
110 | void radioTextChanged(QString radioText); |
111 | void alternativeFrequenciesEnabledChanged(bool enabled); |
112 | |
113 | void error(QRadioData::Error error); |
114 | |
115 | protected: |
116 | bool setMediaObject(QMediaObject *) override; |
117 | |
118 | QRadioDataPrivate *d_ptr; |
119 | private: |
120 | |
121 | Q_DISABLE_COPY(QRadioData) |
122 | Q_DECLARE_PRIVATE(QRadioData) |
123 | Q_PRIVATE_SLOT(d_func(), void _q_serviceDestroyed()) |
124 | }; |
125 | |
126 | QT_END_NAMESPACE |
127 | |
128 | Q_DECLARE_METATYPE(QRadioData::Error) |
129 | Q_DECLARE_METATYPE(QRadioData::ProgramType) |
130 | |
131 | Q_MEDIA_ENUM_DEBUG(QRadioData, Error) |
132 | Q_MEDIA_ENUM_DEBUG(QRadioData, ProgramType) |
133 | |
134 | #endif // QRADIOPLAYER_H |
135 | |