|
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_TESTSDKPOPUPSEX_H
|
|
|
20 |
#define C_TESTSDKPOPUPSEX_H
|
|
|
21 |
|
|
|
22 |
#include <aknpopup.h>
|
|
|
23 |
#include <aknpopuplayout.h>
|
|
|
24 |
#include <coecobs.h>
|
|
|
25 |
#include <aknpopupfader.h>
|
|
|
26 |
#include <aknpopupfield.h>
|
|
|
27 |
#include <aknpopupsettingpage.h>
|
|
|
28 |
|
|
|
29 |
class CTestSDKPopupSPSL : public CAknPopupSettingList
|
|
|
30 |
{
|
|
|
31 |
public:// Constructors and destructor
|
|
|
32 |
/**
|
|
|
33 |
* C++ default constructor.
|
|
|
34 |
*/
|
|
|
35 |
CTestSDKPopupSPSL();
|
|
|
36 |
|
|
|
37 |
/**
|
|
|
38 |
* Destructor.
|
|
|
39 |
*/
|
|
|
40 |
~CTestSDKPopupSPSL();
|
|
|
41 |
|
|
|
42 |
/**
|
|
|
43 |
* CreateMenuListL test function for testing the
|
|
|
44 |
* Test CreateMenuListL function
|
|
|
45 |
*/
|
|
|
46 |
void CreateMenuListL();
|
|
|
47 |
|
|
|
48 |
/**
|
|
|
49 |
* ActivateMenuListL test function for testing the
|
|
|
50 |
* Test ActivateMenuListL function
|
|
|
51 |
*/
|
|
|
52 |
void ActivateMenuListL();
|
|
|
53 |
|
|
|
54 |
/**
|
|
|
55 |
* ConfigureMenuListL test function for testing the
|
|
|
56 |
* Test ConfigureMenuListL function
|
|
|
57 |
*/
|
|
|
58 |
void ConfigureMenuListL();
|
|
|
59 |
|
|
|
60 |
/**
|
|
|
61 |
* DestroyMenuList test function for testing the
|
|
|
62 |
* Test DestroyMenuList function
|
|
|
63 |
*/
|
|
|
64 |
void DestroyMenuList();
|
|
|
65 |
|
|
|
66 |
/**
|
|
|
67 |
* HandleListBoxEventL test function for testing the
|
|
|
68 |
* Test HandleListBoxEventL function
|
|
|
69 |
*/
|
|
|
70 |
void HandleListBoxEventL( CEikListBox* aListBox, TListBoxEvent aEventType );
|
|
|
71 |
};
|
|
|
72 |
|
|
|
73 |
#endif /*C_TESTSDKPOPUPSEX_H*/
|