1 /* |
|
2 * Copyright (c) 2002 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: Profile settings interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MPROFILESETEXTRASETTINGS_H |
|
21 #define MPROFILESETEXTRASETTINGS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32def.h> |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class MProfileSetPttSettings; |
|
28 class MProfileSetFeedbackSettings; |
|
29 class MProfileSet3DToneSettings; |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * Interface for modifying Profiles extra settings. |
|
35 * @since 3.1 |
|
36 */ |
|
37 class MProfileSetExtraSettings |
|
38 { |
|
39 protected: // Destructor |
|
40 |
|
41 virtual ~MProfileSetExtraSettings() {}; |
|
42 |
|
43 public: // New functions |
|
44 |
|
45 /** |
|
46 * Returns set profile ptt settings interface. |
|
47 * @return set profile ptt settings interface. |
|
48 * @since 3.1 |
|
49 */ |
|
50 virtual MProfileSetPttSettings& ProfileSetPttSettings() const = 0; |
|
51 |
|
52 /** |
|
53 * Returns set profile feedback settings interface. |
|
54 * @return set profile feedback settings interface. |
|
55 * @since 5.0 |
|
56 */ |
|
57 virtual MProfileSetFeedbackSettings& ProfileSetFeedbackSettings() const = 0; |
|
58 |
|
59 /** |
|
60 * Returns set profile 3D tone settings interface. |
|
61 * @return set profile 3D tone settings interface. |
|
62 * @since 3.1 |
|
63 */ |
|
64 virtual MProfileSet3DToneSettings& ProfileSet3DToneSettings() const = 0; |
|
65 |
|
66 }; |
|
67 |
|
68 #endif // MPROFILESETEXTRASETTINGS_H |
|
69 |
|
70 // End of File |
|
71 |
|
72 |
|