36
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Set profile extra tones2 interface.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef __MPROFILESETEXTRATONES2_H
|
|
21 |
#define __MPROFILESETEXTRATONES2_H
|
|
22 |
|
|
23 |
// INCLUDES
|
|
24 |
#include <e32std.h>
|
|
25 |
#include <MProfileSetExtraTones.h>
|
|
26 |
|
|
27 |
// CLASS DECLARATION
|
|
28 |
|
|
29 |
/**
|
|
30 |
* Set profile extra tones2 interface.
|
|
31 |
* This interface offers methods to set IM message alert tone file name.
|
|
32 |
*
|
|
33 |
* @lib N/A
|
|
34 |
* @since 10.1
|
|
35 |
*/
|
|
36 |
class MProfileSetExtraTones2 : public MProfileSetExtraTones
|
|
37 |
{
|
|
38 |
protected: // Destructor
|
|
39 |
|
|
40 |
virtual ~MProfileSetExtraTones2() {};
|
|
41 |
|
|
42 |
public: // New functions
|
|
43 |
|
|
44 |
/**
|
|
45 |
* Set reminder tone.
|
|
46 |
* @since 10.1
|
|
47 |
* @param aReminderTone File name of the reminder tone.
|
|
48 |
*/
|
|
49 |
virtual void SetReminderToneL(
|
|
50 |
const TDesC& aReminderTone ) = 0;
|
|
51 |
|
|
52 |
/**
|
|
53 |
* Set clock alarm tone.
|
|
54 |
* @since 10.1
|
|
55 |
* @param aClockAlarmTone File name of the clock alarm tone.
|
|
56 |
*/
|
|
57 |
virtual void SetClockAlarmToneL(
|
|
58 |
const TDesC& aClockAlarmTone ) = 0;
|
|
59 |
|
|
60 |
};
|
|
61 |
|
|
62 |
|
|
63 |
#endif // __MPROFILESETEXTRATONES2_H
|
|
64 |
|
|
65 |
// End of File
|