phonebookui/Phonebook2/Presentation/src/CPbk2ChineseContactNameFormatter.cpp
changeset 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook2/Presentation/src/CPbk2ChineseContactNameFormatter.cpp	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,72 @@
+/*
+* Copyright (c) 2002-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: 
+*     Chinese contact name formatter.
+*
+*/
+
+
+#include "CPbk2ChineseContactNameFormatter.h"
+
+// ================= MEMBER FUNCTIONS =======================
+// --------------------------------------------------------------------------
+// CPbk2ChineseContactNameFormatter::CPbk2ChineseContactNameFormatter
+// --------------------------------------------------------------------------
+//
+CPbk2ChineseContactNameFormatter::CPbk2ChineseContactNameFormatter(
+    const MVPbkFieldTypeList& aMasterFieldTypeList,
+    const CPbk2SortOrderManager& aSortOrderManager) 
+    :   CPbk2ContactNameFormatter( aMasterFieldTypeList,
+            aSortOrderManager )
+    {
+    }
+
+// --------------------------------------------------------------------------
+// CPbk2ChineseContactNameFormatter::~CPbk2ChineseContactNameFormatter
+// --------------------------------------------------------------------------
+//
+CPbk2ChineseContactNameFormatter::~CPbk2ChineseContactNameFormatter()
+    {
+    }
+    
+// --------------------------------------------------------------------------
+// CPbk2ChineseContactNameFormatter::NewL
+// --------------------------------------------------------------------------
+//
+CPbk2ChineseContactNameFormatter* CPbk2ChineseContactNameFormatter::NewL(
+        const TDesC& aUnnamedText, 
+        const MVPbkFieldTypeList& aMasterFieldTypeList, 
+        const CPbk2SortOrderManager& aSortOrderManager,
+        CVPbkFieldTypeSelector* aTitleFieldSelector )
+	{
+    CPbk2ChineseContactNameFormatter* self = 
+        new(ELeave) CPbk2ChineseContactNameFormatter(
+            aMasterFieldTypeList, 
+            aSortOrderManager );
+    CleanupStack::PushL( self );
+    self->ConstructL( aUnnamedText, aTitleFieldSelector );
+    CleanupStack::Pop( self );
+    return self;
+	}
+    
+// --------------------------------------------------------------------------
+// CPbk2ChineseContactNameFormatter::IsFindSeparatorChar
+// --------------------------------------------------------------------------
+//
+TBool CPbk2ChineseContactNameFormatter::IsFindSeparatorChar( TChar aCh )
+    {
+    return aCh==' '||aCh=='-'||aCh=='\t';
+    }
+
+// End of File