sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: // sl@0: // UID to identify a publish/subscribe used to indicate sl@0: // progress of locale initialisation and prevent repeated sl@0: //initialisation. sl@0: const TInt32 KUidLocalePersistProperties = 0x1020E4D2 ; sl@0: sl@0: _LIT(KLocaleInitPanic, "Locale Initialisation: "); sl@0: sl@0: // sl@0: // Publish subscribe keys associated with locale initialisation. sl@0: enum LocalePersistPropertyKeys sl@0: { sl@0: EInitialisationState // Only one property in use at the moment sl@0: }; sl@0: sl@0: // sl@0: // Possible values of publish subscribe key EInitialisationState sl@0: enum LocalePersistInitialisationState sl@0: { sl@0: ELocaleInitialisationInProgress, sl@0: ELocaleInitialisationComplete, sl@0: ELocaleInitialisationFailed sl@0: }; sl@0: sl@0: sl@0: sl@0: // sl@0: // class CExtendedLocaleManager sl@0: // sl@0: // Initialises system-wide locale data and then persists sl@0: // new values to a repository on changes. sl@0: class CExtendedLocaleManager : CBase sl@0: { sl@0: public: sl@0: static CExtendedLocaleManager* NewL(); sl@0: static CExtendedLocaleManager* NewLC(); sl@0: CExtendedLocaleManager(); sl@0: ~CExtendedLocaleManager(); sl@0: sl@0: sl@0: private: sl@0: void ConstructL(); sl@0: static TInt LocaleChanged(TAny*) ; sl@0: void PersistLocaleL() ; sl@0: void InitialiseLocaleL(CRepository& aRepository) ; sl@0: sl@0: private: sl@0: CEnvironmentChangeNotifier* iChangeNotifier ; sl@0: CActiveScheduler* iActiveScheduler ; sl@0: TExtendedLocale iExtendedLocale; sl@0: };