sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#if !defined(__EIKSSND_H__)
|
sl@0
|
17 |
#define __EIKSSND_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <s32file.h>
|
sl@0
|
21 |
#include <mmf/common/mmfbase.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
Specifies a system sound for a ring, alarm, message, error or event.
|
sl@0
|
26 |
"bafl.lib"
|
sl@0
|
27 |
@since 6.0
|
sl@0
|
28 |
@publishedAll
|
sl@0
|
29 |
@released
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
typedef TUid TBaSystemSoundUid;
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Specifies a system sound file name.
|
sl@0
|
35 |
"bafl.lib"
|
sl@0
|
36 |
@since 6.0
|
sl@0
|
37 |
@publishedAll
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
typedef TFileName TBaSystemSoundName;
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
@publishedAll
|
sl@0
|
44 |
@released
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
#define KSystemSoundDefaultVolume 1
|
sl@0
|
47 |
#define KSystemSoundDefaultPriority 0
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
this dll may use uids 48aa to 48ca
|
sl@0
|
51 |
@publishedAll
|
sl@0
|
52 |
@released
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
const TBaSystemSoundUid KSystemSoundRingUID = {0x100048AB};
|
sl@0
|
55 |
const TBaSystemSoundUid KSystemSoundAlarmUID = {0x100048AC};
|
sl@0
|
56 |
const TBaSystemSoundUid KSystemSoundMessageUID = {0x100048AD};
|
sl@0
|
57 |
|
sl@0
|
58 |
const TBaSystemSoundUid KUidSystemSoundError={0x1000609E};
|
sl@0
|
59 |
const TBaSystemSoundUid KUidSystemSoundEvent={0x1000609F};
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
class TBaSystemSoundType
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Provides a logical sound wrapper. A sound is specified logically using two
|
sl@0
|
66 |
UIDs. The first UID specifies the sound's category which can be a file, tone
|
sl@0
|
67 |
or sequence; the second, which is optional, specifies an instance of that
|
sl@0
|
68 |
category. The pair of UIDs is encapsulated in a TBaSystemSoundType object.
|
sl@0
|
69 |
|
sl@0
|
70 |
Once a TBaSystemSoundType object is constructed, the sound player class CoeSoundPlayer
|
sl@0
|
71 |
is used to play the sound.
|
sl@0
|
72 |
@publishedAll
|
sl@0
|
73 |
@released
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
{
|
sl@0
|
76 |
public:
|
sl@0
|
77 |
IMPORT_C TBaSystemSoundType();
|
sl@0
|
78 |
IMPORT_C TBaSystemSoundType(TBaSystemSoundUid aMajor,TUid aMinor=KNullUid);
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
inline TBool IsNull() const;
|
sl@0
|
81 |
IMPORT_C TBool operator==(const TBaSystemSoundType& aType) const;
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
/** Specifies a sound's category. */
|
sl@0
|
84 |
TBaSystemSoundUid iMajor;
|
sl@0
|
85 |
/** Specifies an instance of a sound's category. */
|
sl@0
|
86 |
TUid iMinor;
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
|
sl@0
|
90 |
class TBaSystemSoundInfo
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
Provides functions that contain the information for a system sound. A sound
|
sl@0
|
93 |
may be a file, a tone or a fixed sequence.
|
sl@0
|
94 |
|
sl@0
|
95 |
The characteristics of a physical sound that corresponds to a logical sound
|
sl@0
|
96 |
are encapsulated in a TBaSystemSoundInfo object. You can get and set the physical
|
sl@0
|
97 |
sound for a logical sound through the functions provided by the BaSystemSound
|
sl@0
|
98 |
class.
|
sl@0
|
99 |
@publishedAll
|
sl@0
|
100 |
@released
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
{
|
sl@0
|
103 |
public:
|
sl@0
|
104 |
|
sl@0
|
105 |
class TTone
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
Provides functions to define a tone. Once defined, the tone can be encapsulated
|
sl@0
|
108 |
using the TBaSystemSoundInfo class and subsequently played.
|
sl@0
|
109 |
@publishedAll
|
sl@0
|
110 |
@released
|
sl@0
|
111 |
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
{
|
sl@0
|
114 |
public:
|
sl@0
|
115 |
|
sl@0
|
116 |
inline TTone();
|
sl@0
|
117 |
inline TTone(TInt aFrequency,TTimeIntervalMicroSeconds32 aDuration);
|
sl@0
|
118 |
public:
|
sl@0
|
119 |
|
sl@0
|
120 |
TBool IsNull() const;
|
sl@0
|
121 |
public:
|
sl@0
|
122 |
|
sl@0
|
123 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
124 |
|
sl@0
|
125 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
126 |
public:
|
sl@0
|
127 |
/** Frequency of the tone. */
|
sl@0
|
128 |
TInt iFrequency;
|
sl@0
|
129 |
/** Duration of the tone. */
|
sl@0
|
130 |
TTimeIntervalMicroSeconds32 iDuration;
|
sl@0
|
131 |
};
|
sl@0
|
132 |
public:
|
sl@0
|
133 |
/** Specifies the category of the system sound. */
|
sl@0
|
134 |
enum TSoundCategory
|
sl@0
|
135 |
{
|
sl@0
|
136 |
/** Specifies no system sound. */
|
sl@0
|
137 |
ENull,
|
sl@0
|
138 |
|
sl@0
|
139 |
/** Specifies a file as the system sound. */
|
sl@0
|
140 |
EFile,
|
sl@0
|
141 |
|
sl@0
|
142 |
/** Specifies a sequence as the system sound. */
|
sl@0
|
143 |
ESequence,
|
sl@0
|
144 |
|
sl@0
|
145 |
/** Specifies a tone as the system sound. */
|
sl@0
|
146 |
ETone
|
sl@0
|
147 |
};
|
sl@0
|
148 |
public:
|
sl@0
|
149 |
IMPORT_C TBaSystemSoundInfo();
|
sl@0
|
150 |
IMPORT_C TBaSystemSoundInfo(const TBaSystemSoundType& aType,const TBaSystemSoundName& aName,
|
sl@0
|
151 |
TInt aVolume=KSystemSoundDefaultVolume,TInt aPriority=KSystemSoundDefaultPriority);
|
sl@0
|
152 |
IMPORT_C TBaSystemSoundInfo(const TBaSystemSoundType& aType,TInt aFixedSequence,
|
sl@0
|
153 |
TInt aVolume=KSystemSoundDefaultVolume,TInt aPriority=KSystemSoundDefaultPriority);
|
sl@0
|
154 |
IMPORT_C TBaSystemSoundInfo(const TBaSystemSoundType& aType,TTone aTone,
|
sl@0
|
155 |
TInt aVolume=KSystemSoundDefaultVolume,TInt aPriority=KSystemSoundDefaultPriority);
|
sl@0
|
156 |
public:
|
sl@0
|
157 |
IMPORT_C TSoundCategory SoundCategory() const;
|
sl@0
|
158 |
inline TInt FixedSequenceNumber() const;
|
sl@0
|
159 |
inline TBaSystemSoundName FileName() const;
|
sl@0
|
160 |
inline TTone Tone() const;
|
sl@0
|
161 |
IMPORT_C void SetFixedSequenceNumber(TInt aNumber);
|
sl@0
|
162 |
IMPORT_C void SetFileName(const TBaSystemSoundName& aFileName);
|
sl@0
|
163 |
IMPORT_C void SetTone(const TTone& aTone);
|
sl@0
|
164 |
|
sl@0
|
165 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
166 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
167 |
public:
|
sl@0
|
168 |
TBaSystemSoundType iType;
|
sl@0
|
169 |
TInt iVolume;
|
sl@0
|
170 |
TInt iPriority;
|
sl@0
|
171 |
private:
|
sl@0
|
172 |
TBaSystemSoundName iName;
|
sl@0
|
173 |
TInt iFixedSequence;
|
sl@0
|
174 |
TTone iTone;
|
sl@0
|
175 |
};
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
API class to retrieve and modify the system sounds settings.
|
sl@0
|
180 |
|
sl@0
|
181 |
Note that SystemSoundFile() is now deprecated and will be removed in a future
|
sl@0
|
182 |
release. The filename it returns is no longer valid but is kept for backwards
|
sl@0
|
183 |
compatibility. The system sounds settings are no longer stored in a data file.
|
sl@0
|
184 |
|
sl@0
|
185 |
@see BaSystemSound::SystemSoundFile
|
sl@0
|
186 |
@see KSystemSoundRepositoryUID
|
sl@0
|
187 |
@publishedAll
|
sl@0
|
188 |
@released
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
class BaSystemSound
|
sl@0
|
191 |
{
|
sl@0
|
192 |
public:
|
sl@0
|
193 |
IMPORT_C static TInt GetSound(RFs& aFsSession,const TBaSystemSoundType& aType,TBaSystemSoundInfo& aInfo);
|
sl@0
|
194 |
IMPORT_C static void SetSoundL(RFs& aFsSession,const TBaSystemSoundInfo& aInfo);
|
sl@0
|
195 |
IMPORT_C static TFileName SystemSoundFile(); // Deprecated
|
sl@0
|
196 |
private:
|
sl@0
|
197 |
TBaSystemSoundName static DefaultSound(TBaSystemSoundUid aSSUid);
|
sl@0
|
198 |
};
|
sl@0
|
199 |
|
sl@0
|
200 |
|
sl@0
|
201 |
class CBaSystemSoundArray: public CBase
|
sl@0
|
202 |
/**
|
sl@0
|
203 |
* An array to contain the set of system sounds for a TBaSystemSoundUid
|
sl@0
|
204 |
@publishedAll
|
sl@0
|
205 |
@released
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
{
|
sl@0
|
208 |
public:
|
sl@0
|
209 |
CBaSystemSoundArray();
|
sl@0
|
210 |
~CBaSystemSoundArray();
|
sl@0
|
211 |
public:
|
sl@0
|
212 |
IMPORT_C static CBaSystemSoundArray* NewL();
|
sl@0
|
213 |
IMPORT_C static CBaSystemSoundArray* NewLC();
|
sl@0
|
214 |
IMPORT_C void RestoreL(RFs& aFsSession,TBaSystemSoundUid aSSUid);
|
sl@0
|
215 |
IMPORT_C TInt Count() ;
|
sl@0
|
216 |
IMPORT_C TBaSystemSoundInfo At(TInt aIndex);
|
sl@0
|
217 |
|
sl@0
|
218 |
private:
|
sl@0
|
219 |
TBaSystemSoundUid iUid;
|
sl@0
|
220 |
CArrayFixFlat<TBaSystemSoundInfo> iSystemSounds;
|
sl@0
|
221 |
};
|
sl@0
|
222 |
|
sl@0
|
223 |
|
sl@0
|
224 |
class TBaSoundPriorityBase
|
sl@0
|
225 |
/**
|
sl@0
|
226 |
Utility class to bundle up priority, priority preference and device specific data
|
sl@0
|
227 |
Only intended to be used in conjunction with TBaSystemSoundInfo::iPriority
|
sl@0
|
228 |
|
sl@0
|
229 |
Layout of class is
|
sl@0
|
230 |
bits 31 -> 16: Device specific priority preference data
|
sl@0
|
231 |
bits 15 -> 8: Standard Epoc TMdaPriorityPreference setting
|
sl@0
|
232 |
bits 7 -> 0: Priority value stored as a TInt8. Maximum range possible is -256 -> +255
|
sl@0
|
233 |
Note that MediaSvr currently defines a narrower range than this
|
sl@0
|
234 |
@publishedAll
|
sl@0
|
235 |
@released
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
{
|
sl@0
|
238 |
public:
|
sl@0
|
239 |
inline TInt Int() const;
|
sl@0
|
240 |
inline TInt Priority() const;
|
sl@0
|
241 |
IMPORT_C TMdaPriorityPreference PriorityPreference() const;
|
sl@0
|
242 |
protected:
|
sl@0
|
243 |
inline TBaSoundPriorityBase();
|
sl@0
|
244 |
void Set(TInt aPriority,TMdaPriorityPreference aPriorityPreference=EMdaPriorityPreferenceTimeAndQuality);
|
sl@0
|
245 |
protected:
|
sl@0
|
246 |
TInt iPriority;
|
sl@0
|
247 |
};
|
sl@0
|
248 |
|
sl@0
|
249 |
|
sl@0
|
250 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
251 |
#include <bassnduid.h>
|
sl@0
|
252 |
#endif
|
sl@0
|
253 |
|
sl@0
|
254 |
class TBaSoundPriorityEncoder : public TBaSoundPriorityBase
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
Encode TBaSystemSoundInfo::iPriority before persisting a sound preference
|
sl@0
|
257 |
@publishedAll
|
sl@0
|
258 |
@released
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
{
|
sl@0
|
261 |
public:
|
sl@0
|
262 |
IMPORT_C TBaSoundPriorityEncoder(TInt aPriority,TMdaPriorityPreference aPriorityPreference=EMdaPriorityPreferenceTimeAndQuality);
|
sl@0
|
263 |
};
|
sl@0
|
264 |
|
sl@0
|
265 |
|
sl@0
|
266 |
|
sl@0
|
267 |
inline TBool TBaSystemSoundType::IsNull() const
|
sl@0
|
268 |
/** Tests whether the sound's category and instance are null.
|
sl@0
|
269 |
|
sl@0
|
270 |
@return ETrue if the sound's category and instance are null, EFalse otherwise. */
|
sl@0
|
271 |
{return iMajor==KNullUid && iMinor==KNullUid;}
|
sl@0
|
272 |
|
sl@0
|
273 |
|
sl@0
|
274 |
inline TBaSystemSoundInfo::TTone::TTone()
|
sl@0
|
275 |
: iFrequency(0), iDuration(0)
|
sl@0
|
276 |
/** Default constructor. Sets up a TTone object with null frequency and duration. */
|
sl@0
|
277 |
{}
|
sl@0
|
278 |
inline TBaSystemSoundInfo::TTone::TTone(TInt aFrequency,TTimeIntervalMicroSeconds32 aDuration)
|
sl@0
|
279 |
: iFrequency(aFrequency), iDuration(aDuration)
|
sl@0
|
280 |
/** Constructor which sets up a TTone object with specified frequency and duration.
|
sl@0
|
281 |
|
sl@0
|
282 |
@param aFrequency The tone's frequency.
|
sl@0
|
283 |
@param aDuration The tone's duration. */
|
sl@0
|
284 |
{}
|
sl@0
|
285 |
|
sl@0
|
286 |
inline TInt TBaSystemSoundInfo::FixedSequenceNumber() const
|
sl@0
|
287 |
/** Gets the current sound's sequence.
|
sl@0
|
288 |
|
sl@0
|
289 |
@return The current sound's sequence. */
|
sl@0
|
290 |
{return iFixedSequence;}
|
sl@0
|
291 |
|
sl@0
|
292 |
inline TBaSystemSoundName TBaSystemSoundInfo::FileName() const
|
sl@0
|
293 |
/** Gets the current sound's file.
|
sl@0
|
294 |
|
sl@0
|
295 |
@return The current sound's file. */
|
sl@0
|
296 |
{return iName;}
|
sl@0
|
297 |
|
sl@0
|
298 |
inline TBaSystemSoundInfo::TTone TBaSystemSoundInfo::Tone() const
|
sl@0
|
299 |
/** Gets the current system sound's tone.
|
sl@0
|
300 |
|
sl@0
|
301 |
@return The current sound's tone. */
|
sl@0
|
302 |
{return iTone;}
|
sl@0
|
303 |
|
sl@0
|
304 |
inline TBaSoundPriorityBase::TBaSoundPriorityBase()
|
sl@0
|
305 |
{}
|
sl@0
|
306 |
inline TInt TBaSoundPriorityBase::Int() const
|
sl@0
|
307 |
{return iPriority;}
|
sl@0
|
308 |
inline TInt TBaSoundPriorityBase::Priority() const
|
sl@0
|
309 |
{return (TInt8)iPriority;}
|
sl@0
|
310 |
|
sl@0
|
311 |
|
sl@0
|
312 |
#endif
|