45
|
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 |
#ifndef C_TESTSDKPOPUPSSPSP_H
|
|
20 |
#define C_TESTSDKPOPUPSSPSP_H
|
|
21 |
|
|
22 |
#include <coecobs.h>
|
|
23 |
#include <aknpopupsettingpage.h>
|
|
24 |
|
|
25 |
class CTestSDKPopupsSPSP : public CAknPopupSettingPage
|
|
26 |
{
|
|
27 |
public:// Constructors and destructor
|
|
28 |
/**
|
|
29 |
* C++ default constructor.
|
|
30 |
*/
|
|
31 |
CTestSDKPopupsSPSP( TInt aResourceID, MAknQueryValue& aQueryValue );
|
|
32 |
|
|
33 |
/**
|
|
34 |
* Destructor.
|
|
35 |
*/
|
|
36 |
~CTestSDKPopupsSPSP();
|
|
37 |
|
|
38 |
/**
|
|
39 |
* overload constructor.
|
|
40 |
*/
|
|
41 |
CTestSDKPopupsSPSP( const TDesC* aSettingTitleText,
|
|
42 |
TInt aSettingNumber,
|
|
43 |
TInt aControlType,
|
|
44 |
TInt aEditorResourceId,
|
|
45 |
TInt aSettingPageResourceId,
|
|
46 |
MAknQueryValue& aQueryValue );
|
|
47 |
|
|
48 |
/**
|
|
49 |
* QueryValue test function for testing the
|
|
50 |
* Test QueryValue function
|
|
51 |
*/
|
|
52 |
MAknQueryValue* QueryValue() const;
|
|
53 |
|
|
54 |
/**
|
|
55 |
* SelectCurrentItemL test function for testing the
|
|
56 |
* Test SelectCurrentItemL function
|
|
57 |
*/
|
|
58 |
void SelectCurrentItemL();
|
|
59 |
|
|
60 |
/**
|
|
61 |
* WriteInternalStateL test function for testing the
|
|
62 |
* Test WriteInternalStateL function
|
|
63 |
*/
|
|
64 |
void WriteInternalStateL( RWriteStream& aWriteStream ) const;
|
|
65 |
|
|
66 |
/**
|
|
67 |
* Reserved_2 test function for testing the
|
|
68 |
* Test Reserved_2 function
|
|
69 |
*/
|
|
70 |
void Reserved_2();
|
|
71 |
|
|
72 |
};
|
|
73 |
|
|
74 |
#endif /*C_TESTSDKPOPUPSSPSP_H*/
|