1 /* |
|
2 * Copyright (c) 2008 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: Setting page class for Vibra settings. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CPROFILEVIBRASETTINGPAGE_H |
|
21 #define CPROFILEVIBRASETTINGPAGE_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <aknpopupsettingpage.h> |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class CFLDController; |
|
28 |
|
29 // CLASS DECLARATION |
|
30 /** |
|
31 * Setting page class for Vibra settings. |
|
32 * CProfileVibraSettingPage extends CAknPopupSettingPage. |
|
33 * |
|
34 * @lib ProfileSettingsView.lib |
|
35 * @since 5.0 |
|
36 */ |
|
37 NONSHARABLE_CLASS( CProfileVibraSettingPage ) : public CAknPopupSettingPage |
|
38 { |
|
39 public: // Constructors and destructor |
|
40 |
|
41 /** |
|
42 * C++ constructor. |
|
43 * @param aResourceID Setting page resource ID. |
|
44 * @param aQueryValue |
|
45 */ |
|
46 CProfileVibraSettingPage( |
|
47 TInt aResourceID, |
|
48 MAknQueryValue& aQueryValue ); |
|
49 |
|
50 /** |
|
51 * Symbian 2nd phase constructor. |
|
52 */ |
|
53 void ConstructL(); |
|
54 |
|
55 /** |
|
56 * Destructor. |
|
57 */ |
|
58 ~CProfileVibraSettingPage(); |
|
59 |
|
60 private: // Functions from base classes |
|
61 |
|
62 /** |
|
63 * From CAknSettingPage |
|
64 */ |
|
65 TBool OkToExitL( TBool aAccept ); |
|
66 |
|
67 private: // New functions |
|
68 |
|
69 private: // Data |
|
70 |
|
71 }; |
|
72 |
|
73 #endif // CPROFILEVIBRASETTINGPAGE_H |
|
74 |
|
75 // End of File |
|