Update contrib.
1 // Copyright (c) 2007-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.
23 #include "t_winutils.h"
24 #include "t_pseudoapputils.h"
26 EXPORT_C CTestBitmap* CTestBitmap::NewLC(const TSize& aSizeInPixels, TDisplayMode aDispMode)
28 return NewLC(0, aSizeInPixels, aDispMode);
31 EXPORT_C CTestBitmap* CTestBitmap::NewL(const TSize& aSizeInPixels, TDisplayMode aDispMode)
33 CTestBitmap* self = NewLC(0, aSizeInPixels, aDispMode);
34 CleanupStack::Pop(self);
38 EXPORT_C CTestBitmap* CTestBitmap::NewL(TInt aHandle)
40 CTestBitmap* self = NewLC(aHandle, TSize(), ENone);
41 CleanupStack::Pop(self);
45 CTestBitmap* CTestBitmap::NewLC(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
47 CTestBitmap* self = new(ELeave) CTestBitmap();
48 CleanupStack::PushL(self);
49 self->ConstructL(aHandle, aSizeInPixels, aDispMode);
53 void CTestBitmap::ConstructL(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
55 iBitmap = new(ELeave) CFbsBitmap();
56 CleanupStack::PushL(iBitmap);
60 User::LeaveIfError(iBitmap->Create(aSizeInPixels, aDispMode));
64 User::LeaveIfError(iBitmap->Duplicate(aHandle));
66 iDevice = CFbsBitmapDevice::NewL(iBitmap);
67 CleanupStack::PushL(iDevice);
69 User::LeaveIfError(iDevice->CreateContext(iGc));
74 CTestBitmap::~CTestBitmap()
81 EXPORT_C void TImportPseudoAppConfig::ImportPseudoAppConfigL(TInt aScreenNo, TInt& aFrameDuration, TInt& aFrameDelay,
82 TDisplayMode& aMode, TSize& aScreenSize, CIniData* aUtils)
86 TPtrC screenAspectRatio;
89 READ_INI1(frame_duration, aFrameDuration, aUtils);
90 READ_INI1(screen_aspect_ratio, screenAspectRatio, aUtils);
91 READ_INI1(number_of_screens, numberOfScreens, aUtils);
92 READ_INI1(frame_delay, aFrameDelay, aUtils);
93 READ_INI2(screen_mode, EColor16MA, EColor64K, screenMode, EColor16MA, EColor64K, aUtils);
95 aMode = static_cast<TDisplayMode>(screenMode);
97 //Determine the number of screens from the hardware and compare with the value from the ini file
98 HAL::Get(HALData::EDisplayNumberOfScreens, screenNumber);
99 if(numberOfScreens != screenNumber)
101 RDebug::Print(_L("Error: A %d screen test has been indicated, but %d screen(s) exist\n"), numberOfScreens, screenNumber);
104 //Determine the screen dimensions
106 User::LeaveIfError(session.Connect());
108 CWsScreenDevice* screenDevice = new(ELeave) CWsScreenDevice(session);
109 CleanupStack::PushL(screenDevice);
111 User::LeaveIfError(screenDevice->Construct(aScreenNo));
113 aScreenSize = screenDevice->SizeInPixels();
115 //Check that the aspect ratio matches that of the screen
118 if(TImportScreenConfig::ExtractAspectRatio(screenAspectRatio, aSpectRatio) == KErrNone)
120 if(aScreenSize.iWidth*aSpectRatio.iHeight != aScreenSize.iHeight*aSpectRatio.iWidth)
122 RDebug::Print(_L("Aspect ratio from string does not match screen dimensions\n"));
123 RDebug::Print(_L("Read in %d:%d, Actual dimensions %d:%d\n"), aSpectRatio.iWidth, aSpectRatio.iHeight, aScreenSize.iWidth, aScreenSize.iHeight);
128 RDebug::Print(_L("Cannot determine aspect ratio from string, quitting: %s\n"), screenAspectRatio.Ptr());
132 CleanupStack::PopAndDestroy(screenDevice);