Update contrib.
1 // Copyright (c) 2006-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.
14 // CIniFile Class definitions
23 class CIniSection : public CBase
25 friend class CIniFile;
28 void AddVariableL(const TDesC& aNewVariable);
30 CIniSection(TInt aScreen);
32 void ConstructL(const TDesC& aName);
33 TBool FindVar(const TDesC &aVarName, TInt &aResult);
34 TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
35 TBool FindVarName(const TDesC& aVarName, TInt& index);
36 static TPtrC VarName(const TDesC& aVarString);
37 inline TInt Screen() const;
38 inline const TDesC& Name() const;
42 CArrayPtrFlat<TDesC>* iPtrArray ;
45 class CIniFile : public CBase, public MWsIniFile
48 static CIniFile* NewL();
50 TInt NumberOfScreens() const;
53 public: // from MWsIniFile
54 TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
55 TBool FindVar(const TDesC &aVarName, TInt &aResult);
56 TBool FindVar(const TDesC &aVarName);
58 TBool FindVar( TInt aScreen, const TDesC &aVarName);
59 TBool FindVar( TInt aScreen, const TDesC &aVarName, TInt &aResult);
60 TBool FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult);
62 TBool FindVar(const TDesC& aSection, const TDesC &aVarName);
63 TBool FindVar(const TDesC& aSection, const TDesC &aVarName, TInt &aResult);
64 TBool FindVar(const TDesC& aSection, const TDesC& aVarName, TPtrC &aResult);
69 void doConstructL(RFile &aFile);
70 CIniSection * AddOrFindIniSectionL(TPtr& aSectionName);
71 CIniSection * AddOrFindScreenSectionL(TInt aScreen);
72 CIniSection * AddOrFindNamedSectionL(const TDesC& aName);
73 CIniSection * CreateSectionL(TInt aScreen); // utility function
74 CIniSection * CreateSectionL(const TDesC& aSectionName); // utility function
75 CIniSection * FindSection(TInt aScreen);
76 CIniSection * FindSection(const TDesC& aName);
78 RPointerArray<CIniSection> iSectionArray;
82 GLREF_D CIniFile * WsIniFile;