Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
27 #include <centralrepository.h>
31 // UID to identify a publish/subscribe used to indicate
32 // progress of locale initialisation and prevent repeated
34 const TInt32 KUidLocalePersistProperties = 0x1020E4D2 ;
36 _LIT(KLocaleInitPanic, "Locale Initialisation: ");
39 // Publish subscribe keys associated with locale initialisation.
40 enum LocalePersistPropertyKeys
42 EInitialisationState // Only one property in use at the moment
46 // Possible values of publish subscribe key EInitialisationState
47 enum LocalePersistInitialisationState
49 ELocaleInitialisationInProgress,
50 ELocaleInitialisationComplete,
51 ELocaleInitialisationFailed
57 // class CExtendedLocaleManager
59 // Initialises system-wide locale data and then persists
60 // new values to a repository on changes.
61 class CExtendedLocaleManager : CBase
64 static CExtendedLocaleManager* NewL();
65 static CExtendedLocaleManager* NewLC();
66 CExtendedLocaleManager();
67 ~CExtendedLocaleManager();
72 static TInt LocaleChanged(TAny*) ;
73 void PersistLocaleL() ;
74 void InitialiseLocaleL(CRepository& aRepository) ;
77 CEnvironmentChangeNotifier* iChangeNotifier ;
78 CActiveScheduler* iActiveScheduler ;
79 TExtendedLocale iExtendedLocale;