equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2009 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: Number entry state changed handler interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MPHONENUMBERENTRYCHANGEDHANDLER_H |
|
19 #define MPHONENUMBERENTRYCHANGEDHANDLER_H |
|
20 |
|
21 #include "tphonecommandparam.h" |
|
22 |
|
23 /** |
|
24 * Defines Number Entry Changed Handler |
|
25 * |
|
26 * The implemenation of this interface defines the functionality that needs |
|
27 * to be done after Phone Number Entry has notified that the entry state |
|
28 * has changed. |
|
29 * |
|
30 * @lib phoneuiview.lib |
|
31 * @since S60 5.0 |
|
32 */ |
|
33 class MPhoneNumberEntryChangedHandler |
|
34 { |
|
35 public: |
|
36 |
|
37 /** |
|
38 * The implementing class contains the functionality about what is done |
|
39 * when number entry state has changed |
|
40 */ |
|
41 virtual void HandleNumberEntryChanged() = 0; |
|
42 |
|
43 /** |
|
44 * Sets call back to an observer that wants to be notified about |
|
45 * the change in the content of the Phone Number Entry. |
|
46 */ |
|
47 virtual void SetNumberEntryChangedCallBack( |
|
48 TPhoneCommandParam* aCommandParam ) = 0; |
|
49 }; |
|
50 |
|
51 #endif /*MPHONENUMBERENTRYCHANGEDHANDLER_H*/ |
|
52 |