os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoapputils.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoapputils.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,126 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent
    1.23 +*/
    1.24 +
    1.25 +#ifndef __T_PSEUDOAPPUTILS_H__
    1.26 +#define __T_PSEUDOAPPUTILS_H__
    1.27 +
    1.28 +#include <iniparser.h>
    1.29 +
    1.30 +#include "t_wservconsts.h"			//KWServPseudoAppConfigFile
    1.31 +
    1.32 +const TInt KMaxUiBitmapNameLength = 70;
    1.33 +
    1.34 +_LIT(KSimVideoConfigSectionName,  "default");
    1.35 +_LIT(KUiBitmapScaling,	          "ui_bitmap%d_scaling");
    1.36 +_LIT(KWindowSizes,	              "window_size%d");
    1.37 +_LIT(KWindowPositions,	          "window_position%d");
    1.38 +_LIT(KWindowOpacitys,	          "window_opacity%d");
    1.39 +
    1.40 +_LIT(KScreenSurface,	          "screen%d_window%d_");
    1.41 +_LIT(KScreenAnimation,	          "screen%d_window%d_animation_");
    1.42 +
    1.43 +
    1.44 +#define READ_INI5(A, B, C, D, E, F, G, H, I, J, K, M, N)  {\
    1.45 +                                                             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);\
    1.46 +                                                             }
    1.47 +
    1.48 +#define READ_INI5A(A, B, C, D, E, F, G, H, I, J, K, M, N, O)  {\
    1.49 +                                                                 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);\
    1.50 +                                                                 }
    1.51 +
    1.52 +#define READ_INI4(A, B, C, D, E, F, G, H, I, J, K)  {\
    1.53 +                                                       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);\
    1.54 +                                                       }
    1.55 +
    1.56 +#define READ_INI4A(A, B, C, D, E, F, G, H, I, J, K, M)  {\
    1.57 +                                                           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);\
    1.58 +                                                           }
    1.59 +
    1.60 +#define READ_INI3(A, B, C, D, E, F, G, H, I)  {\
    1.61 +                                                 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);\
    1.62 +                                                 }
    1.63 +
    1.64 +#define READ_INI3A(A, B, C, D, E, F, G, H, I, J)  {\
    1.65 +                                                  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);\
    1.66 +                                                  }
    1.67 +
    1.68 +#define READ_INI2(A, B, C, D, E, F, G)  {\
    1.69 +                                           TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) , TPtrC((const TText *)L ## #B), TPtrC((const TText *)L ## #C), D, E, F, G);\
    1.70 +                                           }
    1.71 +
    1.72 +#define READ_INI2A(A, B, C, D, E, F, G, H)  {\
    1.73 +                                            TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) , TPtrC((const TText *)L ## #C), TPtrC((const TText *)L ## #D), E, F, G, H);\
    1.74 +                                            }
    1.75 +
    1.76 +#define READ_INI1(A, B, C)  {\
    1.77 +                            TImportScreenConfig::ReadIni( TPtrC((const TText *)L ## #A) ,B ,C);\
    1.78 +                            }
    1.79 +
    1.80 +#define READ_INI1A(A, B, C, D)  {\
    1.81 +                                TImportScreenConfig::ReadIni(A, TPtrC((const TText *)L ## #B) ,C ,D);\
    1.82 +                                }
    1.83 +
    1.84 +
    1.85 +class TImportScreenConfig
    1.86 +	{
    1.87 +public:
    1.88 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam, TPtrC& aMemberVar, CIniData* iUtils);
    1.89 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam , TPtrC& aMemberVar, CIniData* iUtils);
    1.90 +
    1.91 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam,  TInt& aMemberVar, CIniData* iUtils);
    1.92 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam,  TInt& aMemberVar, CIniData* iUtils);
    1.93 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, TInt& aMemberVar,
    1.94 +                                 TInt aValue1, TInt aValue2, CIniData* aUtils);
    1.95 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam,  const TPtrC& aIniValue1,
    1.96 +                                 const TPtrC& aIniValue2, TInt& aMemberVar, TInt aValue1,
    1.97 +                                 TInt aValue2, CIniData* aUtils);
    1.98 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam,  const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
    1.99 +                                 TInt& aMemberVar, TInt aValue1, TInt aValue2, TInt aValue3, CIniData* aUtils);
   1.100 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2,
   1.101 +                                 const TPtrC& aIniValue3, TInt& aMemberVar, TInt aValue1, TInt aValue2,
   1.102 +                                 TInt aValue3, CIniData* aUtils);
   1.103 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
   1.104 +                                 const TPtrC& aIniValue4, TInt& aMemberVar, TInt aValue1, TInt aValue2,
   1.105 +                                 TInt aValue3, TInt aValue4, CIniData* aUtils);
   1.106 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam,  const TPtrC& aIniValue1, const TPtrC& aIniValue2,
   1.107 +                                 const TPtrC& aIniValue3, const TPtrC& aIniValue4, TInt& aMemberVar,
   1.108 +                                 TInt aValue1, TInt aValue2, TInt aValue3,
   1.109 +                                 TInt aValue4, CIniData* aUtils);
   1.110 +	IMPORT_C static void ReadIni(const TPtrC& aIniParam, const TPtrC& aIniValue1, const TPtrC& aIniValue2, const TPtrC& aIniValue3,
   1.111 +                                 const TPtrC& aIniValue4, const TPtrC& aIniValue5, TInt& aMemberVar, TInt aValue1,
   1.112 +                                 TInt aValue2, TInt aValue3, TInt aValue4, TInt aValue5, CIniData* aUtils);
   1.113 +	IMPORT_C static void ReadIni(const TDesC& tempStore, const TPtrC& aIniParam,  const TPtrC& aIniValue1, const TPtrC& aIniValue2,
   1.114 +                                 const TPtrC& aIniValue3, const TPtrC& aIniValue4, const TPtrC& aIniValue5, TInt& aMemberVar,
   1.115 +                                 TInt aValue1, TInt aValue2, TInt aValue3, TInt aValue4,
   1.116 +                                 TInt aValue5, CIniData* aUtils);
   1.117 +	IMPORT_C static TInt Numeral(TInt val, TInt& aDigit);
   1.118 +	IMPORT_C static TInt ExtractNumber(const TPtrC& aRectTextString, TInt& aSearchFrom, TInt& aNumber);
   1.119 +	IMPORT_C static TInt ExtractRect(const TPtrC& aRectTextString, TRect& aRect, const TSize& aScreenSize);
   1.120 +	IMPORT_C static TInt ExtractAspectRatio(const TPtrC& aRatioString, TSize& aAspectRatio);
   1.121 +	IMPORT_C static TInt ExtractPoint(const TPtrC& aPointString, TPoint& aPoint);
   1.122 +	IMPORT_C static TInt ExtractSize(const TPtrC& aSizeString, TSize& aSize);
   1.123 +	IMPORT_C static void VerifyFramesPerTraverse(TInt& aFramesPerTraverse, TInt aScreenPixelDimension);
   1.124 +	static TInt ReadIniAllowMissing(const TPtrC& aIniParam, TPtrC& aMemberVar, CIniData* aUtils);
   1.125 +	static TBool GetShareSurfaceInfoL(TInt aScreenNo, TInt aWindowNo, TInt& aShareScreenNumber, TInt& aShareWindowNumber, CIniData* aUtils);
   1.126 +
   1.127 +	};
   1.128 +
   1.129 +#endif //__T_PSEUDOAPPUTILS_H__