sl@0
|
1 |
// Copyright (c) 2008-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 |
#ifndef T_TESTMWSINIFILE_H_
|
sl@0
|
17 |
#define T_TESTMWSINIFILE_H_
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "graphics/wsplugin.h"
|
sl@0
|
20 |
#include "t_testserviceplugin.h"
|
sl@0
|
21 |
#include "PARSEINIDATA.H"
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
This is an implementation of MWsFader, in the form of a CWsPlugin.
|
sl@0
|
25 |
The window server will use this to create test fader if the ini file specifies it.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
class CTestMWsIniFile : public CWsPlugin
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
enum { EImplUid = 0x10285C5F };
|
sl@0
|
31 |
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
static CTestMWsIniFile* CreateL();
|
sl@0
|
34 |
~CTestMWsIniFile();
|
sl@0
|
35 |
void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& aData);
|
sl@0
|
36 |
const TDesC& PluginName() const;
|
sl@0
|
37 |
|
sl@0
|
38 |
private:
|
sl@0
|
39 |
void RunMWsIniFileTestsL();
|
sl@0
|
40 |
void FindScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection);
|
sl@0
|
41 |
void FindCustomSectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection);
|
sl@0
|
42 |
void FindDefaultVariableL(const TDesC& aIntSection, const TDesC& aStringSection);
|
sl@0
|
43 |
void FindDefaultMissingVariableL(const TDesC& aMissingVariable);
|
sl@0
|
44 |
void FindScreenMissingVariableL(TInt aScreen, const TDesC& aMissingVariable);
|
sl@0
|
45 |
void FindCustomSectionMissingVariableL(const TDesC& aSection, const TDesC& aMissingVariable);
|
sl@0
|
46 |
void FindDefaultVarOppositeMethodL(const TDesC& aAttribute, const TDesC& aType);
|
sl@0
|
47 |
void FindScreenVarOppositeMethodL(TInt aScreen, const TDesC& aAttribute, const TDesC& aType);
|
sl@0
|
48 |
void FindCustomSectionVarOppositeMethodL(const TDesC& aSection, const TDesC& aAttribute, const TDesC& aType);
|
sl@0
|
49 |
void FindNEScreenVariableL(TInt aScreen, const TDesC& aIntSection, const TDesC& aStringSection);
|
sl@0
|
50 |
void FindNESectionVariableL(const TDesC& aSection, const TDesC& aIntSection, const TDesC& aStringSection);
|
sl@0
|
51 |
protected:
|
sl@0
|
52 |
CTestMWsIniFile();
|
sl@0
|
53 |
|
sl@0
|
54 |
protected:
|
sl@0
|
55 |
MWsIniFile* iWsIniFile;
|
sl@0
|
56 |
CIniData* iIniData;
|
sl@0
|
57 |
TBuf<255> iPrint;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
#endif /*T_TESTMWSINIFILE_H_*/
|