|
1 /* |
|
2 * Copyright (c) 2002 - 2007 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: test AknPopupSettingPage.h |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDES |
|
20 #include <coecobs.h> |
|
21 #include <aknpopupheadingpane.h> |
|
22 #include <barsread.h> |
|
23 #include <coemain.h> |
|
24 #include <testsdkpopups.rsg> |
|
25 |
|
26 #include "testsdkpopupsspsp.h" |
|
27 |
|
28 // ============================ MEMBER FUNCTIONS =============================== |
|
29 // ----------------------------------------------------------------------------- |
|
30 // CTestSDKPopupsSPSP::CTestSDKPopupsSPSP |
|
31 // ----------------------------------------------------------------------------- |
|
32 CTestSDKPopupsSPSP::CTestSDKPopupsSPSP( TInt aResourceID, |
|
33 MAknQueryValue& aQueryValue ):CAknPopupSettingPage( aResourceID, aQueryValue ) |
|
34 { |
|
35 |
|
36 } |
|
37 |
|
38 // ----------------------------------------------------------------------------- |
|
39 // CTestSDKPopupsSPSP::CTestSDKPopupsSPSP |
|
40 // ----------------------------------------------------------------------------- |
|
41 CTestSDKPopupsSPSP::CTestSDKPopupsSPSP( const TDesC* aSettingTitleText, |
|
42 TInt aSettingNumber, |
|
43 TInt aControlType, |
|
44 TInt aEditorResourceId, |
|
45 TInt aSettingPageResourceId, |
|
46 MAknQueryValue& aQueryValue ):CAknPopupSettingPage( aSettingTitleText, aSettingNumber, |
|
47 aControlType, aEditorResourceId, aSettingPageResourceId, aQueryValue ) |
|
48 { |
|
49 |
|
50 } |
|
51 |
|
52 // ----------------------------------------------------------------------------- |
|
53 // CTestSDKPopupsSPSP::~CTestSDKPopupsSPSP |
|
54 // ----------------------------------------------------------------------------- |
|
55 CTestSDKPopupsSPSP::~CTestSDKPopupsSPSP() |
|
56 { |
|
57 |
|
58 } |
|
59 |
|
60 // ----------------------------------------------------------------------------- |
|
61 // CTestSDKPopupsSPSP::QueryValue |
|
62 // ----------------------------------------------------------------------------- |
|
63 MAknQueryValue* CTestSDKPopupsSPSP::QueryValue() const |
|
64 { |
|
65 return CAknPopupSettingPage::QueryValue(); |
|
66 } |
|
67 |
|
68 // ----------------------------------------------------------------------------- |
|
69 // CTestSDKPopupsSPSP::SelectCurrentItemL |
|
70 // ----------------------------------------------------------------------------- |
|
71 void CTestSDKPopupsSPSP::SelectCurrentItemL() |
|
72 { |
|
73 CAknPopupSettingPage::SelectCurrentItemL(); |
|
74 } |
|
75 |
|
76 // ----------------------------------------------------------------------------- |
|
77 // CTestSDKPopupsSPSP::WriteInternalStateL |
|
78 // ----------------------------------------------------------------------------- |
|
79 void CTestSDKPopupsSPSP::WriteInternalStateL( RWriteStream& aWriteStream ) const |
|
80 { |
|
81 CAknPopupSettingPage::WriteInternalStateL( aWriteStream ); |
|
82 } |
|
83 |
|
84 // ----------------------------------------------------------------------------- |
|
85 // CTestSDKPopupsSPSP::Reserved_2 |
|
86 // ----------------------------------------------------------------------------- |
|
87 void CTestSDKPopupsSPSP::Reserved_2() |
|
88 { |
|
89 CAknPopupSettingPage::Reserved_2(); |
|
90 } |
|
91 |
|
92 // ----------------------------------------------------------------------------- |
|
93 // CTestSDKPopupsSPSP::ProcessCommandL |
|
94 // ----------------------------------------------------------------------------- |
|
95 void CTestSDKPopupsSPSP::ProcessCommandL( TInt aCommandId ) |
|
96 { |
|
97 CAknPopupSettingPage::ProcessCommandL( aCommandId ); |
|
98 } |
|
99 |