os/graphics/windowing/windowserver/nga/SERVER/inifile.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// CIniFile Class definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __INIFILE_H__
sl@0
    19
#define __INIFILE_H__
sl@0
    20
sl@0
    21
#include "server.h"
sl@0
    22
sl@0
    23
class CIniSection : public CBase
sl@0
    24
	{
sl@0
    25
	friend class CIniFile;
sl@0
    26
public:
sl@0
    27
	~CIniSection();
sl@0
    28
	void AddVariableL(const TDesC& aNewVariable);
sl@0
    29
private:
sl@0
    30
	CIniSection(TInt aScreen);
sl@0
    31
	void ConstructL();
sl@0
    32
	void ConstructL(const TDesC& aName);
sl@0
    33
	TBool FindVar(const TDesC &aVarName, TInt &aResult);
sl@0
    34
	TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
sl@0
    35
	TBool FindVarName(const TDesC& aVarName, TInt& index);
sl@0
    36
	static TPtrC VarName(const TDesC& aVarString);
sl@0
    37
	inline TInt Screen() const;
sl@0
    38
	inline const TDesC& Name() const;
sl@0
    39
private:
sl@0
    40
	TInt iScreen;
sl@0
    41
	RBuf iName;
sl@0
    42
	CArrayPtrFlat<TDesC>* iPtrArray ;
sl@0
    43
	} ;
sl@0
    44
sl@0
    45
class CIniFile : public CBase, public MWsIniFile
sl@0
    46
	{
sl@0
    47
public:
sl@0
    48
    static CIniFile* NewL();
sl@0
    49
	~CIniFile();
sl@0
    50
	TInt NumberOfScreens() const;
sl@0
    51
	void FreeData();
sl@0
    52
sl@0
    53
public: // from MWsIniFile
sl@0
    54
	TBool FindVar(const TDesC &aVarName, TPtrC &aResult);
sl@0
    55
	TBool FindVar(const TDesC &aVarName, TInt &aResult);
sl@0
    56
	TBool FindVar(const TDesC &aVarName);
sl@0
    57
sl@0
    58
	TBool FindVar( TInt aScreen, const TDesC &aVarName);
sl@0
    59
	TBool FindVar( TInt aScreen, const TDesC &aVarName, TInt &aResult);
sl@0
    60
	TBool FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult);
sl@0
    61
sl@0
    62
	TBool FindVar(const TDesC& aSection, const TDesC &aVarName);
sl@0
    63
	TBool FindVar(const TDesC& aSection, const TDesC &aVarName, TInt &aResult);
sl@0
    64
	TBool FindVar(const TDesC& aSection, const TDesC& aVarName, TPtrC &aResult);
sl@0
    65
sl@0
    66
private:
sl@0
    67
    CIniFile();
sl@0
    68
    void ConstructL();
sl@0
    69
	void doConstructL(RFile &aFile);
sl@0
    70
	CIniSection * AddOrFindIniSectionL(TPtr& aSectionName);
sl@0
    71
	CIniSection * AddOrFindScreenSectionL(TInt aScreen);
sl@0
    72
	CIniSection * AddOrFindNamedSectionL(const TDesC& aName);
sl@0
    73
	CIniSection * CreateSectionL(TInt aScreen); // utility function
sl@0
    74
	CIniSection * CreateSectionL(const TDesC& aSectionName); // utility function
sl@0
    75
	CIniSection * FindSection(TInt aScreen);
sl@0
    76
	CIniSection * FindSection(const TDesC& aName);
sl@0
    77
private:
sl@0
    78
	RPointerArray<CIniSection> iSectionArray;
sl@0
    79
	TInt iScreenCount;
sl@0
    80
	};
sl@0
    81
sl@0
    82
GLREF_D CIniFile * WsIniFile;
sl@0
    83
sl@0
    84
#endif