sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: This class provides an interface for accessing the Radio Data System (RDS)
|
sl@0
|
15 |
* for FM sound broadcasting. CRadioRdsUtility can also be used with
|
sl@0
|
16 |
* Radio Broadcast Data System (RDBS). Client must first instantiate
|
sl@0
|
17 |
* a tuner control implementing this interface before this class can be used.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef M_RADIORDSCONTROL_H
|
sl@0
|
25 |
#define M_RADIORDSCONTROL_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
* RDS control error definitions.
|
sl@0
|
31 |
* In addition to the standard system error code, the following error codes may
|
sl@0
|
32 |
* be returned.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
typedef TInt TRdsControlError;
|
sl@0
|
35 |
const TRdsControlError KRdsErrHardwareFaulty = -13050;
|
sl@0
|
36 |
const TRdsControlError KRdsErrNotPermittedInCurrentState = -13051;
|
sl@0
|
37 |
const TRdsControlError KRdsErrDuplicateRequest = -13052;
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
* RDS Programme Type.
|
sl@0
|
41 |
*
|
sl@0
|
42 |
* The interpretation of values of this type depends on the origin of the RDS
|
sl@0
|
43 |
* broadcast: in North America, a slightly different standard, RBDS, is used.
|
sl@0
|
44 |
* These PTY codes are defined by static values KRbdsPtyXxxxx, for example
|
sl@0
|
45 |
* KRbdsPtySoftRock.
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* Elsewhere, including Europe, the RDS standard is used. In these areas, the
|
sl@0
|
48 |
* PTY codes are defined by static values KRdsPtyXxxxx, for example
|
sl@0
|
49 |
* KRdsPtyChildrensProgrammes.
|
sl@0
|
50 |
*
|
sl@0
|
51 |
* In all other important aspects, the European RDS and North American RBDS
|
sl@0
|
52 |
* standards are identical.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
typedef TInt TRdsProgrammeType;
|
sl@0
|
55 |
|
sl@0
|
56 |
const TRdsProgrammeType KRdsPtyNone = 0;
|
sl@0
|
57 |
const TRdsProgrammeType KRdsPtyNews = 1;
|
sl@0
|
58 |
const TRdsProgrammeType KRdsPtyCurrentAffairs = 2;
|
sl@0
|
59 |
const TRdsProgrammeType KRdsPtyInformation = 3;
|
sl@0
|
60 |
const TRdsProgrammeType KRdsPtySport = 4;
|
sl@0
|
61 |
const TRdsProgrammeType KRdsPtyEducation = 5;
|
sl@0
|
62 |
const TRdsProgrammeType KRdsPtyDrama = 6;
|
sl@0
|
63 |
const TRdsProgrammeType KRdsPtyCulture = 7;
|
sl@0
|
64 |
const TRdsProgrammeType KRdsPtyScience = 8;
|
sl@0
|
65 |
const TRdsProgrammeType KRdsPtyVariedSpeech = 9;
|
sl@0
|
66 |
const TRdsProgrammeType KRdsPtyPopMusic = 10;
|
sl@0
|
67 |
const TRdsProgrammeType KRdsPtyRockMusic = 11;
|
sl@0
|
68 |
const TRdsProgrammeType KRdsPtyEasyListening = 12;
|
sl@0
|
69 |
const TRdsProgrammeType KRdsPtyLightClassical = 13;
|
sl@0
|
70 |
const TRdsProgrammeType KRdsPtySeriousClassical = 14;
|
sl@0
|
71 |
const TRdsProgrammeType KRdsPtyOtherMusic = 15;
|
sl@0
|
72 |
const TRdsProgrammeType KRdsPtyWeather = 16;
|
sl@0
|
73 |
const TRdsProgrammeType KRdsPtyFinance = 17;
|
sl@0
|
74 |
const TRdsProgrammeType KRdsPtyChildrensProgrammes = 18;
|
sl@0
|
75 |
const TRdsProgrammeType KRdsPtySocialAffairs = 19;
|
sl@0
|
76 |
const TRdsProgrammeType KRdsPtyReligion = 20;
|
sl@0
|
77 |
const TRdsProgrammeType KRdsPtyPhoneIn = 21;
|
sl@0
|
78 |
const TRdsProgrammeType KRdsPtyTravel = 22;
|
sl@0
|
79 |
const TRdsProgrammeType KRdsPtyLeisure = 23;
|
sl@0
|
80 |
const TRdsProgrammeType KRdsPtyJazzMusic = 24;
|
sl@0
|
81 |
const TRdsProgrammeType KRdsPtyCountryMusic = 25;
|
sl@0
|
82 |
const TRdsProgrammeType KRdsPtyNationalMusic = 26;
|
sl@0
|
83 |
const TRdsProgrammeType KRdsPtyOldiesMusic = 27;
|
sl@0
|
84 |
const TRdsProgrammeType KRdsPtyFolkMusic = 28;
|
sl@0
|
85 |
const TRdsProgrammeType KRdsPtyDocumentary = 29;
|
sl@0
|
86 |
const TRdsProgrammeType KRdsPtyAlarmTest = 30;
|
sl@0
|
87 |
const TRdsProgrammeType KRdsPtyAlarm = 31;
|
sl@0
|
88 |
|
sl@0
|
89 |
const TRdsProgrammeType KRbdsPtyNone = 0;
|
sl@0
|
90 |
const TRdsProgrammeType KRbdsPtyNews = 1;
|
sl@0
|
91 |
const TRdsProgrammeType KRbdsPtyInformation = 2;
|
sl@0
|
92 |
const TRdsProgrammeType KRbdsPtySports = 3;
|
sl@0
|
93 |
const TRdsProgrammeType KRbdsPtyTalk = 4;
|
sl@0
|
94 |
const TRdsProgrammeType KRbdsPtyRock = 5;
|
sl@0
|
95 |
const TRdsProgrammeType KRbdsPtyClassicRock = 6;
|
sl@0
|
96 |
const TRdsProgrammeType KRbdsPtyAdultHits = 7;
|
sl@0
|
97 |
const TRdsProgrammeType KRbdsPtySoftRock = 8;
|
sl@0
|
98 |
const TRdsProgrammeType KRbdsPtyTop40 = 9;
|
sl@0
|
99 |
const TRdsProgrammeType KRbdsPtyCountry = 10;
|
sl@0
|
100 |
const TRdsProgrammeType KRbdsPtyOldies = 11;
|
sl@0
|
101 |
const TRdsProgrammeType KRbdsPtySoft = 12;
|
sl@0
|
102 |
const TRdsProgrammeType KRbdsPtyNostalgia = 13;
|
sl@0
|
103 |
const TRdsProgrammeType KRbdsPtyJazz = 14;
|
sl@0
|
104 |
const TRdsProgrammeType KRbdsPtyClassical = 15;
|
sl@0
|
105 |
const TRdsProgrammeType KRbdsPtyRhythmAndBlues = 16;
|
sl@0
|
106 |
const TRdsProgrammeType KRbdsPtySoftRhythmAndBlues = 17;
|
sl@0
|
107 |
const TRdsProgrammeType KRbdsPtyLanguage = 18;
|
sl@0
|
108 |
const TRdsProgrammeType KRbdsPtyReligiousMusic = 19;
|
sl@0
|
109 |
const TRdsProgrammeType KRbdsPtyReligiousTalk = 20;
|
sl@0
|
110 |
const TRdsProgrammeType KRbdsPtyPersonality = 21;
|
sl@0
|
111 |
const TRdsProgrammeType KRbdsPtyPublic = 22;
|
sl@0
|
112 |
const TRdsProgrammeType KRbdsPtyCollege = 23;
|
sl@0
|
113 |
const TRdsProgrammeType KRbdsPtyUnassigned1 = 24;
|
sl@0
|
114 |
const TRdsProgrammeType KRbdsPtyUnassigned2 = 25;
|
sl@0
|
115 |
const TRdsProgrammeType KRbdsPtyUnassigned3 = 26;
|
sl@0
|
116 |
const TRdsProgrammeType KRbdsPtyUnassigned4 = 27;
|
sl@0
|
117 |
const TRdsProgrammeType KRbdsPtyUnassigned5 = 28;
|
sl@0
|
118 |
const TRdsProgrammeType KRbdsPtyWeather = 29;
|
sl@0
|
119 |
const TRdsProgrammeType KRbdsPtyEmergencyTest = 30;
|
sl@0
|
120 |
const TRdsProgrammeType KRbdsPtyEmergency = 31;
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
* Table 1: Class codes for RTplus content types
|
sl@0
|
125 |
* Defined in Radiotext plus (RTplus) Specification Version 2.1
|
sl@0
|
126 |
* RDS Forum 2006-07-21 - R06/040_1
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
enum TRdsRTplusClass
|
sl@0
|
129 |
{
|
sl@0
|
130 |
// Category: Item (0 - 10)
|
sl@0
|
131 |
ERTplusItemDummy = 0,
|
sl@0
|
132 |
ERTplusItemTitle,
|
sl@0
|
133 |
ERTplusItemAlbum,
|
sl@0
|
134 |
ERTplusItemTrackNumber,
|
sl@0
|
135 |
ERTplusItemArtist,
|
sl@0
|
136 |
ERTplusItemComposition,
|
sl@0
|
137 |
ERTplusItemMovement,
|
sl@0
|
138 |
ERTplusItemConductor,
|
sl@0
|
139 |
ERTplusItemComposer,
|
sl@0
|
140 |
ERTplusItemBand,
|
sl@0
|
141 |
ERTplusItemComment,
|
sl@0
|
142 |
ERTplusItemGenre,
|
sl@0
|
143 |
// Category: Info (12 - 30)
|
sl@0
|
144 |
ERTplusInfoNews,
|
sl@0
|
145 |
ERTplusInfoNewsLocal,
|
sl@0
|
146 |
ERTplusInfoStockMarket,
|
sl@0
|
147 |
ERTplusInfoSport,
|
sl@0
|
148 |
ERTplusInfoLottery,
|
sl@0
|
149 |
ERTplusInfoHoroscope,
|
sl@0
|
150 |
ERTplusInfoDailyDiversion,
|
sl@0
|
151 |
ERTplusInfoHealth,
|
sl@0
|
152 |
ERTplusInfoEvent,
|
sl@0
|
153 |
ERTplusInfoSzene,
|
sl@0
|
154 |
ERTplusInfoCinema,
|
sl@0
|
155 |
ERTplusInfoTV,
|
sl@0
|
156 |
ERTplusInfoDateTime,
|
sl@0
|
157 |
ERTplusInfoWeather,
|
sl@0
|
158 |
ERTplusInfoTraffic,
|
sl@0
|
159 |
ERTplusInfoAlarm,
|
sl@0
|
160 |
ERTplusInfoAdvisertisement,
|
sl@0
|
161 |
ERTplusInfoURL,
|
sl@0
|
162 |
ERTplusInfoOther,
|
sl@0
|
163 |
// Category: Programme (31 - 40)
|
sl@0
|
164 |
ERTplusStationNameShort,
|
sl@0
|
165 |
ERTplusStationNameLong,
|
sl@0
|
166 |
ERTplusProgramNow,
|
sl@0
|
167 |
ERTplusProgramNext,
|
sl@0
|
168 |
ERTplusProgramPart,
|
sl@0
|
169 |
ERTplusProgramHost,
|
sl@0
|
170 |
ERTplusProgramEditorialStaff,
|
sl@0
|
171 |
ERTplusStationFrequency,
|
sl@0
|
172 |
ERTplusProgramHomepage,
|
sl@0
|
173 |
ERTplusProgramSubChannel,
|
sl@0
|
174 |
// Category: Interactivity (41 - 53)
|
sl@0
|
175 |
ERTplusPhoneHotline,
|
sl@0
|
176 |
ERTplusPhoneStudio,
|
sl@0
|
177 |
ERTplusPhoneOther,
|
sl@0
|
178 |
ERTplusSmsStudio,
|
sl@0
|
179 |
ERTplusSmsOther,
|
sl@0
|
180 |
ERTplusEmailHotline,
|
sl@0
|
181 |
ERTplusEmailStudio,
|
sl@0
|
182 |
ERTplusEmailOther,
|
sl@0
|
183 |
ERTplusMmsOther,
|
sl@0
|
184 |
ERTplusChat,
|
sl@0
|
185 |
ERTplusChatCenter,
|
sl@0
|
186 |
ERTplusVoteQuestion,
|
sl@0
|
187 |
ERTplusVoteCenter,
|
sl@0
|
188 |
// Category: Reserved for future (54 - 55)
|
sl@0
|
189 |
ERTplusRfuClass54,
|
sl@0
|
190 |
ERTplusRfuClass55,
|
sl@0
|
191 |
// Category: Private classes (56 - 58)
|
sl@0
|
192 |
ERTplusPrivateClass56,
|
sl@0
|
193 |
ERTplusPrivateClass57,
|
sl@0
|
194 |
ERTplusPrivateClass58,
|
sl@0
|
195 |
// Category: Descriptor (59 - 63)
|
sl@0
|
196 |
ERTplusPlace,
|
sl@0
|
197 |
ERTplusAppointment,
|
sl@0
|
198 |
ERTplusIdentifier,
|
sl@0
|
199 |
ERTplusPurchase,
|
sl@0
|
200 |
ERTplusGetData
|
sl@0
|
201 |
};
|
sl@0
|
202 |
|
sl@0
|
203 |
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
* RDS Function Bit Flags used by TRdsCapabilities and TRdsData.
|
sl@0
|
206 |
*
|
sl@0
|
207 |
* @since S60 3.2
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
enum TRdsFeatures
|
sl@0
|
210 |
{
|
sl@0
|
211 |
ERdsProgrammeIdentification = 0x001,
|
sl@0
|
212 |
ERdsProgrammeType = 0x002,
|
sl@0
|
213 |
ERdsProgrammeService = 0x004,
|
sl@0
|
214 |
ERdsRadioText = 0x008,
|
sl@0
|
215 |
ERdsRadioTextPlus = 0x010,
|
sl@0
|
216 |
ERdsClockTime = 0x020,
|
sl@0
|
217 |
ERdsTrafficProgramme = 0x040,
|
sl@0
|
218 |
ERdsTrafficAnnouncement = 0x080,
|
sl@0
|
219 |
ERdsAlternateFrequency = 0x100
|
sl@0
|
220 |
};
|
sl@0
|
221 |
|
sl@0
|
222 |
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
* The RDS Capabilities class defines the capabilities of the RDS control on the
|
sl@0
|
225 |
* device, as retrieved using the function GetCapabilities.
|
sl@0
|
226 |
*
|
sl@0
|
227 |
* @since S60 3.2
|
sl@0
|
228 |
*/
|
sl@0
|
229 |
class TRdsCapabilities
|
sl@0
|
230 |
{
|
sl@0
|
231 |
public:
|
sl@0
|
232 |
// Bitfield as defined by TRdsFeatures with the bits of the supported functions set
|
sl@0
|
233 |
// Valid bitfieds are:
|
sl@0
|
234 |
// ERdsProgrammeIdentification | ERdsProgrammeType | ERdsProgrammeService |
|
sl@0
|
235 |
// ERdsRadioText | ERdsRadioTextPlus | ERdsClockTime | ERdsTrafficProgramme |
|
sl@0
|
236 |
// ERdsTrafficAnnouncement | ERdsAlternateFrequency
|
sl@0
|
237 |
TUint32 iRdsFunctions;
|
sl@0
|
238 |
// Reserved for future
|
sl@0
|
239 |
TUint32 iAdditionalFunctions1;
|
sl@0
|
240 |
// Reserved for future
|
sl@0
|
241 |
TUint32 iAdditionalFunctions2;
|
sl@0
|
242 |
};
|
sl@0
|
243 |
|
sl@0
|
244 |
|
sl@0
|
245 |
/**
|
sl@0
|
246 |
* This class provides RDS features that can be enabled or disabled. Used in
|
sl@0
|
247 |
* function NotifyRdsDataChange.
|
sl@0
|
248 |
*
|
sl@0
|
249 |
* @since S60 3.2
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
class TRdsData
|
sl@0
|
252 |
{
|
sl@0
|
253 |
public:
|
sl@0
|
254 |
// A value indicating a set containing all RDS data encapsulated by class TRdsData.
|
sl@0
|
255 |
static const TUint32 KAllRdsData = ( ERdsProgrammeIdentification | ERdsProgrammeType |
|
sl@0
|
256 |
ERdsProgrammeService | ERdsRadioText | ERdsClockTime | ERdsTrafficAnnouncement );
|
sl@0
|
257 |
|
sl@0
|
258 |
public:
|
sl@0
|
259 |
// Bitfield as defined by TRdsDataFeatures with the bits of the supported functions set
|
sl@0
|
260 |
// Valid bitfieds are:
|
sl@0
|
261 |
// ERdsProgrammeIdentification | ERdsProgrammeType | ERdsProgrammeService |
|
sl@0
|
262 |
// ERdsRadioText | ERdsClockTime | ERdsTrafficAnnouncement
|
sl@0
|
263 |
TUint32 iRdsFunctions;
|
sl@0
|
264 |
// Reserved for future
|
sl@0
|
265 |
TUint32 iAdditionalFunctions1;
|
sl@0
|
266 |
// Reserved for future
|
sl@0
|
267 |
TUint32 iAdditionalFunctions2;
|
sl@0
|
268 |
};
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
/**
|
sl@0
|
272 |
* This class provides RT+ tags.
|
sl@0
|
273 |
*
|
sl@0
|
274 |
* @since S60 3.2
|
sl@0
|
275 |
*/
|
sl@0
|
276 |
class TRdsRTplusTag
|
sl@0
|
277 |
{
|
sl@0
|
278 |
public:
|
sl@0
|
279 |
// Specifies the content type according to the class code
|
sl@0
|
280 |
TRdsRTplusClass iContentType;
|
sl@0
|
281 |
// Indicates the position of the first character within the Radio Text
|
sl@0
|
282 |
// (Start marker 0: means first character in RT)
|
sl@0
|
283 |
TUint32 iStart;
|
sl@0
|
284 |
// Length (number of characters) of the RTplus tag.
|
sl@0
|
285 |
TUint32 iLength;
|
sl@0
|
286 |
};
|
sl@0
|
287 |
|
sl@0
|
288 |
|
sl@0
|
289 |
/** Programme Service name, 8 characters */
|
sl@0
|
290 |
typedef TBuf8<8> TRdsPSName;
|
sl@0
|
291 |
/** Radio Text, 64 characters */
|
sl@0
|
292 |
typedef TBuf8<64> TRdsRadioText;
|
sl@0
|
293 |
|
sl@0
|
294 |
|
sl@0
|
295 |
/**
|
sl@0
|
296 |
* This class provides the interface class to be implemented by object receiving request
|
sl@0
|
297 |
* complete notification from RDS control. These functions are called once the asynchronous
|
sl@0
|
298 |
* request completes successfully or with an error.
|
sl@0
|
299 |
*
|
sl@0
|
300 |
* In addition, this class provides the interface for receiving events from RDS control.
|
sl@0
|
301 |
*
|
sl@0
|
302 |
* @since S60 3.2
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
class MRdsControlObserver
|
sl@0
|
305 |
{
|
sl@0
|
306 |
public:
|
sl@0
|
307 |
|
sl@0
|
308 |
/**
|
sl@0
|
309 |
* Station seek by Programme Type(PTY) complete event. This event is asynchronous and
|
sl@0
|
310 |
* is received after a call to MRdsControl::StationSeekByPTY.
|
sl@0
|
311 |
*
|
sl@0
|
312 |
* @since S60 3.2
|
sl@0
|
313 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
314 |
* @param aFrequency The frequency(Hz) of the radio station that was found.
|
sl@0
|
315 |
*/
|
sl@0
|
316 |
virtual void StationSeekByPTYComplete( TInt aError, TInt aFrequency ) = 0;
|
sl@0
|
317 |
|
sl@0
|
318 |
/**
|
sl@0
|
319 |
* Station seek by Traffic Announcement(TA) complete event. This event is asynchronous
|
sl@0
|
320 |
* and is received after a call to MRdsControl::StationSeekByTA.
|
sl@0
|
321 |
*
|
sl@0
|
322 |
* @since S60 3.2
|
sl@0
|
323 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
324 |
* @param aFrequency The frequency(Hz) of the radio station that was found.
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
virtual void StationSeekByTAComplete( TInt aError, TInt aFrequency ) = 0;
|
sl@0
|
327 |
|
sl@0
|
328 |
/**
|
sl@0
|
329 |
* Station seek by Traffic Programme(TP) complete event. This event is asynchronous and
|
sl@0
|
330 |
* is received after a call to MRdsControl::StationSeekByTP.
|
sl@0
|
331 |
*
|
sl@0
|
332 |
* @since S60 3.2
|
sl@0
|
333 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
334 |
* @param aFrequency The frequency(Hz) of the radio station that was found.
|
sl@0
|
335 |
*/
|
sl@0
|
336 |
virtual void StationSeekByTPComplete( TInt aError, TInt aFrequency ) = 0;
|
sl@0
|
337 |
|
sl@0
|
338 |
/**
|
sl@0
|
339 |
* Get frequencies by Programme Type(PTY) complete event. This event is asynchronous
|
sl@0
|
340 |
* and is received after a call to MRdsControl::GetFreqByPTY.
|
sl@0
|
341 |
*
|
sl@0
|
342 |
* Client takes ownership of the array and therefore is responsible for deallocating it.
|
sl@0
|
343 |
*
|
sl@0
|
344 |
* @since S60 3.2
|
sl@0
|
345 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
346 |
* @param aFreqList Array of frequencies (Hz), valid only if aError is KErrNone.
|
sl@0
|
347 |
*/
|
sl@0
|
348 |
virtual void GetFreqByPTYComplete( TInt aError, RArray<TInt>& aFreqList ) = 0;
|
sl@0
|
349 |
|
sl@0
|
350 |
/**
|
sl@0
|
351 |
* Get frequencies by Traffic Announcement(TA) complete event. This event is asynchronous
|
sl@0
|
352 |
* and is received after a call to MRdsControl::GetFreqByTA.
|
sl@0
|
353 |
*
|
sl@0
|
354 |
* Client takes ownership of the array and therefore is responsible for deallocating it.
|
sl@0
|
355 |
*
|
sl@0
|
356 |
* @since S60 3.2
|
sl@0
|
357 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
358 |
* @param aFreqList Array of frequencies (Hz), valid only if aError is KErrNone.
|
sl@0
|
359 |
*/
|
sl@0
|
360 |
virtual void GetFreqByTAComplete( TInt aError, RArray<TInt>& aFreqList ) = 0;
|
sl@0
|
361 |
|
sl@0
|
362 |
/**
|
sl@0
|
363 |
* Get Programme Service names (PS) by Programme Type(PTY) complete event. This event is
|
sl@0
|
364 |
* asynchronous and is received after a call to MRdsControl::GetPSByPTY.
|
sl@0
|
365 |
*
|
sl@0
|
366 |
* Client takes ownership of the array and therefore is responsible for deallocating it.
|
sl@0
|
367 |
*
|
sl@0
|
368 |
* @since S60 3.2
|
sl@0
|
369 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
370 |
* @param aPsList Array of programme service names, valid only if aError is KErrNone.
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
virtual void GetPSByPTYComplete( TInt aError, RArray<TRdsPSName>& aPsList ) = 0;
|
sl@0
|
373 |
|
sl@0
|
374 |
/**
|
sl@0
|
375 |
* Get Programme Service names (PS) by Traffic Announcement(TA) complete event. This event is
|
sl@0
|
376 |
* asynchronous and is received after a call to MRdsControl::GetPSByTA.
|
sl@0
|
377 |
*
|
sl@0
|
378 |
* Client takes ownership of the array and therefore is responsible for deallocating it.
|
sl@0
|
379 |
*
|
sl@0
|
380 |
* @since S60 3.2
|
sl@0
|
381 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
382 |
* @param aPsList Array of programme service names, valid only if aError is KErrNone.
|
sl@0
|
383 |
*/
|
sl@0
|
384 |
virtual void GetPSByTAComplete( TInt aError, RArray<TRdsPSName>& aPsList ) = 0;
|
sl@0
|
385 |
|
sl@0
|
386 |
/**
|
sl@0
|
387 |
* New Programme Identification(PI) is available. This event is asynchronous and is
|
sl@0
|
388 |
* received after a call to MRdsControl::NotifyRdsDataChange. Client will continue to
|
sl@0
|
389 |
* receive this notification whenever new PI is available until clients unsubscribes.
|
sl@0
|
390 |
*
|
sl@0
|
391 |
* @since S60 3.2
|
sl@0
|
392 |
* @param aPi Programme identification
|
sl@0
|
393 |
*/
|
sl@0
|
394 |
virtual void RdsDataPI( TInt aPi ) = 0;
|
sl@0
|
395 |
|
sl@0
|
396 |
/**
|
sl@0
|
397 |
* New Programme Type (PTY) is available. This event is asynchronous and is received after
|
sl@0
|
398 |
* a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
|
sl@0
|
399 |
* notification whenever new PTY is available until client cancels notification request.
|
sl@0
|
400 |
*
|
sl@0
|
401 |
* @since S60 3.2
|
sl@0
|
402 |
* @param aPty Programme type
|
sl@0
|
403 |
*/
|
sl@0
|
404 |
virtual void RdsDataPTY( TRdsProgrammeType aPty ) = 0;
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
* New Programme Service name (PS) is available. This event is asynchronous and is received
|
sl@0
|
408 |
* after a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
|
sl@0
|
409 |
* notification whenever new PS is available until client cancels notification request.
|
sl@0
|
410 |
*
|
sl@0
|
411 |
* @since S60 3.2
|
sl@0
|
412 |
* @param aPs Programme service
|
sl@0
|
413 |
*/
|
sl@0
|
414 |
virtual void RdsDataPS( TRdsPSName& aPs ) = 0;
|
sl@0
|
415 |
|
sl@0
|
416 |
/**
|
sl@0
|
417 |
* New Radio Text (RT) is available. This event is asynchronous and is received after
|
sl@0
|
418 |
* a call to MRdsControl::NotifyRdsDataChange. Client will continue to receive this
|
sl@0
|
419 |
* notification whenever new RT is available until client cancels notification request.
|
sl@0
|
420 |
*
|
sl@0
|
421 |
* If RT+ is supported, RT+ tags information is sent along with the RT. Client takes
|
sl@0
|
422 |
* ownership of the array and therefore is responsible to deallocate it.
|
sl@0
|
423 |
*
|
sl@0
|
424 |
* @since S60 3.2
|
sl@0
|
425 |
* @param aRt Radio text
|
sl@0
|
426 |
* @param aRTplusTags RTplus tags
|
sl@0
|
427 |
*/
|
sl@0
|
428 |
virtual void RdsDataRT( TRdsRadioText& aRt, RArray<TRdsRTplusTag>& aRTplusTags ) = 0;
|
sl@0
|
429 |
|
sl@0
|
430 |
/**
|
sl@0
|
431 |
* Clock Time (CT) is available. This event is asynchronous and is received after a call
|
sl@0
|
432 |
* to MRdsControl::NotifyRdsDataChange. Client will continue to receive this notification
|
sl@0
|
433 |
* whenever new CT is available until client cancels notification request.
|
sl@0
|
434 |
*
|
sl@0
|
435 |
* @since S60 3.2
|
sl@0
|
436 |
* @param aCt Clock time
|
sl@0
|
437 |
*/
|
sl@0
|
438 |
virtual void RdsDataCT( TDateTime& aCt ) = 0;
|
sl@0
|
439 |
|
sl@0
|
440 |
/**
|
sl@0
|
441 |
* Called when Traffice Announcement (TA) status changes. This event is asynchronous
|
sl@0
|
442 |
* and is received after a call to MRdsControl::NotifyRdsDataChange. Client will continue
|
sl@0
|
443 |
* to receive this notification whenever TA status changes until client cancels notification request.
|
sl@0
|
444 |
*
|
sl@0
|
445 |
* @since S60 3.2
|
sl@0
|
446 |
* @param aTaOn ETrue indicates that Traffic Announcement is on.
|
sl@0
|
447 |
*/
|
sl@0
|
448 |
virtual void RdsDataTA( TBool aTaOn ) = 0;
|
sl@0
|
449 |
|
sl@0
|
450 |
/**
|
sl@0
|
451 |
* Called when tuner starts to search for an Alternate Frequency (AF) with stronger signal.
|
sl@0
|
452 |
* This event is asynchronous and is received after a call to MRdsControl::SetAutomaticSwitching.
|
sl@0
|
453 |
* Client will continue to receive this notification whenever new search is started
|
sl@0
|
454 |
* until clients turns automatic switching off.
|
sl@0
|
455 |
*
|
sl@0
|
456 |
* @since S60 3.2
|
sl@0
|
457 |
*/
|
sl@0
|
458 |
virtual void RdsSearchBeginAF() = 0;
|
sl@0
|
459 |
|
sl@0
|
460 |
/**
|
sl@0
|
461 |
* Called when search for an Alternate Frequency (AF) ends. This event is asynchronous and
|
sl@0
|
462 |
* is received after a call to MRdsControl::SetAutomaticSwitching. Client will continue
|
sl@0
|
463 |
* to receive this notification until clients turns automatic switching off.
|
sl@0
|
464 |
*
|
sl@0
|
465 |
* Most common error codes:
|
sl@0
|
466 |
* KErrNone - Successful, new frequency found
|
sl@0
|
467 |
* KErrNotFound - Ended, but frequency hasn't changed
|
sl@0
|
468 |
* KErrCancel - Cancelled
|
sl@0
|
469 |
*
|
sl@0
|
470 |
* @since S60 3.2
|
sl@0
|
471 |
* @param aError A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
472 |
* @param aFrequency The frequency (Hz) of the radio station that was found.
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
virtual void RdsSearchEndAF( TInt aError, TInt aFrequency ) = 0;
|
sl@0
|
475 |
|
sl@0
|
476 |
/**
|
sl@0
|
477 |
* Called when the tuner has re-tuned to another frequency that is broadcasting
|
sl@0
|
478 |
* Traffic Announcement (TA). This notification sent only when the client has turned the
|
sl@0
|
479 |
* automatic traffic announcement on.
|
sl@0
|
480 |
*
|
sl@0
|
481 |
* @since S60 3.2
|
sl@0
|
482 |
* @param aFrequency The frequency (Hz) of the radio station that was found.
|
sl@0
|
483 |
*/
|
sl@0
|
484 |
virtual void RdsStationChangeTA( TInt aFrequency ) = 0;
|
sl@0
|
485 |
|
sl@0
|
486 |
/**
|
sl@0
|
487 |
* Called when RDS signal status change (i.e. signal is lost/restored).
|
sl@0
|
488 |
*
|
sl@0
|
489 |
* @since S60 3.2
|
sl@0
|
490 |
* @param aSignal ETrue indicates that RDS signal is available in the tuned frequency.
|
sl@0
|
491 |
*/
|
sl@0
|
492 |
virtual void RdsEventSignalChange( TBool aSignal ) = 0;
|
sl@0
|
493 |
};
|
sl@0
|
494 |
|
sl@0
|
495 |
|
sl@0
|
496 |
/**
|
sl@0
|
497 |
* This class provides the interface class to be implemented by object implementing RDS control.
|
sl@0
|
498 |
*
|
sl@0
|
499 |
* @since S60 3.2
|
sl@0
|
500 |
*/
|
sl@0
|
501 |
class MRdsControl
|
sl@0
|
502 |
{
|
sl@0
|
503 |
public:
|
sl@0
|
504 |
|
sl@0
|
505 |
/**
|
sl@0
|
506 |
* Get the capabilities of the RDS control on the device.
|
sl@0
|
507 |
*
|
sl@0
|
508 |
* @since S60 3.2
|
sl@0
|
509 |
* @param aCaps The capabilities object to fill
|
sl@0
|
510 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
511 |
*/
|
sl@0
|
512 |
IMPORT_C virtual TInt GetCapabilities( TRdsCapabilities& aCaps ) const = 0;
|
sl@0
|
513 |
|
sl@0
|
514 |
/**
|
sl@0
|
515 |
* Get the status of the RDS reception.
|
sl@0
|
516 |
*
|
sl@0
|
517 |
* @since S60 3.2
|
sl@0
|
518 |
* @param aRdsSignal On return, will be ETrue if RDS signal can be recepted, EFalse otherwise.
|
sl@0
|
519 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
520 |
*/
|
sl@0
|
521 |
IMPORT_C virtual TInt GetRdsSignalStatus( TBool& aRdsSignal ) const = 0;
|
sl@0
|
522 |
|
sl@0
|
523 |
/**
|
sl@0
|
524 |
* Subscribe for notification for the specified RDS data. Client should first check
|
sl@0
|
525 |
* the capabilities to see if a feature is supported.
|
sl@0
|
526 |
* Request for notification for non-supported features will simply be ignored.
|
sl@0
|
527 |
*
|
sl@0
|
528 |
* For example, if the client wishes to be notified when new Programme Type and
|
sl@0
|
529 |
* Traffic Announcement is available:
|
sl@0
|
530 |
* iRdsData = ERdsProgrammeType | ERdsTrafficAnnouncement;
|
sl@0
|
531 |
* iRdsUtility->NotifyRdsDataChange(iRdsData);
|
sl@0
|
532 |
*
|
sl@0
|
533 |
* @since S60 3.2
|
sl@0
|
534 |
* @param aRdsData Bitfield indicating notification request.
|
sl@0
|
535 |
* @see MRdsControlObserver::RdsDataPI
|
sl@0
|
536 |
* @see MRdsControlObserver::RdsDataPTY
|
sl@0
|
537 |
* @see MRdsControlObserver::RdsDataPS
|
sl@0
|
538 |
* @see MRdsControlObserver::RdsDataRT
|
sl@0
|
539 |
* @see MRdsControlObserver::RdsDataCT
|
sl@0
|
540 |
* @see MRdsControlObserver::RdsDataTA
|
sl@0
|
541 |
*/
|
sl@0
|
542 |
IMPORT_C virtual TInt NotifyRdsDataChange( TRdsData aRdsData ) = 0;
|
sl@0
|
543 |
|
sl@0
|
544 |
/**
|
sl@0
|
545 |
* Cancel NotifyRdsDataChange request.
|
sl@0
|
546 |
*
|
sl@0
|
547 |
* @since S60 3.2
|
sl@0
|
548 |
*/
|
sl@0
|
549 |
IMPORT_C virtual void CancelNotifyRdsDataChange() = 0;
|
sl@0
|
550 |
|
sl@0
|
551 |
/**
|
sl@0
|
552 |
* Turn on/off automatic switching of frequency based on Alternate Frequency.
|
sl@0
|
553 |
* This will cause RDS device to search for alternate frequency when the signal strength
|
sl@0
|
554 |
* deteriorates. User should be ready to receive RdsSearchBeginAF and RdsSearchEndAF.
|
sl@0
|
555 |
* Automatic switching is off by default.
|
sl@0
|
556 |
*
|
sl@0
|
557 |
* Client should first check the capabilities to see if ERdsAlternateFrequency is
|
sl@0
|
558 |
* supported. Will return KErrNotSupported if this feature is not supported.
|
sl@0
|
559 |
*
|
sl@0
|
560 |
* @since S60 3.2
|
sl@0
|
561 |
* @param aAuto ETrue to turn automatic switching on, EFalse to turn it off.
|
sl@0
|
562 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
563 |
* @see MRdsControlObserver::RdsSearchBeginAF
|
sl@0
|
564 |
* @see MRdsControlObserver::RdsSearchEndAF
|
sl@0
|
565 |
*/
|
sl@0
|
566 |
IMPORT_C virtual TInt SetAutomaticSwitching( TBool aAuto ) = 0;
|
sl@0
|
567 |
|
sl@0
|
568 |
/**
|
sl@0
|
569 |
* Find out whether automatic switching is on or off.
|
sl@0
|
570 |
*
|
sl@0
|
571 |
* @since S60 3.2
|
sl@0
|
572 |
* @param aAuto ETrue indicates that automatic switching is enabled.
|
sl@0
|
573 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
574 |
*/
|
sl@0
|
575 |
IMPORT_C virtual TInt GetAutomaticSwitching( TBool& aAuto ) = 0;
|
sl@0
|
576 |
|
sl@0
|
577 |
/**
|
sl@0
|
578 |
* Cancel ongoing search for an Alternate Frequency (AF) with stronger signal.
|
sl@0
|
579 |
*
|
sl@0
|
580 |
* Client can issue this request to interrupt the search indicated with
|
sl@0
|
581 |
* MRdsControlObserver::RdsSearchBeginAF.
|
sl@0
|
582 |
*
|
sl@0
|
583 |
* @since S60 3.2
|
sl@0
|
584 |
*/
|
sl@0
|
585 |
IMPORT_C virtual void CancelAFSearch() = 0;
|
sl@0
|
586 |
|
sl@0
|
587 |
/**
|
sl@0
|
588 |
* Turns on/off automatic switching of frequency based on Traffic Announcement.
|
sl@0
|
589 |
* This will cause RDS device to search for frequencies broadcasting traffic announcement.
|
sl@0
|
590 |
* This feature is based on TP/TA fields and/or EON. It is up to the client to return to
|
sl@0
|
591 |
* the previous frequency when the traffic announcement is finished.
|
sl@0
|
592 |
*
|
sl@0
|
593 |
* NOTE: This is only supported in dual tuner configuration since the secondary tuner
|
sl@0
|
594 |
* needs to perform continuous scanning for frequencies broadcasting traffic announcement,
|
sl@0
|
595 |
* while the primary tuner is used for normal tuner activities.
|
sl@0
|
596 |
* Client should first check the tuner capabilities. Will return KErrNotSupported if
|
sl@0
|
597 |
* this feature is not supported.
|
sl@0
|
598 |
*
|
sl@0
|
599 |
* @since S60 3.2
|
sl@0
|
600 |
* @param aAuto ETrue indicates that automatic switching is on.
|
sl@0
|
601 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
602 |
*/
|
sl@0
|
603 |
IMPORT_C virtual TInt SetAutomaticTrafficAnnouncement( TBool aAuto ) = 0;
|
sl@0
|
604 |
|
sl@0
|
605 |
/**
|
sl@0
|
606 |
* Find out whether automatic traffic announcement is enabled.
|
sl@0
|
607 |
*
|
sl@0
|
608 |
* @since S60 3.2
|
sl@0
|
609 |
* @param aAuto ETrue indicates that automatic traffic announcement is on.
|
sl@0
|
610 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
611 |
*/
|
sl@0
|
612 |
IMPORT_C virtual TInt GetAutomaticTrafficAnnouncement( TBool& aAuto ) = 0;
|
sl@0
|
613 |
|
sl@0
|
614 |
/**
|
sl@0
|
615 |
* Asynchronous request to find a radio station with the specified Programme Type (PTY),
|
sl@0
|
616 |
* starting from the currently tuned frequency and searching in the direction specified
|
sl@0
|
617 |
* (i.e. up or down). User must be ready to receive callback method StationSeekByPTYComplete
|
sl@0
|
618 |
* The station found is returned in the callback.
|
sl@0
|
619 |
*
|
sl@0
|
620 |
* @since S60 3.2
|
sl@0
|
621 |
* @param aPty The type of programme to search for.
|
sl@0
|
622 |
* @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
|
sl@0
|
623 |
* @see MRdsControlObserver::StationSeekByPTYComplete
|
sl@0
|
624 |
*/
|
sl@0
|
625 |
IMPORT_C virtual void StationSeekByPTY( TRdsProgrammeType aPty, TBool aSeekUp ) = 0;
|
sl@0
|
626 |
|
sl@0
|
627 |
/**
|
sl@0
|
628 |
* Asynchronous request to find a radio station with Traffic Announcement (TA),
|
sl@0
|
629 |
* starting from the currently tuned frequency and searching in the direction specified
|
sl@0
|
630 |
* (i.e. up or down). User must be ready to receive callback method StationSeekByTAComplete
|
sl@0
|
631 |
* The station found is returned in the callback.
|
sl@0
|
632 |
*
|
sl@0
|
633 |
* @since S60 3.2
|
sl@0
|
634 |
* @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
|
sl@0
|
635 |
* @see MRdsControlObserver::StationSeekByTAComplete
|
sl@0
|
636 |
*/
|
sl@0
|
637 |
IMPORT_C virtual void StationSeekByTA( TBool aSeekUp ) = 0;
|
sl@0
|
638 |
|
sl@0
|
639 |
/**
|
sl@0
|
640 |
* Asynchronous request to find a radio station with Traffic Programme (TP),
|
sl@0
|
641 |
* starting from the currently tuned frequency and searching in the direction specified
|
sl@0
|
642 |
* (i.e. up or down). User must be ready to receive callback method StationSeekByTPComplete
|
sl@0
|
643 |
* The station found is returned in the callback.
|
sl@0
|
644 |
*
|
sl@0
|
645 |
* @since S60 3.2
|
sl@0
|
646 |
* @param aSeekUp The direction to search in. Searches upwards if set to ETrue.
|
sl@0
|
647 |
* @see MRdsControlObserver::StationSeekByTPComplete
|
sl@0
|
648 |
*/
|
sl@0
|
649 |
IMPORT_C virtual void StationSeekByTP( TBool aSeekUp ) = 0;
|
sl@0
|
650 |
|
sl@0
|
651 |
/**
|
sl@0
|
652 |
* Cancels an ongoing retune operation, as initiated by a call to StationSeekByPTY,
|
sl@0
|
653 |
* StationSeekByTA, or StationSeekByTP.
|
sl@0
|
654 |
* The usual callback will not occur if this has been called.
|
sl@0
|
655 |
*
|
sl@0
|
656 |
* @since S60 3.2
|
sl@0
|
657 |
*/
|
sl@0
|
658 |
IMPORT_C virtual void CancelRdsStationSeek() = 0;
|
sl@0
|
659 |
|
sl@0
|
660 |
/**
|
sl@0
|
661 |
* Asynchronous request to find all frequencies sending the given Programme Type (PTY).
|
sl@0
|
662 |
* User must be ready to receive callback method GetFreqByPTYComplete.
|
sl@0
|
663 |
*
|
sl@0
|
664 |
* NOTE: This is only supported in dual tuner configuration since the secondary tuner
|
sl@0
|
665 |
* needs to perform continuous scanning for frequencies broadcasting given Programme Type
|
sl@0
|
666 |
* while the primary tuner is used for normal tuner activities.
|
sl@0
|
667 |
* Client should first check the tuner capabilities. Will return KErrNotSupported in
|
sl@0
|
668 |
* callback method if this feature is not supported.
|
sl@0
|
669 |
*
|
sl@0
|
670 |
* @since S60 3.2
|
sl@0
|
671 |
* @param aPty The type of programme to search for
|
sl@0
|
672 |
* @see MRdsControlObserver::GetFreqByPTYComplete
|
sl@0
|
673 |
*/
|
sl@0
|
674 |
IMPORT_C virtual void GetFreqByPTY( TRdsProgrammeType aPty ) = 0;
|
sl@0
|
675 |
|
sl@0
|
676 |
/**
|
sl@0
|
677 |
* Cancels an ongoing request to find all frequencies sending a given Programme Type (PTY).
|
sl@0
|
678 |
* The usual callback will not occur if this has been called.
|
sl@0
|
679 |
*
|
sl@0
|
680 |
* @since S60 3.2
|
sl@0
|
681 |
*/
|
sl@0
|
682 |
IMPORT_C virtual void CancelGetFreqByPTY() = 0;
|
sl@0
|
683 |
|
sl@0
|
684 |
/**
|
sl@0
|
685 |
* Asynchronous request to find all frequencies sending Traffic Announcement (TA). User must
|
sl@0
|
686 |
* be ready to receive callback method GetFreqByTAComplete.
|
sl@0
|
687 |
*
|
sl@0
|
688 |
* NOTE: This is only supported in dual tuner configuration since the secondary tuner
|
sl@0
|
689 |
* needs to perform continuous scanning for frequencies broadcasting given Traffic Announcement
|
sl@0
|
690 |
* while the primary tuner is used for normal tuner activities.
|
sl@0
|
691 |
* Client should first check the tuner capabilities. Will return KErrNotSupported in
|
sl@0
|
692 |
* callback method if this feature is not supported.
|
sl@0
|
693 |
*
|
sl@0
|
694 |
* @since S60 3.2
|
sl@0
|
695 |
* @see MRdsControlObserver::GetFreqByTAComplete
|
sl@0
|
696 |
*/
|
sl@0
|
697 |
IMPORT_C virtual void GetFreqByTA() = 0;
|
sl@0
|
698 |
|
sl@0
|
699 |
/**
|
sl@0
|
700 |
* Cancels an ongoing request to find all frequencies sending Traffic Announcement.
|
sl@0
|
701 |
* The usual callback will not occur if this has been called.
|
sl@0
|
702 |
*
|
sl@0
|
703 |
* @since S60 3.2
|
sl@0
|
704 |
*/
|
sl@0
|
705 |
IMPORT_C virtual void CancelGetFreqByTA() = 0;
|
sl@0
|
706 |
|
sl@0
|
707 |
/**
|
sl@0
|
708 |
* Asynchronous request to find all Programme Service names (PS) sending the given Programme
|
sl@0
|
709 |
* Type (PTY). User must be ready to receive callback method GetPSByPTYComplete.
|
sl@0
|
710 |
*
|
sl@0
|
711 |
* NOTE: This is only supported in dual tuner configuration since the secondary tuner
|
sl@0
|
712 |
* needs to perform continuous scanning for frequencies broadcasting given Programme Type
|
sl@0
|
713 |
* while the primary tuner is used for normal tuner activities.
|
sl@0
|
714 |
* Client should first check the tuner capabilities. Will return KErrNotSupported in
|
sl@0
|
715 |
* callback method if this feature is not supported.
|
sl@0
|
716 |
*
|
sl@0
|
717 |
* @since S60 3.2
|
sl@0
|
718 |
* @param aPty The type of programme to search for
|
sl@0
|
719 |
* @see MRdsControlObserver::GetPSByPTYComplete
|
sl@0
|
720 |
*/
|
sl@0
|
721 |
IMPORT_C virtual void GetPSByPTY( TRdsProgrammeType aPty ) = 0;
|
sl@0
|
722 |
|
sl@0
|
723 |
/**
|
sl@0
|
724 |
* Cancels an ongoing request to find all Programme Service names (PS) sending a given
|
sl@0
|
725 |
* Programme Type (PTY). The usual callback will not occur if this has been called.
|
sl@0
|
726 |
*
|
sl@0
|
727 |
* @since S60 3.2
|
sl@0
|
728 |
*/
|
sl@0
|
729 |
IMPORT_C virtual void CancelGetPSByPTY() = 0;
|
sl@0
|
730 |
|
sl@0
|
731 |
/**
|
sl@0
|
732 |
* Asynchronous request to find all Programme Service names (PS) sending Traffic Announcement (TA).
|
sl@0
|
733 |
* User must be ready to receive callback method GetPSByTAComplete.
|
sl@0
|
734 |
*
|
sl@0
|
735 |
* NOTE: This is only supported in dual tuner configuration since the secondary tuner
|
sl@0
|
736 |
* needs to perform continuous scanning for frequencies broadcasting given Traffic Announcement
|
sl@0
|
737 |
* while the primary tuner is used for normal tuner activities.
|
sl@0
|
738 |
* Client should first check the tuner capabilities. Will return KErrNotSupported in
|
sl@0
|
739 |
* callback method if this feature is not supported.
|
sl@0
|
740 |
*
|
sl@0
|
741 |
* @since S60 3.2
|
sl@0
|
742 |
* @see MRdsControlObserver::GetPSByTAComplete
|
sl@0
|
743 |
*/
|
sl@0
|
744 |
IMPORT_C virtual void GetPSByTA() = 0;
|
sl@0
|
745 |
|
sl@0
|
746 |
/**
|
sl@0
|
747 |
* Cancels an ongoing request to find all Programme Service names (PS) sending Traffic Announcement.
|
sl@0
|
748 |
* The usual callback will not occur if this has been called.
|
sl@0
|
749 |
*
|
sl@0
|
750 |
* @since S60 3.2
|
sl@0
|
751 |
*/
|
sl@0
|
752 |
IMPORT_C virtual void CancelGetPSByTA() = 0;
|
sl@0
|
753 |
|
sl@0
|
754 |
/**
|
sl@0
|
755 |
* Get the current Programme Identification code.
|
sl@0
|
756 |
* RDS data is received over the air and may not be available immediately following
|
sl@0
|
757 |
* tune operation. If a value is returned, this is the last known value, which may
|
sl@0
|
758 |
* not be up to date.
|
sl@0
|
759 |
* To be notified of the most recent value, client should use NotifyRdsDataChange.
|
sl@0
|
760 |
*
|
sl@0
|
761 |
* @since S60 3.2
|
sl@0
|
762 |
* @param aPi On return contains Programme Identification code
|
sl@0
|
763 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
764 |
*/
|
sl@0
|
765 |
IMPORT_C virtual TInt GetProgrammeIdentification( TInt& aPi ) = 0;
|
sl@0
|
766 |
|
sl@0
|
767 |
/**
|
sl@0
|
768 |
* Get the current Programme Type.
|
sl@0
|
769 |
* RDS data is received over the air and may not be available immediately following
|
sl@0
|
770 |
* tune operation. If a value is returned, this is the last known value, which may
|
sl@0
|
771 |
* not be up to date.
|
sl@0
|
772 |
* To be notified of the most recent value, client should use NotifyRdsDataChange.
|
sl@0
|
773 |
*
|
sl@0
|
774 |
* @since S60 3.2
|
sl@0
|
775 |
* @param aPty On return contains Programme Type
|
sl@0
|
776 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
777 |
*/
|
sl@0
|
778 |
IMPORT_C virtual TInt GetProgrammeType( TRdsProgrammeType& aPty ) = 0;
|
sl@0
|
779 |
|
sl@0
|
780 |
/**
|
sl@0
|
781 |
* Get the current Programme Service name.
|
sl@0
|
782 |
* RDS data is received over the air and may not be available immediately following
|
sl@0
|
783 |
* tune operation. If a value is returned, this is the last known value, which may
|
sl@0
|
784 |
* not be up to date.
|
sl@0
|
785 |
* To be notified of the most recent value, client should use NotifyRdsDataChange.
|
sl@0
|
786 |
*
|
sl@0
|
787 |
* The maximum possible length for Programme Service name is 8 characters.
|
sl@0
|
788 |
*
|
sl@0
|
789 |
* @since S60 3.2
|
sl@0
|
790 |
* @param aPs On return contains Programme Service name
|
sl@0
|
791 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
792 |
*/
|
sl@0
|
793 |
IMPORT_C virtual TInt GetProgrammeService( TRdsPSName& aPs ) = 0;
|
sl@0
|
794 |
|
sl@0
|
795 |
/**
|
sl@0
|
796 |
* Get the current Radio Text.
|
sl@0
|
797 |
* RDS data is received over the air and may not be available immediately following
|
sl@0
|
798 |
* tune operation. If a value is returned, this is the last known value, which may
|
sl@0
|
799 |
* not be up to date.
|
sl@0
|
800 |
* To be notified of the most recent value, client should use NotifyRdsDataChange.
|
sl@0
|
801 |
*
|
sl@0
|
802 |
* The maximum possible length for radio text is 64 characters.
|
sl@0
|
803 |
*
|
sl@0
|
804 |
* If RT+ is supported, RT+ tags information is returned along with the RT. Array is
|
sl@0
|
805 |
* owned by the client.
|
sl@0
|
806 |
*
|
sl@0
|
807 |
* @since S60 3.2
|
sl@0
|
808 |
* @param aRt On return contains Radio Text
|
sl@0
|
809 |
* @param aRTplusTags RTplus tags
|
sl@0
|
810 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
811 |
*/
|
sl@0
|
812 |
IMPORT_C virtual TInt GetRadioText( TRdsRadioText& aRt, RArray<TRdsRTplusTag>& aRTplusTags ) = 0;
|
sl@0
|
813 |
|
sl@0
|
814 |
/**
|
sl@0
|
815 |
* Get the current Clock Time and date.
|
sl@0
|
816 |
* RDS data is received over the air and may not be available immediately following
|
sl@0
|
817 |
* tune operation. If a value is returned, this is the last known value, which may
|
sl@0
|
818 |
* not be up to date.
|
sl@0
|
819 |
* To be notified of the most recent value, client should use NotifyRdsDataChange.
|
sl@0
|
820 |
*
|
sl@0
|
821 |
* The RDS standard states that this is broadcast within 0.1s of the start of a minute,
|
sl@0
|
822 |
* and is accurate to one minute. The latency of the notification reaching the application
|
sl@0
|
823 |
* cannot be guaranteed.
|
sl@0
|
824 |
*
|
sl@0
|
825 |
* @since S60 3.2
|
sl@0
|
826 |
* @param aCt On return contains current time and date
|
sl@0
|
827 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
828 |
*/
|
sl@0
|
829 |
IMPORT_C virtual TInt GetClockTime( TDateTime& aCt ) = 0;
|
sl@0
|
830 |
|
sl@0
|
831 |
/**
|
sl@0
|
832 |
* Get Traffic Announcement status at the current station.
|
sl@0
|
833 |
*
|
sl@0
|
834 |
* @since S60 3.2
|
sl@0
|
835 |
* @param aTaStatus On return, will be ETrue if current station has ongoing traffic announcement
|
sl@0
|
836 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
837 |
*/
|
sl@0
|
838 |
IMPORT_C virtual TInt GetTrafficAnnouncementStatus( TBool& aTaStatus ) = 0;
|
sl@0
|
839 |
|
sl@0
|
840 |
/**
|
sl@0
|
841 |
* Get Traffic Programme status at the current station.
|
sl@0
|
842 |
*
|
sl@0
|
843 |
* @since S60 3.2
|
sl@0
|
844 |
* @param aTpStatus On return, will be ETrue if current station supports traffic programme
|
sl@0
|
845 |
* @return A standard system error code or RDS control error (TRdsControlError).
|
sl@0
|
846 |
*/
|
sl@0
|
847 |
IMPORT_C virtual TInt GetTrafficProgrammeStatus( TBool& aTpStatus ) = 0;
|
sl@0
|
848 |
};
|
sl@0
|
849 |
|
sl@0
|
850 |
#endif // M_RADIORDSCONTROL_H
|
sl@0
|
851 |
|