|
1 /* |
|
2 * Copyright (c) 2010 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: |
|
15 * implementation of wait dialog that doesn't consume key events. |
|
16 * |
|
17 */ |
|
18 |
|
19 // System includes |
|
20 |
|
21 // User includes |
|
22 #include "xnwaitdialog.h" |
|
23 |
|
24 // CONSTANTS |
|
25 |
|
26 // ============================ LOCAL FUNCTIONS ================================ |
|
27 |
|
28 // ============================ MEMBER FUNCTIONS =============================== |
|
29 |
|
30 // --------------------------------------------------------------------------- |
|
31 // CXnWaitDialog::CXnWaitDialog |
|
32 // --------------------------------------------------------------------------- |
|
33 // |
|
34 CXnWaitDialog::CXnWaitDialog( CEikDialog** aSelfPtr, |
|
35 TBool aVisibilityDelayOff ) |
|
36 : CAknWaitDialog( aSelfPtr, aVisibilityDelayOff ) |
|
37 { |
|
38 } |
|
39 |
|
40 // --------------------------------------------------------------------------- |
|
41 // CXnWaitDialog::~CXnWaitDialog |
|
42 // --------------------------------------------------------------------------- |
|
43 // |
|
44 CXnWaitDialog::~CXnWaitDialog() |
|
45 { |
|
46 } |
|
47 |
|
48 // --------------------------------------------------------------------------- |
|
49 // CXnWaitDialog::OfferKeyEventL |
|
50 // --------------------------------------------------------------------------- |
|
51 // |
|
52 TKeyResponse CXnWaitDialog::OfferKeyEventL( |
|
53 const TKeyEvent& /*aKeyEvent*/, |
|
54 TEventCode /*aType*/ ) |
|
55 { |
|
56 return EKeyWasConsumed; // consume all keys while open |
|
57 } |
|
58 |
|
59 // End of file |