sl@0
|
1 |
// Copyright (c) 2007-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 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __T_PSEUDOAPPUTILS_H__
|
sl@0
|
23 |
#define __T_PSEUDOAPPUTILS_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <iniparser.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "t_wservconsts.h" //KWServPseudoAppConfigFile
|
sl@0
|
28 |
|
sl@0
|
29 |
const TInt KMaxUiBitmapNameLength = 70;
|
sl@0
|
30 |
|
sl@0
|
31 |
_LIT(KSimVideoConfigSectionName, "default");
|
sl@0
|
32 |
_LIT(KUiBitmapScaling, "ui_bitmap%d_scaling");
|
sl@0
|
33 |
_LIT(KWindowSizes, "window_size%d");
|
sl@0
|
34 |
_LIT(KWindowPositions, "window_position%d");
|
sl@0
|
35 |
_LIT(KWindowOpacitys, "window_opacity%d");
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT(KScreenSurface, "screen%d_window%d_");
|
sl@0
|
38 |
_LIT(KScreenAnimation, "screen%d_window%d_animation_");
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
#define READ_INI5(A, B, C, D, E, F, G, H, I, J, K, M, N) {\
|
sl@0
|
42 |
TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) , TPtrC((const TText *)L ## #B), TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), TPtrC((const TText *)L ## #E), TPtrC((const TText *)L ## #F), G, H, I, J, K, M, N);\
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
#define READ_INI5A(A, B, C, D, E, F, G, H, I, J, K, M, N, O) {\
|
sl@0
|
46 |
TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) , TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), TPtrC((const TText *)L ## #E), TPtrC((const TText *)L ## #F), TPtrC((const TText *)L ## #G), H, I, J, K, M, N, O);\
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
#define READ_INI4(A, B, C, D, E, F, G, H, I, J, K) {\
|
sl@0
|
50 |
TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) , TPtrC((const TText *)L ## #B), TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), TPtrC((const TText *)L ## #E), F, G, H, I, J, K);\
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
#define READ_INI4A(A, B, C, D, E, F, G, H, I, J, K, M) {\
|
sl@0
|
54 |
TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) , TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), TPtrC((const TText *)L ## #E), TPtrC((const TText *)L ## #F), G, H, I, J, K, M);\
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
#define READ_INI3(A, B, C, D, E, F, G, H, I) {\
|
sl@0
|
58 |
TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) , TPtrC((const TText *)L ## #B), TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), E, F, G, H, I);\
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
#define READ_INI3A(A, B, C, D, E, F, G, H, I, J) {\
|
sl@0
|
62 |
TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) , TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), TPtrC((const TText *)L ## #E), F, G, H, I, J);\
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
#define READ_INI2(A, B, C, D, E, F, G) {\
|
sl@0
|
66 |
TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) , TPtrC((const TText *)L ## #B), TPtrC((const TText *)L ## #C), D, E, F, G);\
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
#define READ_INI2A(A, B, C, D, E, F, G, H) {\
|
sl@0
|
70 |
TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) , TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), E, F, G, H);\
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
#define READ_INI1(A, B, C) {\
|
sl@0
|
74 |
TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) ,B ,C);\
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
#define READ_INI1A(A, B, C, D) {\
|
sl@0
|
78 |
TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) ,C ,D);\
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
class TImportScreenConfig
|
sl@0
|
83 |
{
|
sl@0
|
84 |
public:
|
sl@0
|
85 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, TPtrC& aMemberVar, CIniData* iUtils);
|
sl@0
|
86 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam , TPtrC& aMemberVar, CIniData* iUtils);
|
sl@0
|
87 |
|
sl@0
|
88 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, TInt& aMemberVar, CIniData* iUtils);
|
sl@0
|
89 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, TInt& aMemberVar, CIniData* iUtils);
|
sl@0
|
90 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, TInt& aMemberVar,
|
sl@0
|
91 |
TInt aValue1, TInt aValue2, CIniData* aUtils);
|
sl@0
|
92 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, const TPtrC& aIniValue1,
|
sl@0
|
93 |
const TPtrC& aIniValue2, TInt& aMemberVar, TInt aValue1,
|
sl@0
|
94 |
TInt aValue2, CIniData* aUtils);
|
sl@0
|
95 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
|
sl@0
|
96 |
TInt& aMemberVar, TInt aValue1, TInt aValue2, TInt aValue3, CIniData* aUtils);
|
sl@0
|
97 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2,
|
sl@0
|
98 |
const TPtrC& aIniValue3, TInt& aMemberVar, TInt aValue1, TInt aValue2,
|
sl@0
|
99 |
TInt aValue3, CIniData* aUtils);
|
sl@0
|
100 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
|
sl@0
|
101 |
const TPtrC& aIniValue4, TInt& aMemberVar, TInt aValue1, TInt aValue2,
|
sl@0
|
102 |
TInt aValue3, TInt aValue4, CIniData* aUtils);
|
sl@0
|
103 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2,
|
sl@0
|
104 |
const TPtrC& aIniValue3, const TPtrC& aIniValue4, TInt& aMemberVar,
|
sl@0
|
105 |
TInt aValue1, TInt aValue2, TInt aValue3,
|
sl@0
|
106 |
TInt aValue4, CIniData* aUtils);
|
sl@0
|
107 |
IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
|
sl@0
|
108 |
const TPtrC& aIniValue4, const TPtrC& aIniValue5, TInt& aMemberVar, TInt aValue1,
|
sl@0
|
109 |
TInt aValue2, TInt aValue3, TInt aValue4, TInt aValue5, CIniData* aUtils);
|
sl@0
|
110 |
IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2,
|
sl@0
|
111 |
const TPtrC& aIniValue3, const TPtrC& aIniValue4, const TPtrC& aIniValue5, TInt& aMemberVar,
|
sl@0
|
112 |
TInt aValue1, TInt aValue2, TInt aValue3, TInt aValue4,
|
sl@0
|
113 |
TInt aValue5, CIniData* aUtils);
|
sl@0
|
114 |
IMPORT_C static TInt Numeral(TInt val, TInt& aDigit);
|
sl@0
|
115 |
IMPORT_C static TInt ExtractNumber(const TPtrC& aRectTextString, TInt& aSearchFrom, TInt& aNumber);
|
sl@0
|
116 |
IMPORT_C static TInt ExtractRect(const TPtrC& aRectTextString, TRect& aRect, const TSize& aScreenSize);
|
sl@0
|
117 |
IMPORT_C static TInt ExtractAspectRatio(const TPtrC& aRatioString, TSize& aAspectRatio);
|
sl@0
|
118 |
IMPORT_C static TInt ExtractPoint(const TPtrC& aPointString, TPoint& aPoint);
|
sl@0
|
119 |
IMPORT_C static TInt ExtractSize(const TPtrC& aSizeString, TSize& aSize);
|
sl@0
|
120 |
IMPORT_C static void VerifyFramesPerTraverse(TInt& aFramesPerTraverse, TInt aScreenPixelDimension);
|
sl@0
|
121 |
static TInt ReadIniAllowMissing(const TPtrC& aIniParam, TPtrC& aMemberVar, CIniData* aUtils);
|
sl@0
|
122 |
static TBool GetShareSurfaceInfoL(TInt aScreenNo, TInt aWindowNo, TInt& aShareScreenNumber, TInt& aShareWindowNumber, CIniData* aUtils);
|
sl@0
|
123 |
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
#endif //__T_PSEUDOAPPUTILS_H__
|