1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/initLocale/src/InitialiseLocale.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,80 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @internalTechnology
1.22 +*/
1.23 +
1.24 +#include <e32base.h>
1.25 +#include <e32std.h>
1.26 +#include <e32debug.h>
1.27 +#include <bacntf.h>
1.28 +#include <bautils.h>
1.29 +#include <e32const.h>
1.30 +#include <centralrepository.h>
1.31 +
1.32 +
1.33 +//
1.34 +// UID to identify a publish/subscribe used to indicate
1.35 +// progress of locale initialisation and prevent repeated
1.36 +//initialisation.
1.37 +const TInt32 KUidLocalePersistProperties = 0x1020E4D2 ;
1.38 +
1.39 +_LIT(KLocaleInitPanic, "Locale Initialisation: ");
1.40 +
1.41 +//
1.42 +// Publish subscribe keys associated with locale initialisation.
1.43 +enum LocalePersistPropertyKeys
1.44 + {
1.45 + EInitialisationState // Only one property in use at the moment
1.46 + };
1.47 +
1.48 +//
1.49 +// Possible values of publish subscribe key EInitialisationState
1.50 +enum LocalePersistInitialisationState
1.51 + {
1.52 + ELocaleInitialisationInProgress,
1.53 + ELocaleInitialisationComplete,
1.54 + ELocaleInitialisationFailed
1.55 + };
1.56 +
1.57 +
1.58 +
1.59 +//
1.60 +// class CExtendedLocaleManager
1.61 +//
1.62 +// Initialises system-wide locale data and then persists
1.63 +// new values to a repository on changes.
1.64 +class CExtendedLocaleManager : CBase
1.65 + {
1.66 +public:
1.67 + static CExtendedLocaleManager* NewL();
1.68 + static CExtendedLocaleManager* NewLC();
1.69 + CExtendedLocaleManager();
1.70 + ~CExtendedLocaleManager();
1.71 +
1.72 +
1.73 +private:
1.74 + void ConstructL();
1.75 + static TInt LocaleChanged(TAny*) ;
1.76 + void PersistLocaleL() ;
1.77 + void InitialiseLocaleL(CRepository& aRepository) ;
1.78 +
1.79 +private:
1.80 + CEnvironmentChangeNotifier* iChangeNotifier ;
1.81 + CActiveScheduler* iActiveScheduler ;
1.82 + TExtendedLocale iExtendedLocale;
1.83 + };