|
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 |
// INCLUDES
|
|
|
20 |
#include <coecobs.h>
|
|
|
21 |
#include <aknpopupheadingpane.h>
|
|
|
22 |
#include <barsread.h>
|
|
|
23 |
#include <coemain.h>
|
|
|
24 |
#include <testsdkpopups.rsg>
|
|
|
25 |
|
|
|
26 |
#include "testsdkpopupspsl.h"
|
|
|
27 |
// ============================ MEMBER FUNCTIONS ===============================
|
|
|
28 |
// -----------------------------------------------------------------------------
|
|
|
29 |
// CTestSDKPopupSPSL::CTestSDKPopupSPSL
|
|
|
30 |
// -----------------------------------------------------------------------------
|
|
|
31 |
CTestSDKPopupSPSL::CTestSDKPopupSPSL():CAknPopupSettingList()
|
|
|
32 |
{
|
|
|
33 |
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
// -----------------------------------------------------------------------------
|
|
|
37 |
// CTestSDKPopupSPSL::~CTestSDKPopupSPSL
|
|
|
38 |
// -----------------------------------------------------------------------------
|
|
|
39 |
CTestSDKPopupSPSL::~CTestSDKPopupSPSL()
|
|
|
40 |
{
|
|
|
41 |
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
// -----------------------------------------------------------------------------
|
|
|
45 |
// CTestSDKPopupSPSL::CreateMenuListL
|
|
|
46 |
// -----------------------------------------------------------------------------
|
|
|
47 |
void CTestSDKPopupSPSL::CreateMenuListL()
|
|
|
48 |
{
|
|
|
49 |
CAknPopupSettingList::CreateMenuListL();
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
// -----------------------------------------------------------------------------
|
|
|
53 |
// CTestSDKPopupSPSL::ActivateMenuListL
|
|
|
54 |
// -----------------------------------------------------------------------------
|
|
|
55 |
void CTestSDKPopupSPSL::ActivateMenuListL()
|
|
|
56 |
{
|
|
|
57 |
CAknPopupSettingList::ActivateMenuListL();
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
// -----------------------------------------------------------------------------
|
|
|
61 |
// CTestSDKPopupSPSL::ConfigureMenuListL
|
|
|
62 |
// -----------------------------------------------------------------------------
|
|
|
63 |
void CTestSDKPopupSPSL::ConfigureMenuListL()
|
|
|
64 |
{
|
|
|
65 |
CAknPopupSettingList::ConfigureMenuListL();
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
// -----------------------------------------------------------------------------
|
|
|
69 |
// CTestSDKPopupSPSL::DestroyMenuList
|
|
|
70 |
// -----------------------------------------------------------------------------
|
|
|
71 |
void CTestSDKPopupSPSL::DestroyMenuList()
|
|
|
72 |
{
|
|
|
73 |
CAknPopupSettingList::DestroyMenuList();
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
// -----------------------------------------------------------------------------
|
|
|
77 |
// CTestSDKPopupSPSL::DestroyMenuList
|
|
|
78 |
// -----------------------------------------------------------------------------
|
|
|
79 |
void CTestSDKPopupSPSL::HandleListBoxEventL( CEikListBox* aListBox, TListBoxEvent aEventType )
|
|
|
80 |
{
|
|
|
81 |
CAknPopupSettingList::HandleListBoxEventL( aListBox, aEventType );
|
|
|
82 |
}
|