diff -r 000000000000 -r 8466d47a6819 emailcontacts/contactactionservice/inc/CFscContactNameFormatter.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailcontacts/contactactionservice/inc/CFscContactNameFormatter.h Thu Dec 17 08:39:21 2009 +0200 @@ -0,0 +1,97 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Declaration of the class CFscContactNameFormatter. + * +*/ + + +#ifndef CFSCCONTACTNAMEFORMATTER_H +#define CFSCCONTACTNAMEFORMATTER_H + +// INCLUDE FILES +#include "CFscContactNameFormatterBase.h" + +/** + * Default contact name formatter. + * + * Name creation logic: + * 1) Try to create name according to first two field types in the + * sort order. + * 2) If the contact didn't have neither of the two fields + * then create name according to the third -> last type in the + * sort order. + * 3) If the field type is defined in the sort order but not defined + * as a title field type then the field data is not used. + * + * An example: + * Sort Order: Last name, First Name, Company Name + * Title fields: Last name, First Name, Company Name + * + * Name is created using Last name and First name + * If the both first and last name fields are empty + * then title is created from the company name. + */ +NONSHARABLE_CLASS(CFscContactNameFormatter) +: public CFscContactNameFormatterBase + { +public: // Construction + + /** + * @param aUnnamedText Text to use for unnamed contacts. + * @param aMasterFieldTypeList Master field type list of + * Virtual Phonebook. + * @param aSortOrderManager Sort order manager for fetching + * current sort order. + * @param aTitleFieldSelector Title fields, ownership changes + * @return a new instance of this class + */ + static CFscContactNameFormatter* NewL( + const TDesC& aUnnamedText, + const MVPbkFieldTypeList& aMasterFieldTypeList, + const CPbk2SortOrderManager& aSortOrderManager, + CVPbkFieldTypeSelector* aTitleFieldSelector ); + + ~CFscContactNameFormatter(); + +private: // From MPbk2ContactNameFormatter + void GetContactTitle( + const MVPbkBaseContactFieldCollection& aContactFields, + TDes& aTitle, + TUint32 aFormattingFlags); + void GetContactTitleForFind( + const MVPbkBaseContactFieldCollection& aContactFields, + TDes& aTitle, + TUint32 aFormattingFlags); + CVPbkBaseContactFieldTypeListIterator* ActualTitleFieldsLC( + CVPbkFieldTypeRefsList& aFieldTypeList, + const MVPbkBaseContactFieldCollection& aContactFields ); + TInt MaxTitleLength( + const MVPbkBaseContactFieldCollection& aContactFields, + const TUint32 aFormattingFlags); + TInt MaxTitleLengthForFind( + const MVPbkBaseContactFieldCollection& aContactFields, + const TUint32 aFormattingFlags); + TBool IsFindSeparatorChar( TChar aCh ); + +protected: // Implementation + CFscContactNameFormatter( + const MVPbkFieldTypeList& aMasterFieldTypeList, + const CPbk2SortOrderManager& aSortOrderManager); + void ConstructL( + const TDesC& aUnnamedText, + CVPbkFieldTypeSelector* aTitleFieldSelector ); + }; + +#endif // CFscContactNameFormatter_H +// End of File