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.
22 #include "t_pseudoappwindow.h"
23 #include "t_winutils.h"
25 EXPORT_C CTestWindow::CTestWindow(TInt aScreenNo, TDisplayMode aMode)
27 RDebug::Print(_L("Creating CTestWindow class\n"));
28 TRAPD(err, ConstructL(aScreenNo, aMode));
31 RDebug::Print(_L("CTestWindow::ConstructL() leaves with error %d\n"), err);
36 CTestWindow::~CTestWindow()
51 EXPORT_C void CTestWindow::ConstructL(TInt aScreenNo, TDisplayMode aMode)
53 RDebug::Print(_L("Constructing CTestWindow class\n"));
54 User::LeaveIfError(iSession.Connect());
56 RDebug::Print(_L("Create CWsScreenDevice\n"));
57 iScreen = new(ELeave) CWsScreenDevice(iSession);
58 User::LeaveIfError(iScreen->Construct(aScreenNo));
60 RDebug::Print(_L("Create RWindowGroup\n"));
61 iGroup = RWindowGroup(iSession);
63 User::LeaveIfError(iGroup.Construct(8970 + aScreenNo, ETrue));
65 RDebug::Print(_L("Create Window\n"));
66 iWindow = RWindow(iSession);
67 User::LeaveIfError(iWindow.Construct((RWindowTreeNode)iGroup,(TUint32)this));
69 RDebug::Print(_L("Create CWindowGc\n"));
70 iWindowGc = new (ELeave) CWindowGc(iScreen);
71 User::LeaveIfError(iWindowGc->Construct());
73 TInt ret = iWindow.SetRequiredDisplayMode(aMode);
74 RDebug::Print(_L("Window display mode set to %d\n"), ret);
80 EXPORT_C void CTestWindow::Rotate(TSize /*aScreenSize*/)
84 EXPORT_C void CTestWindow::DrawL()
88 void CTestWindow::SetPosition()
90 iWindow.SetPosition((*iLoadsaParameters)[iFrameCounter].iWindowPos);
94 void CTestWindow::SetSize()
96 iWindow.SetSize((*iLoadsaParameters)[iFrameCounter].iWindowSize);
100 void CTestWindow::SetExtent()
102 iWindow.SetExtent((*iLoadsaParameters)[iFrameCounter].iWindowPos, (*iLoadsaParameters)[iFrameCounter].iWindowSize);
106 EXPORT_C CTestEmptyWindow* CTestEmptyWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TSize& aScreenSize)
108 CTestEmptyWindow* self = new (ELeave) CTestEmptyWindow(aScreenNo, aMode);
109 CleanupStack::PushL(self);
110 self->ConstructL(aScreenSize);
111 CleanupStack::Pop(); // self;
115 void CTestEmptyWindow::ConstructL(const TSize& aScreenSize)
117 RDebug::Print(_L("Construct CTestEmptyWindow class\n"));
118 iWindowDrawn = EFalse;
119 iWindow.SetExtent(TPoint(0,0), aScreenSize);
122 EXPORT_C CTestEmptyWindow::CTestEmptyWindow(TInt aScreenNo, TDisplayMode aMode) :
123 CTestWindow(aScreenNo, aMode)
127 CTestEmptyWindow::~CTestEmptyWindow()
131 EXPORT_C void CTestEmptyWindow::Rotate(TSize /*aScreenSize*/)
135 EXPORT_C void CTestEmptyWindow::DrawL()
137 iWindowDrawn = ETrue;
138 iWindowGc->Activate(iWindow);
139 iWindow.Invalidate();
140 iWindow.BeginRedraw();
142 iWindowGc->Deactivate();
147 EXPORT_C CTestEcomWindow* CTestEcomWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapEcomFile,
148 TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
149 CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
151 CTestEcomWindow* self = new (ELeave) CTestEcomWindow(aScreenNo, aMode);
152 CleanupStack::PushL(self);
153 self->ConstructL(aMultiBitmapEcomFile, aMultiBitmapEcomFileSize, aGceTestResults, aLoadsaParameters);
154 CleanupStack::Pop(); // self;
158 void CTestEcomWindow::ConstructL(const TPtrC& aMultiBitmapEcomFile, TInt aMultiBitmapEcomFileSize, TGceTestResults* aGceTestResults,
159 CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
161 RDebug::Print(_L("Construct CTestEcomWindow class\n"));
163 iMultiBitmapEcomFile.Set(aMultiBitmapEcomFile);
164 iMultiBitmapEcomFileSize = aMultiBitmapEcomFileSize;
165 iLoadsaParameters = aLoadsaParameters;
167 //Pass notification value back to ui
168 iGceTestResults = aGceTestResults;
171 EXPORT_C CTestEcomWindow::CTestEcomWindow(TInt aScreenNo, TDisplayMode aMode) :
172 CTestWindow(aScreenNo, aMode)
176 CTestEcomWindow::~CTestEcomWindow()
180 EXPORT_C void CTestEcomWindow::Rotate(TSize /*aScreenSize*/)
184 EXPORT_C void CTestEcomWindow::DrawL()
186 if(iBitmapCounter == iMultiBitmapEcomFileSize)
191 TParamChange redraw = Redraw();
192 if(redraw != ENoParamChange)
194 if(redraw == EPositionChange)
199 if(redraw == ESizeChange)
204 if(redraw == EExtentChange)
211 iWindowGc->Activate(iWindow);
212 iWindow.Invalidate();
213 iWindow.BeginRedraw();
215 bitmap.Load(iMultiBitmapEcomFile, iBitmapCounter);
217 iWindowGc->DrawBitmap(TRect(TPoint(0,0), (*iLoadsaParameters)[0].iWindowSize), &bitmap);
220 iWindowGc->Deactivate();
227 TParamChange CTestEcomWindow::Redraw()
229 if(iFrameCounter == 0)
231 iWindow.SetExtent((*iLoadsaParameters)[0].iWindowPos, (*iLoadsaParameters)[0].iWindowSize);
232 iWindow.SetVisible(ETrue);
238 TDrawParameters current = (*iLoadsaParameters)[iFrameCounter];
239 TDrawParameters last = (*iLoadsaParameters)[iFrameCounter - 1];
241 if(current.iWindowSize != last.iWindowSize)
243 if(current.iWindowPos != last.iWindowPos)
245 return EExtentChange;
249 else if(current.iWindowPos != last.iWindowPos)
251 return EPositionChange;
254 return ENoParamChange;
257 EXPORT_C CTestUiWindow* CTestUiWindow::NewL(TInt aScreenNo, TDisplayMode aMode, const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize,
258 CArrayFixFlat<TRect>* aRectArray, TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency,
259 TGceTestResults* aGceTestResults,
260 CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
262 CTestUiWindow* self = new (ELeave) CTestUiWindow(aScreenNo ,aMode);
263 CleanupStack::PushL(self);
264 self->ConstructL(aMultiBitmapUiFile, aMultiBitmapUiFileSize, aRectArray, aFrameDuration,
265 aMultiBitmapUiFileTransparency, aGceTestResults,
268 CleanupStack::Pop(); // self;
272 void CTestUiWindow::ConstructL(const TPtrC& aMultiBitmapUiFile, TInt aMultiBitmapUiFileSize, CArrayFixFlat<TRect>* aRectArray,
273 TInt aFrameDuration, TInt aMultiBitmapUiFileTransparency, TGceTestResults* aGceTestResults,
274 CArrayFixFlat<TDrawParameters>* aLoadsaParameters)
276 RDebug::Print(_L("Construct CTestUiWindow class\n"));
278 iSimUiDrawn = EFalse;
279 iMultiBitmapUiFile.Set(aMultiBitmapUiFile);
280 iMultiBitmapUiFileSize = aMultiBitmapUiFileSize;
281 iMultiBitmapUiFileTransparency = aMultiBitmapUiFileTransparency;
282 iRectArray = aRectArray;
283 iFrameDuration = aFrameDuration;
284 iLoadsaParameters = aLoadsaParameters;
286 //Pass notification value back to ui
287 iGceTestResults = aGceTestResults;
290 EXPORT_C CTestUiWindow::CTestUiWindow(TInt aScreenNo, TDisplayMode aMode) :
291 CTestWindow(aScreenNo, aMode)
295 CTestUiWindow::~CTestUiWindow()
299 void CTestUiWindow::SetBitmapTransparency(CFbsBitmap* aBitmap, TUint8 aAlphaValue, TInt aAlphaByteLocation)
302 TUint32* bitmapBufferPtr = aBitmap->DataAddress();
303 if(bitmapBufferPtr == 0)
305 RDebug::Print(_L("Error getting bitmap address, aborting\n"));
306 //Unlock heap before exitting
307 aBitmap->UnlockHeap();
311 TSize aBitmapSize = aBitmap->SizeInPixels();
312 TUint32 noOfPixels = aBitmapSize.iHeight * aBitmapSize.iWidth;
316 *bitmapBufferPtr = ( (*bitmapBufferPtr & ~(0xFF << (aAlphaByteLocation * 8))) | (aAlphaValue << (aAlphaByteLocation * 8)) );
320 aBitmap->UnlockHeap();
323 EXPORT_C void CTestUiWindow::Rotate(const TSize& aScreenSize)
325 //Adjust the sizes of the UI bitmap components to reflect the aspect ratio change
326 for(TInt j=0; j<iMultiBitmapUiFileSize; j++)
328 (*iRectArray)[j].iTl.iX = ((*iRectArray)[j].iTl.iX*aScreenSize.iWidth)/aScreenSize.iHeight;
329 (*iRectArray)[j].iTl.iY = ((*iRectArray)[j].iTl.iY*aScreenSize.iHeight)/aScreenSize.iWidth;
330 (*iRectArray)[j].iBr.iX = ((*iRectArray)[j].iBr.iX*aScreenSize.iWidth)/aScreenSize.iHeight;
331 (*iRectArray)[j].iBr.iY = ((*iRectArray)[j].iBr.iY*aScreenSize.iHeight)/aScreenSize.iWidth;
334 iWindow.SetSize(aScreenSize);
337 EXPORT_C void CTestUiWindow::DrawL()
339 TParamChange redraw = Redraw();
341 if(redraw == EPositionChange)
346 if(redraw == ESizeChange)
351 if(redraw == EExtentChange)
357 iWindowGc->Activate(iWindow);
358 iWindow.Invalidate();
359 iWindow.BeginRedraw();
361 CTestBitmap* bitmapSource = NULL;
362 bitmapSource = CTestBitmap::NewL(TSize(0,0), iMode);
364 for(TInt j=0; j<iMultiBitmapUiFileSize; j++)
366 User::LeaveIfError(bitmapSource->Bitmap().Load(iMultiBitmapUiFile, j));
368 TInt lastSize = (*iLoadsaParameters)[iFrameCounter].iBitmapScale;
373 destRect.SetRect(TPoint( ((*iRectArray)[j].iTl.iX*lastSize)/100, ((*iRectArray)[j].iTl.iY*lastSize)/100),
374 TPoint( ((*iRectArray)[j].iBr.iX*lastSize)/100, ((*iRectArray)[j].iBr.iY*lastSize)/100 ));
376 drawPos = TPoint(((*iRectArray)[j].iTl.iX*lastSize)/100, ((*iRectArray)[j].iTl.iY*lastSize)/100);
378 if(iMultiBitmapUiFileTransparency)
380 CTestBitmap* bitmapSourceAlpha = CTestBitmap::NewL(TSize(0,0), EGray256);
381 User::LeaveIfError(bitmapSourceAlpha->Bitmap().Load(iMultiBitmapUiFile, j+iMultiBitmapUiFileSize));
383 //Adjust the transparency controlled by the alpha bitmap
384 SetBitmapAlpha(&(bitmapSourceAlpha->Bitmap()));
386 CTestBitmap* bitmapDest = CTestBitmap::NewL(destRect.Size(), iMode);
387 bitmapDest->Bitmap().SetSizeInTwips(bitmapSource->Bitmap().SizeInTwips());
388 bitmapDest->Gc().DrawBitmap(TRect(TPoint(0,0), destRect.Size()), &(bitmapSource->Bitmap()));
390 CTestBitmap* bitmapDestAlpha = CTestBitmap::NewL(destRect.Size(), EGray256);
391 bitmapDestAlpha->Bitmap().SetSizeInTwips(bitmapSourceAlpha->Bitmap().SizeInTwips());
392 bitmapDestAlpha->Gc().DrawBitmap(TRect(TPoint(0,0), destRect.Size()), &(bitmapSourceAlpha->Bitmap()));
394 iWindowGc->AlphaBlendBitmaps(drawPos, &(bitmapDest->Bitmap()), TRect(TPoint(0,0), destRect.Size()),
395 &(bitmapDestAlpha->Bitmap()), TPoint(0,0));
397 delete bitmapSourceAlpha;
399 delete bitmapDestAlpha;
403 iWindowGc->DrawBitmap(destRect, &(bitmapSource->Bitmap()));
410 iWindowGc->Deactivate();
416 void CTestUiWindow::SetBitmapAlpha(CFbsBitmap* aBitmap)
419 TUint32* bitmapBufferPtr = aBitmap->DataAddress();
421 TSize aBitmapSize = aBitmap->SizeInPixels();
422 TUint32 noOfPixels = (aBitmapSize.iHeight * aBitmapSize.iWidth)/4;
423 TUint8 alpha = (*iLoadsaParameters)[iFrameCounter].iBitmapAlpha;
425 TUint32 alpha32 = (alpha << 24) | (alpha << 16) | (alpha << 8) | alpha;
428 //Only modify grey pixels leaving the white ones untouched
429 if(*bitmapBufferPtr != 0x0)
431 *bitmapBufferPtr = alpha32;
437 aBitmap->UnlockHeap();
440 TParamChange CTestUiWindow::Redraw()
442 if(iFrameCounter == 0)
444 iWindow.SetExtent((*iLoadsaParameters)[0].iWindowPos, (*iLoadsaParameters)[0].iWindowSize);
445 iWindow.SetVisible(ETrue);
451 TDrawParameters current = (*iLoadsaParameters)[iFrameCounter];
452 TDrawParameters last = (*iLoadsaParameters)[iFrameCounter - 1];
454 if(current.iWindowSize != last.iWindowSize)
456 if(current.iWindowPos != last.iWindowPos)
458 return EExtentChange;
462 else if(current.iWindowPos != last.iWindowPos)
464 return EPositionChange;
466 else if(current.iBitmapScale != last.iBitmapScale)
470 else if(current.iBitmapAlpha != last.iBitmapAlpha)
472 return EOpacityChange;
475 return ENoParamChange;
478 TDrawParameters::TDrawParameters() : iRedraw(EFalse), iBitmapScale(0), iBitmapAlpha(0), iWindowSize(0,0), iWindowPos(0,0)
482 TDrawParameters::~TDrawParameters()
486 TBool TDrawParameters::operator==(const TDrawParameters& x) const
488 if( (x.iBitmapScale != iBitmapScale) ||
489 (x.iBitmapAlpha != iBitmapAlpha) ||
490 (x.iWindowSize != iWindowSize) ||
491 (x.iWindowPos != iWindowPos) )