diff -r e6a39382bb9c -r c8fb4cf7b3ae textinput/ptienginev2/languages/PtiFactory_ITUT_83.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/textinput/ptienginev2/languages/PtiFactory_ITUT_83.cpp Tue May 11 16:31:42 2010 +0300 @@ -0,0 +1,82 @@ +/* +* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "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: Keymapping data implementation for +* +*/ + + + + + + + + + + + + +#include + +#include + +#include "PtiKeymappings_ITUT_83.h" + +class CPtiVariantITUT_83DataFactory : public CPtiKeyMapDataFactory + { + public: + CPtiVariantITUT_83DataFactory() {} + static CPtiVariantITUT_83DataFactory* NewL(); + MPtiKeyMapData* KeyMapDataForLanguageL(TInt aLanguageCode); + void ListLanguagesL(RArray& aResult); + }; + + +CPtiVariantITUT_83DataFactory* CPtiVariantITUT_83DataFactory::NewL() + { + return new (ELeave) CPtiVariantITUT_83DataFactory(); + } + + +const TImplementationProxy ImplementationTable[] = + { + IMPLEMENTATION_PROXY_ENTRY(0x2002BC84, CPtiVariantITUT_83DataFactory::NewL) + }; + + +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) + { + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); + return ImplementationTable; + } + + +MPtiKeyMapData* CPtiVariantITUT_83DataFactory::KeyMapDataForLanguageL(TInt aLanguageCode) + { + if (aLanguageCode == ELangSpanish) + { + return CPtiLangDataImplSpanish::NewL(); + } + + return NULL; + } + + +void CPtiVariantITUT_83DataFactory::ListLanguagesL(RArray& aResult) + { + CleanupClosePushL(aResult); + aResult.AppendL(ELangSpanish); + CleanupStack::Pop(); + } + +// End of file