sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Header file of the ECom impletementation of for testing contact matching.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef __CNTMATCHLOG_H__
|
sl@0
|
18 |
#define __CNTMATCHLOG_H__
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <logcntmodel.h>
|
sl@0
|
22 |
#include <badesca.h>
|
sl@0
|
23 |
#include <e32des16.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
//The contact items
|
sl@0
|
26 |
const TInt KNumberOfItems = 7;
|
sl@0
|
27 |
|
sl@0
|
28 |
_LIT(KNumber1, "447700900000");
|
sl@0
|
29 |
_LIT(KNumber2, "+441632960000");
|
sl@0
|
30 |
_LIT(KNumber3, "07700900001");
|
sl@0
|
31 |
_LIT(KNumber4, "447756900111");
|
sl@0
|
32 |
_LIT(KNumber5, "447756900111");
|
sl@0
|
33 |
_LIT(KNumber6, "1234567890");
|
sl@0
|
34 |
_LIT(KNumber7, "0123456789");
|
sl@0
|
35 |
|
sl@0
|
36 |
_LIT(KFirstName1, "Barney");
|
sl@0
|
37 |
_LIT(KFirstName2, "Elma");
|
sl@0
|
38 |
_LIT(KFirstName3, "Peter");
|
sl@0
|
39 |
_LIT(KFirstName4, "Abc");
|
sl@0
|
40 |
_LIT(KFirstName5, "Rtyu");
|
sl@0
|
41 |
_LIT(KFirstName6, "Zxcvb");
|
sl@0
|
42 |
_LIT(KFirstName7, "AAA");
|
sl@0
|
43 |
|
sl@0
|
44 |
_LIT(KLastName1, "Rubble");
|
sl@0
|
45 |
_LIT(KLastName2, "Fudd");
|
sl@0
|
46 |
_LIT(KLastName3, "Harper");
|
sl@0
|
47 |
_LIT(KLastName4, "Lkjhgf");
|
sl@0
|
48 |
_LIT(KLastName5, "Poiuytqwe");
|
sl@0
|
49 |
_LIT(KLastName6, "Mnbvcxz");
|
sl@0
|
50 |
_LIT(KLastName7, "BBB");
|
sl@0
|
51 |
|
sl@0
|
52 |
/** Plugin implementation that provide contacts matching functionality.
|
sl@0
|
53 |
|
sl@0
|
54 |
@internalAll
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
class CLogTestCntMatch : public CLogCntModel
|
sl@0
|
57 |
{
|
sl@0
|
58 |
public:
|
sl@0
|
59 |
static CLogTestCntMatch* NewL();
|
sl@0
|
60 |
virtual void OpenContactsL();
|
sl@0
|
61 |
virtual void CloseContacts();
|
sl@0
|
62 |
virtual TLogContactItemId MatchPhoneNumberL(const TDesC& aNumber, TInt aMatchLengthFromRight);
|
sl@0
|
63 |
virtual void ReadContactNameL(TLogContactItemId aContactId, TDes &aName, TLogContactNameFormat aNameFormat);
|
sl@0
|
64 |
|
sl@0
|
65 |
private:
|
sl@0
|
66 |
~CLogTestCntMatch();
|
sl@0
|
67 |
CLogTestCntMatch();
|
sl@0
|
68 |
|
sl@0
|
69 |
void ConstructL();
|
sl@0
|
70 |
CDesCArray* iTelNumbers;
|
sl@0
|
71 |
CDesCArray* iContactFirstNames;
|
sl@0
|
72 |
CDesCArray* iContactLastNames;
|
sl@0
|
73 |
};
|
sl@0
|
74 |
|
sl@0
|
75 |
#endif
|