sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalTechnology
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32debug.h>
|
sl@0
|
24 |
#include <bacntf.h>
|
sl@0
|
25 |
#include <bautils.h>
|
sl@0
|
26 |
#include <e32const.h>
|
sl@0
|
27 |
#include <centralrepository.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
//
|
sl@0
|
31 |
// UID to identify a publish/subscribe used to indicate
|
sl@0
|
32 |
// progress of locale initialisation and prevent repeated
|
sl@0
|
33 |
//initialisation.
|
sl@0
|
34 |
const TInt32 KUidLocalePersistProperties = 0x1020E4D2 ;
|
sl@0
|
35 |
|
sl@0
|
36 |
_LIT(KLocaleInitPanic, "Locale Initialisation: ");
|
sl@0
|
37 |
|
sl@0
|
38 |
//
|
sl@0
|
39 |
// Publish subscribe keys associated with locale initialisation.
|
sl@0
|
40 |
enum LocalePersistPropertyKeys
|
sl@0
|
41 |
{
|
sl@0
|
42 |
EInitialisationState // Only one property in use at the moment
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
//
|
sl@0
|
46 |
// Possible values of publish subscribe key EInitialisationState
|
sl@0
|
47 |
enum LocalePersistInitialisationState
|
sl@0
|
48 |
{
|
sl@0
|
49 |
ELocaleInitialisationInProgress,
|
sl@0
|
50 |
ELocaleInitialisationComplete,
|
sl@0
|
51 |
ELocaleInitialisationFailed
|
sl@0
|
52 |
};
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
//
|
sl@0
|
57 |
// class CExtendedLocaleManager
|
sl@0
|
58 |
//
|
sl@0
|
59 |
// Initialises system-wide locale data and then persists
|
sl@0
|
60 |
// new values to a repository on changes.
|
sl@0
|
61 |
class CExtendedLocaleManager : CBase
|
sl@0
|
62 |
{
|
sl@0
|
63 |
public:
|
sl@0
|
64 |
static CExtendedLocaleManager* NewL();
|
sl@0
|
65 |
static CExtendedLocaleManager* NewLC();
|
sl@0
|
66 |
CExtendedLocaleManager();
|
sl@0
|
67 |
~CExtendedLocaleManager();
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
private:
|
sl@0
|
71 |
void ConstructL();
|
sl@0
|
72 |
static TInt LocaleChanged(TAny*) ;
|
sl@0
|
73 |
void PersistLocaleL() ;
|
sl@0
|
74 |
void InitialiseLocaleL(CRepository& aRepository) ;
|
sl@0
|
75 |
|
sl@0
|
76 |
private:
|
sl@0
|
77 |
CEnvironmentChangeNotifier* iChangeNotifier ;
|
sl@0
|
78 |
CActiveScheduler* iActiveScheduler ;
|
sl@0
|
79 |
TExtendedLocale iExtendedLocale;
|
sl@0
|
80 |
};
|