00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef AKNSOUNDINFO_H
00019 #define AKNSOUNDINFO_H
00020
00021
00022 #include <e32base.h>
00023
00024
00025 enum TSoundType
00026 {
00027 ESoundTone = 1,
00028 ESoundFile = 2,
00029 ESoundSequence = 3
00030 };
00031
00032
00033 class RWriteStream;
00034
00035
00043 NONSHARABLE_CLASS(CAknSoundInfo) : public CBase
00044 {
00045 public:
00051 IMPORT_C static CAknSoundInfo* NewL();
00052
00056 IMPORT_C ~CAknSoundInfo();
00057
00058 public:
00062 IMPORT_C void InternalizeL(RReadStream& aStream);
00063
00067 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
00068
00069 public:
00071 TInt16 iPriority;
00072
00074 TInt16 iFrequency;
00075
00077 TInt iPreference;
00078
00080 HBufC* iFile;
00081
00083 TInt iDuration;
00084
00086 HBufC8* iSequence;
00087
00089 TUint8 iVolume;
00090
00092 TSoundType iType;
00093
00094 private:
00098 CAknSoundInfo();
00099 };
00100
00101 #endif // AKNSOUNDINFO_H
00102
00103