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 |
#include <hal.h>
|
sl@0
|
23 |
#include "t_winutils.h"
|
sl@0
|
24 |
#include "t_pseudoapputils.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
EXPORT_C CTestBitmap* CTestBitmap::NewLC(const TSize& aSizeInPixels, TDisplayMode aDispMode)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
return NewLC(0, aSizeInPixels, aDispMode);
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
EXPORT_C CTestBitmap* CTestBitmap::NewL(const TSize& aSizeInPixels, TDisplayMode aDispMode)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
CTestBitmap* self = NewLC(0, aSizeInPixels, aDispMode);
|
sl@0
|
34 |
CleanupStack::Pop(self);
|
sl@0
|
35 |
return self;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C CTestBitmap* CTestBitmap::NewL(TInt aHandle)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
CTestBitmap* self = NewLC(aHandle, TSize(), ENone);
|
sl@0
|
41 |
CleanupStack::Pop(self);
|
sl@0
|
42 |
return self;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
CTestBitmap* CTestBitmap::NewLC(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
CTestBitmap* self = new(ELeave) CTestBitmap();
|
sl@0
|
48 |
CleanupStack::PushL(self);
|
sl@0
|
49 |
self->ConstructL(aHandle, aSizeInPixels, aDispMode);
|
sl@0
|
50 |
return self;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
void CTestBitmap::ConstructL(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
iBitmap = new(ELeave) CFbsBitmap();
|
sl@0
|
56 |
CleanupStack::PushL(iBitmap);
|
sl@0
|
57 |
|
sl@0
|
58 |
if (aHandle==0)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
User::LeaveIfError(iBitmap->Create(aSizeInPixels, aDispMode));
|
sl@0
|
61 |
}
|
sl@0
|
62 |
else
|
sl@0
|
63 |
{
|
sl@0
|
64 |
User::LeaveIfError(iBitmap->Duplicate(aHandle));
|
sl@0
|
65 |
}
|
sl@0
|
66 |
iDevice = CFbsBitmapDevice::NewL(iBitmap);
|
sl@0
|
67 |
CleanupStack::PushL(iDevice);
|
sl@0
|
68 |
|
sl@0
|
69 |
User::LeaveIfError(iDevice->CreateContext(iGc));
|
sl@0
|
70 |
|
sl@0
|
71 |
CleanupStack::Pop(2);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
CTestBitmap::~CTestBitmap()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
delete iGc;
|
sl@0
|
77 |
delete iDevice;
|
sl@0
|
78 |
delete iBitmap;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
EXPORT_C void TImportPseudoAppConfig::ImportPseudoAppConfigL(TInt aScreenNo, TInt& aFrameDuration, TInt& aFrameDelay,
|
sl@0
|
82 |
TDisplayMode& aMode, TSize& aScreenSize, CIniData* aUtils)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TInt screenMode;
|
sl@0
|
85 |
TInt numberOfScreens;
|
sl@0
|
86 |
TPtrC screenAspectRatio;
|
sl@0
|
87 |
TInt screenNumber;
|
sl@0
|
88 |
|
sl@0
|
89 |
READ_INI1(frame_duration, aFrameDuration, aUtils);
|
sl@0
|
90 |
READ_INI1(screen_aspect_ratio, screenAspectRatio, aUtils);
|
sl@0
|
91 |
READ_INI1(number_of_screens, numberOfScreens, aUtils);
|
sl@0
|
92 |
READ_INI1(frame_delay, aFrameDelay, aUtils);
|
sl@0
|
93 |
READ_INI2(screen_mode, EColor16MA, EColor64K, screenMode, EColor16MA, EColor64K, aUtils);
|
sl@0
|
94 |
|
sl@0
|
95 |
aMode = static_cast<TDisplayMode>(screenMode);
|
sl@0
|
96 |
|
sl@0
|
97 |
//Determine the number of screens from the hardware and compare with the value from the ini file
|
sl@0
|
98 |
HAL::Get(HALData::EDisplayNumberOfScreens, screenNumber);
|
sl@0
|
99 |
if(numberOfScreens != screenNumber)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
RDebug::Print(_L("Error: A %d screen test has been indicated, but %d screen(s) exist\n"), numberOfScreens, screenNumber);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
//Determine the screen dimensions
|
sl@0
|
105 |
RWsSession session;
|
sl@0
|
106 |
User::LeaveIfError(session.Connect());
|
sl@0
|
107 |
|
sl@0
|
108 |
CWsScreenDevice* screenDevice = new(ELeave) CWsScreenDevice(session);
|
sl@0
|
109 |
CleanupStack::PushL(screenDevice);
|
sl@0
|
110 |
|
sl@0
|
111 |
User::LeaveIfError(screenDevice->Construct(aScreenNo));
|
sl@0
|
112 |
|
sl@0
|
113 |
aScreenSize = screenDevice->SizeInPixels();
|
sl@0
|
114 |
|
sl@0
|
115 |
//Check that the aspect ratio matches that of the screen
|
sl@0
|
116 |
TSize aSpectRatio;
|
sl@0
|
117 |
|
sl@0
|
118 |
if(TImportScreenConfig::ExtractAspectRatio(screenAspectRatio, aSpectRatio) == KErrNone)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
if(aScreenSize.iWidth*aSpectRatio.iHeight != aScreenSize.iHeight*aSpectRatio.iWidth)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
RDebug::Print(_L("Aspect ratio from string does not match screen dimensions\n"));
|
sl@0
|
123 |
RDebug::Print(_L("Read in %d:%d, Actual dimensions %d:%d\n"), aSpectRatio.iWidth, aSpectRatio.iHeight, aScreenSize.iWidth, aScreenSize.iHeight);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
}
|
sl@0
|
126 |
else
|
sl@0
|
127 |
{
|
sl@0
|
128 |
RDebug::Print(_L("Cannot determine aspect ratio from string, quitting: %s\n"), screenAspectRatio.Ptr());
|
sl@0
|
129 |
User::Exit(0);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
CleanupStack::PopAndDestroy(screenDevice);
|
sl@0
|
133 |
session.Close();
|
sl@0
|
134 |
}
|