diff -r 000000000000 -r e686773b3f54 phonebookui/Phonebook2/UIControls/inc/CPbk2DefaultPhoneNumberFormatter.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookui/Phonebook2/UIControls/inc/CPbk2DefaultPhoneNumberFormatter.h Tue Feb 02 10:12:17 2010 +0200 @@ -0,0 +1,71 @@ +/* +* Copyright (c) 2005-2007 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: Phonebook 2 default phone number formatter. +* +*/ + + +#ifndef CPBK2DEFAULTPHONENUMBERFORMATTER_H +#define CPBK2DEFAULTPHONENUMBERFORMATTER_H + +// INCLUDES +#include +#include + +// CLASS DECLARATION + +/** + * Phonebook 2 default phone number formatter. + * + * Responsible for formatting phone number. + */ +NONSHARABLE_CLASS(CPbk2DefaultPhoneNumberFormatter) : + public CBase, + public MPbk2PhoneNumberFormatter + { + public: // Construction and destruction + + /** + * Creates a new instance of this class. + * + * @param aMaxDisplayLength Maximum phone number display length. + * @return A new instance of this class. + */ + static CPbk2DefaultPhoneNumberFormatter* NewL( + TInt aMaxDisplayLength ); + + /** + * Destructor + */ + virtual ~CPbk2DefaultPhoneNumberFormatter(); + + public: // From MPbk2PhoneNumberFormatter + void SetMaxBufferLengthL( + TInt aMaxLength ); + TPtrC FormatPhoneNumberForDisplay( + const TDesC& aOriginalPhoneNumber ); + + private: // Implementation + CPbk2DefaultPhoneNumberFormatter(); + void ConstructL( + TInt aMaxDisplayLength ); + + private: // Data + /// Own: Formatting buffer + HBufC* iFormatterNumberBuffer; + }; + +#endif // CPBK2DEFAULTPHONENUMBERFORMATTER_H + +// End of File