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 AknStaticNoteDialog.h
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef C_TESTSDKNOTESSTATICNOTEDIALOG_H
|
|
19 |
#define C_TESTSDKNOTESSTATICNOTEDIALOG_H
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
#include <aknstaticnotedialog.h>
|
|
23 |
|
|
24 |
/**
|
|
25 |
* CTestSDKNotesStaticNoteDialog test class for CAknStaticNoteDialog protected API.
|
|
26 |
*/
|
|
27 |
class CTestSDKNotesStaticNoteDialog : public CAknStaticNoteDialog
|
|
28 |
{
|
|
29 |
public:// Constructors and destructor
|
|
30 |
/**
|
|
31 |
* C++ default constructor.
|
|
32 |
*/
|
|
33 |
CTestSDKNotesStaticNoteDialog();
|
|
34 |
|
|
35 |
/**
|
|
36 |
* Destructor.
|
|
37 |
*/
|
|
38 |
~CTestSDKNotesStaticNoteDialog();
|
|
39 |
|
|
40 |
/**
|
|
41 |
* PostLayoutDynInitL test function for testing the
|
|
42 |
* Test PostLayoutDynInitL function
|
|
43 |
*/
|
|
44 |
void PostLayoutDynInitL();
|
|
45 |
|
|
46 |
/**
|
|
47 |
* OfferKeyEventL test function for testing the
|
|
48 |
* Test OfferKeyEventL function
|
|
49 |
*/
|
|
50 |
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent,TEventCode aType );
|
|
51 |
|
|
52 |
/**
|
|
53 |
* Indicator test function for testing the
|
|
54 |
* Test Indicator function
|
|
55 |
*/
|
|
56 |
CAknStaticNoteStackIndicator* Indicator();
|
|
57 |
};
|
|
58 |
|
|
59 |
#endif /*C_TESTSDKNOTESSTATICNOTEDIALOG_H*/
|