|
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: Easy dialing listbox view. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 |
|
21 #include "easydialinglistboxview.h" |
|
22 #include "easydialinglistbox.h" |
|
23 #include "easydialinglistboxitemdrawer.h" |
|
24 #include "easydialinglistboxdata.h" |
|
25 #include "easydialingcontactdatamanager.h" |
|
26 #include <phonebook2.mbg> |
|
27 #include <phonebook2ece.mbg> |
|
28 |
|
29 #include <ccappcommlauncherpluginrsc.rsg> |
|
30 |
|
31 // AvKON and drawing header files |
|
32 #include <aknlayoutscalable_avkon.cdl.h> |
|
33 |
|
34 #include <aknlistloadertfx.h> |
|
35 #include <aknlistboxtfxinternal.h> |
|
36 #include <aknlistboxtfx.h> |
|
37 |
|
38 #include <akntransitionutils.h> |
|
39 |
|
40 // EXTERNAL DATA STRUCTURES |
|
41 |
|
42 // EXTERNAL FUNCTION PROTOTYPES |
|
43 |
|
44 // CONSTANTS |
|
45 |
|
46 // MACROS |
|
47 |
|
48 // LOCAL CONSTANTS AND MACROS |
|
49 |
|
50 // MODULE DATA STRUCTURES |
|
51 |
|
52 // LOCAL FUNCTION PROTOTYPES |
|
53 |
|
54 // FORWARD DECLARATIONS |
|
55 |
|
56 /* |
|
57 * ============================================================================== |
|
58 * |
|
59 * |
|
60 * class CEasyDialingListBoxView |
|
61 * |
|
62 * |
|
63 * ============================================================================== |
|
64 */ |
|
65 |
|
66 |
|
67 // ----------------------------------------------------------------------------- |
|
68 // SetCurrentItemIndexToNone |
|
69 // |
|
70 // ----------------------------------------------------------------------------- |
|
71 // |
|
72 void CEasyDialingListBoxView::SetCurrentItemIndexToNone() |
|
73 { |
|
74 iCurrentItemIndex = -1; |
|
75 } |
|
76 |
|
77 // End of File. |
|
78 |