equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: DTMF Sending Note. This note handles keypresses unlike |
|
15 * CPhoneNote. |
|
16 * |
|
17 */ |
|
18 |
|
19 /* |
|
20 */ |
|
21 |
|
22 #ifndef CPHONEDTMFSENDINGNOTE_H |
|
23 #define CPHONEDTMFSENDINGNOTE_H |
|
24 |
|
25 |
|
26 // INCLUDES |
|
27 #include "cphonenote.h" |
|
28 |
|
29 // FORWARD DECLARATIONS |
|
30 |
|
31 class CPhoneDtmfSendingNote : public CPhoneNote |
|
32 { |
|
33 public: // Constructors and destructor |
|
34 |
|
35 /** |
|
36 * Constructor. |
|
37 * |
|
38 * @param aSelfPtr Pointer to self. |
|
39 * This pointer is set to NULL when the note is destroyed by the framework. |
|
40 * @param aCommandObserver Observer to receive command events from the note. |
|
41 */ |
|
42 CPhoneDtmfSendingNote( CEikDialog** aSelfPtr, MEikCommandObserver& aCommandObserver ); |
|
43 |
|
44 /** |
|
45 * Destructor. |
|
46 */ |
|
47 virtual ~CPhoneDtmfSendingNote(); |
|
48 |
|
49 |
|
50 protected: |
|
51 |
|
52 TKeyResponse OfferKeyEventL( |
|
53 const TKeyEvent& aKeyEvent, |
|
54 TEventCode aType ); |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // CPHONEDTMFSENDINGNOTE_H |
|
59 |
|
60 // End of File |