|
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 |
|
19 // INCLUDES |
|
20 #include "testsdknotesstaticnotedialog.h" |
|
21 |
|
22 // ----------------------------------------------------------------------------- |
|
23 // CTestSDKNotesControl::CTestSDKNotesStaticNoteDialog |
|
24 // ----------------------------------------------------------------------------- |
|
25 CTestSDKNotesStaticNoteDialog::CTestSDKNotesStaticNoteDialog():CAknStaticNoteDialog() |
|
26 { |
|
27 |
|
28 } |
|
29 |
|
30 // ----------------------------------------------------------------------------- |
|
31 // CTestSDKNotesControl::~CTestSDKNotesStaticNoteDialog |
|
32 // ----------------------------------------------------------------------------- |
|
33 CTestSDKNotesStaticNoteDialog::~CTestSDKNotesStaticNoteDialog() |
|
34 { |
|
35 |
|
36 } |
|
37 |
|
38 // ----------------------------------------------------------------------------- |
|
39 // CTestSDKNotesControl::PostLayoutDynInitL |
|
40 // ----------------------------------------------------------------------------- |
|
41 void CTestSDKNotesStaticNoteDialog::PostLayoutDynInitL() |
|
42 { |
|
43 CAknStaticNoteDialog::PostLayoutDynInitL(); |
|
44 } |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // CTestSDKNotesControl::Indicator |
|
48 // ----------------------------------------------------------------------------- |
|
49 CAknStaticNoteStackIndicator* CTestSDKNotesStaticNoteDialog::Indicator() |
|
50 { |
|
51 return iStackIndicator; |
|
52 } |
|
53 |
|
54 // ----------------------------------------------------------------------------- |
|
55 // CTestSDKNotesControl::OfferKeyEventL |
|
56 // ----------------------------------------------------------------------------- |
|
57 TKeyResponse CTestSDKNotesStaticNoteDialog::OfferKeyEventL( const TKeyEvent& aKeyEvent,TEventCode aType ) |
|
58 { |
|
59 return CAknStaticNoteDialog::OfferKeyEventL( aKeyEvent, aType ); |
|
60 } |