Update contrib.
1 // Copyright (c) 1996-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.
14 // An alpha channel test case.
15 // Output different graphics primitives in each window using three graphics modes
16 // for pen and brush : semi-transparent,transparent, opaque
17 // Test also exercises anti-aliasing and fading for 16MA display mode
18 // Moves sprite on the window. Tests a sprite functionality.
19 // Creates RBackedUpWindow window and moves it over transparent window,
20 // hides and shows it.
21 // Moves windows on the screen, overlaps them
23 // Create a background window, and five foreground windows:
24 // -transparent and semi-transparent
25 // -transparent with transparency factor
30 #include "TAlphaChannel.H"
32 const TInt KWindowIndention = 2;
33 const TInt KSizeKoeff = 15;
36 LOCAL_D TPtrC ColumnName[]={
38 _L("Semi-transparent"),
45 LOCAL_D TPtrC RowName[]={
57 CTAlphaChannel::CTAlphaChannel(CTestStep* aStep):
58 CTWsGraphicsBase(aStep), iArrWindow(8)
62 CTAlphaChannel::~CTAlphaChannel()
72 delete iBitmapGray256Mask;
74 delete iBitmapContext64K_1;
75 delete iBitmapContext16MA_1;
76 delete iBitmapContext64K_2;
77 delete iBitmapContext16MA_2;
78 delete iBitmapContext64K_3;
79 delete iBitmapContext16MA_3;
81 delete iBitmapDevice64K_1;
82 delete iBitmapDevice16MA_1;
83 delete iBitmapDevice64K_2;
84 delete iBitmapDevice16MA_2;
85 delete iBitmapDevice64K_3;
86 delete iBitmapDevice16MA_3;
88 delete iBackgroundWindow;
91 iArrWindow.ResetAndDestroy();
94 TheClient->iScreen->ReleaseFont(iFont);
96 TheClient->iScreen->ReleaseFont(iFont1);
98 BaseWin->SetVisible(ETrue);
99 TestWin->SetVisible(ETrue);
102 void CTAlphaChannel::ConstructL()
104 const TInt KIndent = 10;
105 BaseWin->SetVisible(EFalse);
106 TestWin->SetVisible(EFalse);
108 iText = _L("This is a text");
109 iBrushStyle = CGraphicsContext::ESolidBrush;
110 iPenTable = KRgbBlack;
112 TSize screenSize=TheClient->iGroup->Size();
113 TInt winWidth=(screenSize.iWidth)-KIndent;
114 TInt winHeight=screenSize.iHeight-KIndent;
115 TDisplayMode dispMode = EColor64K;
117 //background opaque window
118 iBackgroundWindow = new (ELeave) CTWinAlpha();
119 iBackgroundWindow->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),TheClient->iGroup,*TheClient->iGc, &dispMode);
120 RWindow *theWin = (RWindow*) (iBackgroundWindow->DrawableWin());
121 theWin->SetBackgroundColor(TRgb(255, 0, 0));
122 iBackgroundWindow->DrawNow();
124 iSizeForegroundWindow.iWidth = (winWidth - KWindowIndention * 4) / 5 ;
125 iSizeForegroundWindow.iHeight = winHeight;
127 CalculateSizePrimitives(iSizeForegroundWindow);
129 //-------------create bitmaps
131 iBitmap64K_1 = new (ELeave) CFbsBitmap ;
132 iBitmap64K_1->Create(iBitmapSize,EColor64K);
133 iBitmap64K_2 = new (ELeave) CFbsBitmap ;
134 iBitmap64K_2->Create(iBitmapSize,EColor64K);
135 iBitmap64K_3 = new (ELeave) CFbsBitmap ;
136 iBitmap64K_3->Create(iBitmapSize,EColor64K);
137 iBitmapDevice64K_1 = CFbsBitmapDevice::NewL(iBitmap64K_1);
138 iBitmapDevice64K_1->CreateContext(iBitmapContext64K_1);
139 iBitmapDevice64K_2 = CFbsBitmapDevice::NewL(iBitmap64K_2);
140 iBitmapDevice64K_2->CreateContext(iBitmapContext64K_2);
141 iBitmapDevice64K_3 = CFbsBitmapDevice::NewL(iBitmap64K_3);
142 iBitmapDevice64K_3->CreateContext(iBitmapContext64K_3);
145 iBitmap16MA_1 = new (ELeave) CFbsBitmap ;
146 iBitmap16MA_1->Create(iBitmapSize, EColor16MA);
147 iBitmap16MA_2 = new (ELeave) CFbsBitmap ;
148 iBitmap16MA_2->Create(iBitmapSize, EColor16MA);
149 iBitmap16MA_3 = new (ELeave) CFbsBitmap ;
150 iBitmap16MA_3->Create(iBitmapSize, EColor16MA);
152 iBitmapDevice16MA_1 = CFbsBitmapDevice::NewL(iBitmap16MA_1);
153 iBitmapDevice16MA_1->CreateContext(iBitmapContext16MA_1);
154 iBitmapDevice16MA_2 = CFbsBitmapDevice::NewL(iBitmap16MA_2);
155 iBitmapDevice16MA_2->CreateContext(iBitmapContext16MA_2);
156 iBitmapDevice16MA_3 = CFbsBitmapDevice::NewL(iBitmap16MA_3);
157 iBitmapDevice16MA_3->CreateContext(iBitmapContext16MA_3);
160 iBitmapMask = new (ELeave) CFbsBitmap ;
161 iBitmapMask->Create(iBitmapSize, EGray2);
163 CFbsBitmapDevice* theBitmapDevice = CFbsBitmapDevice::NewL(iBitmapMask);
164 CGraphicsContext* theBitmapContext = NULL;
165 theBitmapDevice->CreateContext(theBitmapContext);
166 TRect rect = TRect(iBitmapMask->SizeInPixels());
167 theBitmapContext->SetBrushColor(KRgbWhite);
168 theBitmapContext->SetPenColor(KRgbWhite);
169 theBitmapContext->SetBrushStyle(CGraphicsContext::ESolidBrush);
170 theBitmapContext->DrawRect(rect);
173 theBitmapContext->SetBrushColor(KRgbBlack);
174 theBitmapContext->SetPenColor(KRgbBlack);
175 theBitmapContext->DrawEllipse(rect);
176 delete theBitmapContext;
177 delete theBitmapDevice;
179 //create 256gray bitmap mask
180 iBitmapGray256Mask = new (ELeave) CFbsBitmap;
181 iBitmapGray256Mask->Create(iBitmapSize, EGray256);
182 theBitmapDevice = CFbsBitmapDevice::NewL(iBitmapGray256Mask);
183 theBitmapDevice->CreateContext(theBitmapContext);
185 if(iBitmapSize != TSize(0, 0))
187 //fill bitmap with 256 gradation of gray
188 TInt theStep = 256 / iBitmapGray256Mask->SizeInPixels().iWidth;
190 for(TInt ii = 0; ii < iBitmapGray256Mask->SizeInPixels().iWidth; ii++)
192 TInt theSingleCol = theStep * ii;
193 TRgb theCol(theSingleCol, theSingleCol, theSingleCol);
194 theBitmapContext->SetBrushColor(theCol);
195 theBitmapContext->SetPenColor(theCol);
196 TPoint ptFrom(ii, 0);
197 TPoint ptTo(ii, iBitmapGray256Mask->SizeInPixels().iHeight);
198 theBitmapContext->DrawLine(ptFrom, ptTo);
201 delete theBitmapContext;
202 delete theBitmapDevice;
204 TFontSpec fontSpec(KTestFontTypefaceName,600);
206 fontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
207 fontSpec.iFontStyle.SetBitmapType(EAntiAliasedGlyphBitmap);
209 User::LeaveIfError(TheClient->iScreen->GetNearestFontToDesignHeightInTwips(iFont, fontSpec));
211 TFontSpec fontSpec1(KTestFontTypefaceName,100);
212 User::LeaveIfError(TheClient->iScreen->GetNearestFontToDesignHeightInTwips(iFont1, fontSpec1));
215 void CTAlphaChannel::CalculateSizePrimitives(const TSize& aSize)
217 TInt theLen = aSize.iWidth / KSizeKoeff;
219 iBitmapSize = TSize(2 * theLen, 2 * theLen);
220 iRectangleSize = TSize(2 * theLen, 2 * theLen);
221 iEllipseSize = TSize(4 * theLen, 2 * theLen);
222 iTriangleSize = TSize(3 * theLen, 2 * theLen);
223 iFirstCellWidth = static_cast <TInt> (1.2 * theLen);
224 iFirstCellHeight = static_cast <TInt> (1.5 * theLen);
227 void CTAlphaChannel::DrawOffscreenBitmapsL(const TRgb& /*aPen*/, const TRgb& aBrush,
228 CGraphicsContext* aBitmapContext64K, CGraphicsContext* aBitmapContext16MA,
229 CFbsBitmap* aBitmap64K, CFbsBitmap* aBitmap16MA)
232 if(aBitmapContext64K && aBitmap64K)
234 SEpocBitmapHeader header = aBitmap64K->Header();
235 TInt source_buffer_size = header.iBitmapSize / header.iSizeInPixels.iHeight * header.iBitsPerPixel ;
236 TUint8* buffer = new(ELeave) TUint8[source_buffer_size];
237 TPtr8 source_ptr(buffer, source_buffer_size, source_buffer_size);
239 TUint16* bufferCur = reinterpret_cast<TUint16*> (buffer);
241 for(ii = 0; ii < header.iSizeInPixels.iWidth; ++ii)
243 *bufferCur = aBrush._Color64K();
247 for(ii = 0; ii < header.iSizeInPixels.iHeight; ++ii)
249 aBitmap64K -> SetScanLine(source_ptr, ii);
255 if(aBitmapContext16MA && aBitmap16MA)
257 SEpocBitmapHeader header = aBitmap16MA -> Header();
258 TInt source_buffer_size = header.iBitmapSize / header.iSizeInPixels.iHeight * header.iBitsPerPixel ;
259 TUint8* buffer = new(ELeave) TUint8[source_buffer_size];
260 TPtr8 source_ptr(buffer, source_buffer_size, source_buffer_size);
262 TUint32* bufferCur = reinterpret_cast<TUint32*> (buffer);
264 for(ii = 0; ii < header.iSizeInPixels.iWidth; ++ii)
266 *bufferCur = aBrush._Color16MA();
270 for(ii = 0; ii < header.iSizeInPixels.iHeight; ++ii)
272 aBitmap16MA -> SetScanLine(source_ptr, ii);
280 enum {EOpaque, ESemiTrans, ETrans};
282 TRgb CTAlphaChannel::GetBrush(TInt aIndex) const
287 return TRgb(0, 0, 255, 255);
289 return TRgb(0, 0, 255, 128);
291 return TRgb(0, 0, 255, 0);
295 return TRgb(0, 0, 255, 255);
298 TRgb CTAlphaChannel::GetPen(TInt aIndex) const
303 return TRgb(0, 0, 255, 255);
305 return TRgb(0, 0, 255, 128);
307 return TRgb(0, 0, 255, 0);
311 return TRgb(0, 0, 255, 255);
314 CGraphicsContext::TDrawMode CTAlphaChannel::GetDrawMode(TInt /*aIndex*/) const
316 return CGraphicsContext::EDrawModePEN;
319 enum {EAll64K, EAll16MA, EAllDifferent};// later may add EAll16M
320 void CTAlphaChannel::SetDisplayModeConfiguration(TInt aConfig)
325 if(iForegroundWindowOpaque)
326 iForegroundWindowOpaque->SetDisplayMode(EColor64K);
327 if(iForegroundWindowSemiTrans)
328 iForegroundWindowSemiTrans->SetDisplayMode(EColor64K);
329 if(iForegroundWindowTrans)
330 iForegroundWindowTrans->SetDisplayMode(EColor64K);
333 if(iForegroundWindowOpaque)
334 iForegroundWindowOpaque->SetDisplayMode(EColor16MA);
335 if(iForegroundWindowSemiTrans)
336 iForegroundWindowSemiTrans->SetDisplayMode(EColor16MA);
337 if(iForegroundWindowTrans)
338 iForegroundWindowTrans->SetDisplayMode(EColor16MA);
341 if(iForegroundWindowOpaque)
342 iForegroundWindowOpaque->SetDisplayMode(EColor256);
343 if(iForegroundWindowSemiTrans)
344 iForegroundWindowSemiTrans->SetDisplayMode(EColor64K);
345 if(iForegroundWindowTrans)
346 iForegroundWindowTrans->SetDisplayMode(EColor16MA);
351 enum {ETiled, EOverlapping};
353 void CTAlphaChannel::SetPositionConfiguration(TInt aConfig)
355 TSize screenSize=TheClient->iGroup->Size();
356 TInt winWidth=(screenSize.iWidth)-10;
357 TInt winHeight=screenSize.iHeight-10;
360 if(iForegroundWindowOpaque)
361 iForegroundWindowOpaque->SetPos(TPoint(winWidth/5, 0));
362 if(iForegroundWindowSemiTrans)
363 iForegroundWindowSemiTrans->SetPos(TPoint(2*winWidth/5, 0));
364 if(iForegroundWindowTrans)
365 iForegroundWindowTrans->SetPos(TPoint(3*winWidth/5, 0));
369 if(iForegroundWindowOpaque)
370 iForegroundWindowOpaque->SetPos(TPoint(winWidth/3, -winHeight/3));
371 if(iForegroundWindowSemiTrans)
372 iForegroundWindowSemiTrans->SetPos(TPoint(2*winWidth/5, winHeight/3));
373 if(iForegroundWindowTrans)
374 iForegroundWindowTrans->SetPos(TPoint(winWidth/2, -winHeight/3));
376 if (iForegroundWindowBottom)
377 iForegroundWindowBottom->SetPos(TPoint(0, 0));
378 if (iForegroundWindowTop)
379 iForegroundWindowTop->SetPos(TPoint(4*winWidth/5, 0));
382 enum {EVaryingTransparency, EVaryingColour};
384 void CTAlphaChannel::SetColourConfiguration(TInt aConfig)
387 if (aConfig==EVaryingTransparency)
389 // red background, green foregrounds of varying transparency
390 win = (RWindow*)(iBackgroundWindow->DrawableWin());
391 win->SetBackgroundColor(TRgb(255,0,0,255));
393 if(iForegroundWindowOpaque)
394 iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,255));
395 if(iForegroundWindowSemiTrans)
396 iForegroundWindowSemiTrans->SetBackgroundColor(TRgb(0,255,0,128));
397 if(iForegroundWindowTrans)
398 iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,0));
402 // white background, semi-transparent foregrounds in primary colours
403 win = (RWindow*)(iBackgroundWindow->DrawableWin());
404 win->SetBackgroundColor(TRgb(255,255,255,255));
406 if(iForegroundWindowOpaque)
407 iForegroundWindowOpaque->SetBackgroundColor(TRgb(255,0,0,128));
408 if(iForegroundWindowSemiTrans)
409 iForegroundWindowSemiTrans->SetBackgroundColor(TRgb(0,255,0,128));
410 if(iForegroundWindowTrans)
411 iForegroundWindowTrans->SetBackgroundColor(TRgb(0,0,255,128));
415 void CTAlphaChannel::DoMoving()
418 for (TInt i = 0; i<20; i++)
420 if (iForegroundWindowBottom)
422 pos = iForegroundWindowBottom->Position();
424 iForegroundWindowBottom->SetPos(pos);
427 if (iForegroundWindowOpaque)
429 pos = iForegroundWindowOpaque->Position();
431 iForegroundWindowOpaque->SetPos(pos);
434 if (iForegroundWindowSemiTrans)
436 pos = iForegroundWindowSemiTrans->Position();
438 iForegroundWindowSemiTrans->SetPos(pos);
441 if (iForegroundWindowTrans)
443 pos = iForegroundWindowTrans->Position();
445 iForegroundWindowTrans->SetPos(pos);
448 if (iForegroundWindowTop)
450 pos = iForegroundWindowTop->Position();
452 iForegroundWindowTop->SetPos(pos);
455 TheClient->iWs.Flush();
456 User::After(TTimeIntervalMicroSeconds32(50000));
461 void CTAlphaChannel::DoMoveBehind()
463 TPoint pos = iBackgroundWindow->Position();
464 for (TInt i = 0; i<20; i++)
467 iBackgroundWindow->SetPos(pos);
469 TheClient->iWs.Flush();
470 User::After(TTimeIntervalMicroSeconds32(50000));
472 iBackgroundWindow->SetPos(TPoint(5,5));
475 void CTAlphaChannel::DoInvisibility()
478 if (iForegroundWindowBottom)
480 win = (RWindow*)(iForegroundWindowBottom->DrawableWin());
481 win->SetVisible(EFalse);
482 TheClient->iWs.Flush();
483 User::After(TTimeIntervalMicroSeconds32(1000000));
485 win->SetVisible(ETrue);
486 TheClient->iWs.Flush();
487 User::After(TTimeIntervalMicroSeconds32(1000000));
489 if (iForegroundWindowOpaque)
491 win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
492 win->SetVisible(EFalse);
493 TheClient->iWs.Flush();
494 User::After(TTimeIntervalMicroSeconds32(1000000));
496 win->SetVisible(ETrue);
497 TheClient->iWs.Flush();
498 User::After(TTimeIntervalMicroSeconds32(1000000));
500 if (iForegroundWindowSemiTrans)
502 win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
503 win->SetVisible(EFalse);
504 TheClient->iWs.Flush();
505 User::After(TTimeIntervalMicroSeconds32(1000000));
507 win->SetVisible(ETrue);
508 TheClient->iWs.Flush();
509 User::After(TTimeIntervalMicroSeconds32(1000000));
511 if (iForegroundWindowTrans)
513 win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
514 win->SetVisible(EFalse);
515 TheClient->iWs.Flush();
516 User::After(TTimeIntervalMicroSeconds32(1000000));
518 win->SetVisible(ETrue);
519 TheClient->iWs.Flush();
520 User::After(TTimeIntervalMicroSeconds32(1000000));
522 if (iForegroundWindowTop)
524 win = (RWindow*)(iForegroundWindowTop->DrawableWin());
525 win->SetVisible(EFalse);
526 TheClient->iWs.Flush();
527 User::After(TTimeIntervalMicroSeconds32(1000000));
529 win->SetVisible(ETrue);
530 TheClient->iWs.Flush();
531 User::After(TTimeIntervalMicroSeconds32(1000000));
536 @SYMTestCaseID GRAPHICS-WSERV-0328
538 @SYMTestCaseDesc Testing a Fading.
540 @SYMTestPriority High
542 @SYMTestStatus Implemented
545 Set fading parameters. Draw all graphics primitives and bitmaps with
546 various transparency .
548 @SYMTestExpectedResults
549 All windows should be drawn according their fading values.
552 void CTAlphaChannel::TestFading()
557 iText.Format(_L("Fading. %dX%d"), iBlackFading, iWhiteFading);
559 DrawTestWindowsNow();
561 User::After(TTimeIntervalMicroSeconds32(1000000 * 1));
563 DrawTestWindowsNow();
567 iText.Format(_L("Fading. %dX%d"), iBlackFading, iWhiteFading);
569 DrawTestWindowsNow();
575 @SYMTestCaseID GRAPHICS-WSERV-0329
577 @SYMTestCaseDesc Tests moving of foreground windows.
579 @SYMTestPriority High
581 @SYMTestStatus Implemented
584 Set fading parameters. Set position of foreground windows as tile .
586 @SYMTestExpectedResults
587 Foreground window has to be redrawn properly.
590 void CTAlphaChannel::TestMoving()
592 SetPositionConfiguration(ETiled);
594 SetPositionConfiguration(ETiled);
598 @SYMTestCaseID GRAPHICS-WSERV-0330
600 @SYMTestCaseDesc Tests moving of foreground windows.
602 @SYMTestPriority High
604 @SYMTestStatus Implemented
607 Set fading parameters. Moves foreground windows over the screen .
609 @SYMTestExpectedResults
610 Foreground window has to be redrawn properly.
614 void CTAlphaChannel::TestMovingOverlapping()
618 for (TInt i = 0; i < 20; i++)
620 if (iForegroundWindowOpaque)
622 pos = iForegroundWindowOpaque->Position();
624 iForegroundWindowOpaque->SetPos(pos);
626 if (iForegroundWindowTrans)
628 pos = iForegroundWindowTrans->Position();
630 iForegroundWindowTrans->SetPos(pos);
632 TheClient->iWs.Flush();
633 User::After(TTimeIntervalMicroSeconds32(50000));
638 @SYMTestCaseID GRAPHICS-WSERV-0331
640 @SYMTestCaseDesc Testing transparency factor for windows with alpha channel.
642 @SYMTestPriority High
644 @SYMTestStatus Implemented
647 Sets background colour with various level of transparency .
649 @SYMTestExpectedResults
650 Foreground window must be redrawn properly.
652 void CTAlphaChannel::TestChangingTransparencyFactor()
657 iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,255-i));
658 iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,i));
659 iForegroundWindowOpaque->DrawNow();
660 iForegroundWindowTrans->DrawNow();
666 iForegroundWindowOpaque->SetBackgroundColor(TRgb(0,255,0,i));
667 iForegroundWindowTrans->SetBackgroundColor(TRgb(0,255,0,255-i));
668 iForegroundWindowOpaque->DrawNow();
669 iForegroundWindowTrans->DrawNow();
670 User::After(TTimeIntervalMicroSeconds32(50000));// 20 frames per second
676 @SYMTestCaseID GRAPHICS-WSERV-0332
678 @SYMTestCaseDesc Testing redrawing of foreground windows while their positions and
679 invisibility have been changed.
681 @SYMTestPriority High
683 @SYMTestStatus Implemented
686 Sets position of the foreground windows as overlapping, tiled.
687 Change visability of semi transparent foreground window. .
689 @SYMTestExpectedResults
690 Foreground window must be redrawn properly.
693 void CTAlphaChannel::TestInvisibility()
695 RWindow* win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
696 SetPositionConfiguration(EOverlapping);
697 TheClient->iWs.Flush();
698 User::After(TTimeIntervalMicroSeconds32(1000000));
700 win->SetVisible(EFalse);
701 TheClient->iWs.Flush();
702 User::After(TTimeIntervalMicroSeconds32(1000000));
704 win->SetVisible(ETrue);
705 TheClient->iWs.Flush();
706 User::After(TTimeIntervalMicroSeconds32(1000000));
708 SetPositionConfiguration(ETiled);
713 @SYMTestCaseID GRAPHICS-WSERV-0333
715 @SYMTestCaseDesc Testing redrawing of foreground windows after a
716 background window has been moved.
718 @SYMTestPriority High
720 @SYMTestStatus Implemented
723 Sets position of the foreground windows as tiled.
724 Moves background window.
726 @SYMTestExpectedResults
727 Foreground windows must be redrawn properly.
729 void CTAlphaChannel::TestMoveUnderneath()
731 SetPositionConfiguration(ETiled);
735 @SYMTestCaseID GRAPHICS-WSERV-0334
737 @SYMTestCaseDesc Testing redrawing of foreground windows after a
738 background window has been moved.
740 @SYMTestPriority High
742 @SYMTestStatus Implemented
745 Sets different position of the foreground windows: tiled, overlapping.
746 Moves background window.
748 @SYMTestExpectedResults
749 Foreground windows has to be redrawn properly.
752 void CTAlphaChannel::TestMoveBehindInvisible()
754 SetPositionConfiguration(ETiled);
756 win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
757 win->SetVisible(EFalse);
758 win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
759 win->SetVisible(EFalse);
760 win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
761 win->SetVisible(EFalse);
762 TheClient->iWs.Flush();
766 SetPositionConfiguration(EOverlapping);
769 win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
770 win->SetVisible(ETrue);
771 win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
772 win->SetVisible(ETrue);
773 win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
774 win->SetVisible(ETrue);
775 TheClient->iWs.Flush();
778 @SYMTestCaseID GRAPHICS-WSERV-0335
780 @SYMTestCaseDesc Testing redrawing of foreground windows.
782 @SYMTestPriority High
784 @SYMTestStatus Implemented
787 Redraws background window
789 @SYMTestExpectedResults
790 Foreground windows should be redrawn properly, if background window
793 void CTAlphaChannel::TestRedrawBehind()
795 TheClient->iWs.Flush();
796 iBackgroundWindow->iState += 1;
797 iBackgroundWindow->DrawNow();
798 TheClient->iWs.Flush();
799 User::After(TTimeIntervalMicroSeconds32(1000000));
802 @SYMTestCaseID GRAPHICS-WSERV-0336
804 @SYMTestCaseDesc Testing transparency with RWsSprite class.
806 @SYMTestPriority High
808 @SYMTestStatus Implemented
811 Creates RBackedUpWindow window and moves it over transparent window
812 appears and dissapears set up window as transparent
814 @SYMTestExpectedResults
815 Must work with transparent windows.
818 void CTAlphaChannel::TestAnimationL()
820 for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
822 iArrWindow[ii]->StartAnimationL();
826 @SYMTestCaseID GRAPHICS-WSERV-0337
828 @SYMTestCaseDesc Testing transparency with RBackedUpWindow window class.
830 @SYMTestPriority High
832 @SYMTestStatus Implemented
835 Creates RBackedUpWindow window and moves it over transparent window
836 appears and dissapears set up transparent window as transparent
838 @SYMTestExpectedResults
839 Do not expect correct work of alpha channel with
840 RBackedUpWindow window class.
842 void CTAlphaChannel::TestBackedWindowL()
844 for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
846 iArrWindow[ii]->CreateBackedWindowL();
851 @SYMTestCaseID GRAPHICS-WSERV-0338
853 @SYMTestCaseDesc Implication of setting SetDrawOpaque on drawing with alpha channel.
855 @SYMTestPriority High
857 @SYMTestStatus Implemented
860 Change graphic context to opaque and none opaque and rewdraw all test windows
862 @SYMTestExpectedResults
863 must not impact on output with alpha channel
866 void CTAlphaChannel::TestEffectSetOpaque()
868 for(TInt ii = 0; ii < 3; ii++)
871 for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
873 iArrWindow[ii]->SetDrawOpaque(EFalse);
876 DrawTestWindowsNow();
877 User::After(TTimeIntervalMicroSeconds32(1000000));
879 for(TInt jj = 0; jj < iArrWindow.Count(); jj++)
881 iArrWindow[jj]->SetDrawOpaque(ETrue);
884 DrawTestWindowsNow();
885 User::After(TTimeIntervalMicroSeconds32(1000000));
890 @SYMTestCaseID GRAPHICS-WSERV-0339
892 @SYMTestCaseDesc Redrawing of child windows with transparency.
894 @SYMTestPriority High
896 @SYMTestStatus Implemented
899 Creates a few child windows with various levels of transparency.
900 Moves parent window over the screen.
901 @SYMTestExpectedResults
902 Child and parent windows must be redrawn properly
905 void CTAlphaChannel::TestChildWindowL()
907 SetPositionConfiguration(ETiled);
908 SetColourConfiguration(EVaryingColour);
909 DrawTestWindowsNow(ETrue);
910 TDisplayMode mode = EColor64K;
911 CTWinAlphaForeground* childWin[] = {NULL, NULL, NULL, NULL, NULL};
912 if (iForegroundWindowBottom)
914 childWin[0] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowBottom,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
915 childWin[0]->DrawNow();
917 if (iForegroundWindowOpaque)
919 childWin[1] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ETransparencyFactor);
920 childWin[1]->DrawNow();
922 if (iForegroundWindowSemiTrans)
924 childWin[2] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowSemiTrans,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ETransparencyAlpha);
925 childWin[2]->DrawNow();
927 if (iForegroundWindowTrans)
929 childWin[3] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowTrans,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
930 childWin[3]->DrawNow();
932 if (iForegroundWindowTop)
934 childWin[4] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowTop,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
935 childWin[4]->DrawNow();
937 TheClient->iWs.Flush();
939 User::After(TTimeIntervalMicroSeconds32(1000000));
949 @SYMTestCaseID GRAPHICS-WSERV-0340
951 @SYMTestCaseDesc Redrawing of multiple child windows with transparency.
953 @SYMTestPriority High
955 @SYMTestStatus Implemented
958 Creates multiple child windows with various levels of transparency.
959 Moves parent windows over the screen.
960 @SYMTestExpectedResults
961 Child and parent windows must be redrawn properly
964 void CTAlphaChannel::TestMultipleChildrenL()
966 SetPositionConfiguration(ETiled);
967 SetColourConfiguration(EVaryingColour);
968 TDisplayMode mode = EColor64K;
969 CTWinAlphaForeground* childWin[] = {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
970 if (iForegroundWindowBottom)
972 childWin[0] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(50,50),iForegroundWindowBottom,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ETransparencyFactor);
973 childWin[1] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(50,50),childWin[0],*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ENonTransparentAlpha);
974 childWin[0]->DrawNow();
975 childWin[1]->DrawNow();
977 if (iForegroundWindowOpaque)
979 childWin[4] = CTWinAlphaForeground::NewL(*this, TPoint(0,0),TSize(100,100),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ETransparencyAlpha);
980 childWin[5] = CTWinAlphaForeground::NewL(*this, TPoint(20,80),TSize(50,50),iForegroundWindowOpaque,*TheClient->iGc, &mode, TRgb(255, 255, 255,128), ENonTransparentAlpha);
981 childWin[6] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(60,60),childWin[4],*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
982 childWin[7] = CTWinAlphaForeground::NewL(*this, TPoint(20,20),TSize(50,50),childWin[6],*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
983 childWin[4]->DrawNow();
984 childWin[5]->DrawNow();
985 childWin[6]->DrawNow();
986 childWin[7]->DrawNow();
988 DrawTestWindowsNow(ETrue);
1003 @SYMTestCaseID GRAPHICS-WSERV-0341
1005 @SYMTestCaseDesc Test transparent window which positioned under opaque.
1007 @SYMTestPriority High
1009 @SYMTestStatus Implemented
1012 Creates an opaque window on the topt of transparent windows.
1013 Moves transparent windows over the screen.
1014 @SYMTestExpectedResults
1015 Transparent windows must be redrawn properly
1018 void CTAlphaChannel::TestTransparentMovingUnderOpaqueL()
1020 SetColourConfiguration(EVaryingColour);
1021 TDisplayMode mode = EColor64K;
1022 CTWinAlphaForeground* win = CTWinAlphaForeground::NewL(*this, TPoint(0,100),TSize(600,40),TheClient->iGroup,*TheClient->iGc, &mode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
1030 @SYMTestCaseID GRAPHICS-WSERV-0342
1032 @SYMTestCaseDesc Changing orinary position of the foreground windows.
1034 @SYMTestPriority High
1036 @SYMTestStatus Implemented
1039 Set ordinal position of foreground windows.
1040 @SYMTestExpectedResults
1041 Foreground windows must be redrawn properly
1044 void CTAlphaChannel::TestSetOrdinalPosition()
1046 SetColourConfiguration(EVaryingColour);
1047 SetPositionConfiguration(EOverlapping);
1048 DrawTestWindowsNow(ETrue);
1049 TheClient->iWs.Flush();
1050 User::After(TTimeIntervalMicroSeconds32(1000000));
1052 for (TInt i=0; i<3; i++)
1054 if (iForegroundWindowOpaque)
1056 win = (RWindow*)(iForegroundWindowOpaque->DrawableWin());
1057 win->SetOrdinalPosition(0);
1058 TheClient->iWs.Flush();
1059 User::After(TTimeIntervalMicroSeconds32(1000000));
1061 if (iForegroundWindowSemiTrans)
1063 win = (RWindow*)(iForegroundWindowSemiTrans->DrawableWin());
1064 win->SetOrdinalPosition(0);
1065 TheClient->iWs.Flush();
1066 User::After(TTimeIntervalMicroSeconds32(1000000));
1068 if (iForegroundWindowTrans)
1070 win = (RWindow*)(iForegroundWindowTrans->DrawableWin());
1071 win->SetOrdinalPosition(0);
1072 TheClient->iWs.Flush();
1073 User::After(TTimeIntervalMicroSeconds32(1000000));
1078 void CTAlphaChannel::RunTestCaseL(TInt aCurTestCase)
1080 User::After(TTimeIntervalMicroSeconds32(1000000 * 2));
1082 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
1083 switch (aCurTestCase)
1086 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1087 CreateForegroundWindowsL(iSizeForegroundWindow, EColor16MU);
1091 CreateForegroundWindowsL(iSizeForegroundWindow, EColor64K);
1092 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0339"));
1094 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1095 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0340"));
1096 TestMultipleChildrenL();
1097 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1098 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0342"));
1099 TestSetOrdinalPosition();
1103 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0336"));
1106 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0337"));
1107 TestBackedWindowL();
1110 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0338"));
1111 TestEffectSetOpaque();
1114 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1116 DrawTestWindowsNow();
1117 INFO_PRINTF1(_L("Anti-aliasing"));
1120 DrawTestWindowsNow();
1123 SetColourConfiguration(EVaryingColour);
1124 SetPositionConfiguration(EOverlapping);
1125 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
1127 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1128 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
1130 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1131 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0330"));
1132 TestMovingOverlapping();
1133 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1134 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0341"));
1135 TestMoveBehindInvisible();
1136 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1137 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0334"));
1138 TestTransparentMovingUnderOpaqueL();
1139 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1140 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0331"));
1142 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1143 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
1144 TestChangingTransparencyFactor();
1147 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0328"));
1152 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1154 SetDisplayModeConfiguration(EAll16MA);
1158 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1160 DrawTestWindowsNow();
1161 INFO_PRINTF1(_L("Anti-aliasing"));
1164 DrawTestWindowsNow();
1167 SetColourConfiguration(EVaryingColour);
1168 SetPositionConfiguration(EOverlapping);
1169 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0333"));
1170 TestMoveUnderneath();
1171 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1172 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
1174 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1175 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
1177 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1178 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
1180 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1181 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0331"));
1182 TestChangingTransparencyFactor();
1185 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0328"));
1189 SetDisplayModeConfiguration(EAllDifferent);
1190 SetColourConfiguration(EVaryingColour);
1191 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0333"));
1192 TestMoveUnderneath();
1193 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1194 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0335"));
1196 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1197 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0332"));
1199 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1200 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0329"));
1204 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0336"));
1208 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0337"));
1209 TestBackedWindowL();
1212 ((CTAlphaChannelStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0338"));
1213 TestEffectSetOpaque();
1216 ((CTAlphaChannelStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
1217 ((CTAlphaChannelStep*)iStep)->CloseTMSGraphicsStep();
1221 ((CTAlphaChannelStep*)iStep)->RecordTestResultL();
1224 /** Calculate foreground windows margin and create them*/
1225 void CTAlphaChannel::CreateForegroundWindowsL(const TSize& aSize, TDisplayMode aMode)
1227 TPoint pt = TPoint(5, 5);
1229 //creating foreground windows
1231 TDisplayMode dispMode = aMode;
1232 iForegroundWindowBottom = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0,128), ETransparencyFactor);
1233 iArrWindow.AppendL( iForegroundWindowBottom);
1235 //dispMode = EColor16MA;
1236 pt.iX += aSize.iWidth + KWindowIndention;
1238 iForegroundWindowOpaque = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 255), ETransparencyAlpha);
1239 iArrWindow.AppendL( iForegroundWindowOpaque);
1241 pt.iX += aSize.iWidth + KWindowIndention;
1242 //semi-transparent window
1243 iForegroundWindowSemiTrans = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 128), ETransparencyAlpha);
1244 iArrWindow.AppendL( iForegroundWindowSemiTrans);
1246 //transparent window
1247 pt.iX += aSize.iWidth + KWindowIndention;
1248 iForegroundWindowTrans = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0, 0), ETransparencyAlpha);
1249 iArrWindow.AppendL( iForegroundWindowTrans);
1252 pt.iX += aSize.iWidth + KWindowIndention;
1253 iForegroundWindowTop = CTWinAlphaForeground::NewL(*this, pt,aSize,TheClient->iGroup,*TheClient->iGc, &dispMode, TRgb(0, 255, 0,128), ENonTransparentAlpha);
1254 iArrWindow.AppendL( iForegroundWindowTop);
1257 void CTAlphaChannel::DestroyForegroundWindows()
1259 iArrWindow.ResetAndDestroy();
1260 iForegroundWindowBottom = NULL;
1261 iForegroundWindowOpaque = NULL;
1262 iForegroundWindowSemiTrans = NULL;
1263 iForegroundWindowTrans = NULL;
1264 iForegroundWindowTop = NULL;
1267 /** Draw all foreground windows */
1268 void CTAlphaChannel::DrawTestWindowsNow(TBool aDrawBackgroundWin)
1270 if(iBackgroundWindow && aDrawBackgroundWin)
1272 iBackgroundWindow->DrawNow();
1275 for(TInt ii = 0; ii < iArrWindow.Count(); ii++)
1277 iArrWindow[ii]->DrawNow();
1283 CTWinAlphaForeground* CTWinAlphaForeground::NewL(CTAlphaChannel& aTest, TPoint aPos, TSize aSize, CTWinBase *aParent, CWindowGc &aGc, TDisplayMode *aMode, TRgb aCol, TInt aTransparencyType)
1285 CTWinAlphaForeground* theWin = new(ELeave) CTWinAlphaForeground(aTest);
1287 theWin->ConstructL(*aParent);
1289 theWin->SetDisplayMode(*aMode);
1290 theWin->SetExtL(aPos, aSize);
1291 theWin->AssignGC(aGc);
1292 theWin->PrepareForDrawingL();
1294 // for hardware testing only we create an additional bitmap
1296 theWin->CreateBackgroundBitmapL(*aMode);
1299 RWindow* win = (RWindow*) (theWin->DrawableWin());
1300 win->SetShadowHeight(0);
1301 win->SetShadowDisabled(ETrue);
1302 switch (aTransparencyType)
1304 case ETransparencyFactor:
1306 win->SetTransparencyFactor(aCol);
1307 theWin->SetBackgroundColor(aCol);
1310 case ETransparencyAlpha:
1311 win->SetTransparencyAlphaChannel();
1312 // fall through into next case
1313 case ENonTransparentAlpha:
1315 theWin->SetBackgroundColor(aCol);
1324 CTWinAlphaForeground::~CTWinAlphaForeground()
1331 delete iBitmapBackground;
1332 delete iBitmapDeviceBackground;
1333 delete iBitmapContextBackground;
1336 CTWinAlphaForeground::CTWinAlphaForeground(CTAlphaChannel& aTest)
1342 void CTWinAlphaForeground::SetDisplayMode(TDisplayMode aDisplayMode)
1344 BaseWin()->SetRequiredDisplayMode(aDisplayMode);
1345 switch (aDisplayMode)
1348 iTitle1 = _L("256");
1351 iTitle1 = _L("64K");
1354 iTitle1 = _L("16MU");
1357 iTitle1 = _L("16MA");
1360 iTitle1 = _L("16MAP");
1368 void CTWinAlphaForeground::SetBackgroundColor(TRgb aRgb)
1370 switch (aRgb.Alpha())
1373 iTitle2 = _L(" trans ");
1376 iTitle2 = _L(" opaque ");
1380 iTitle2 = _L(" s-trans ");
1390 iBackgroundColor = aRgb;
1391 ((RWindow*) DrawableWin())->SetBackgroundColor(aRgb);
1394 void CTWinAlphaForeground::Draw()
1396 CBitmapContext* theGc = TheClient->iGc;
1397 ((CWindowGc*)theGc)->SetOpaque(iDrawOpaque);
1399 if(iBitmapContextBackground)
1402 theGc = iBitmapContextBackground;
1403 CleanBackgroundBitmap();
1406 theGc->UseFont(iTest.iFont1);
1409 theGc->SetFaded(EFalse);
1412 TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
1414 theGc->SetBrushStyle(iTest.iBrushStyle);
1415 if(iTest.iFont && iTest.iDrawText)
1417 theGc->DiscardFont();
1418 theGc->UseFont(iTest.iFont);
1421 theGc->SetFaded(iTest.iIsFading);
1423 // the factor and offset are calculated as follows:
1424 // iFadeMapFactor = iWhiteFading - iBlackFading;
1425 // iFadeMapOffset = iBlackFading;
1427 theGc->SetFadingParameters(iTest.iBlackFading, iTest.iWhiteFading); //black and white
1429 for(TInt ii = 0; ii < numRows - 1; ii++)
1431 theGc -> SetBrushStyle(iTest.iBrushStyle);
1433 TRect theRect = TRect(iCol, iRows[ii], Size().iWidth, iRows[ii + 1]);
1435 TRgb theBrush = iTest.GetBrush(ii);
1436 TRgb thePen = iTest.GetPen(ii);
1438 CGraphicsContext::TDrawMode theDrawMode = iTest.GetDrawMode(ii);
1440 theGc->SetBrushColor(theBrush);
1441 theGc->SetPenColor(thePen);
1442 theGc->SetDrawMode(theDrawMode);
1444 CGraphicsContext* theBitmapContext64K;
1445 CGraphicsContext* theBitmapContext16MA;
1446 CFbsBitmap* theBitmap64K;
1447 CFbsBitmap* theBitmap16MA;
1453 theBitmapContext64K = iTest.iBitmapContext64K_1;
1454 theBitmapContext16MA = iTest.iBitmapContext16MA_1;
1455 theBitmap64K = iTest.iBitmap64K_1;
1456 theBitmap16MA = iTest.iBitmap16MA_1;
1461 theBitmapContext64K = iTest.iBitmapContext64K_2;
1462 theBitmapContext16MA = iTest.iBitmapContext16MA_2;
1463 theBitmap64K = iTest.iBitmap64K_2;
1464 theBitmap16MA = iTest.iBitmap16MA_2;
1469 theBitmapContext64K = iTest.iBitmapContext64K_3;
1470 theBitmapContext16MA = iTest.iBitmapContext16MA_3;
1471 theBitmap64K = iTest.iBitmap64K_3;
1472 theBitmap16MA = iTest.iBitmap16MA_3;
1478 DrawTextInCell(*theGc, theRect);
1482 TRAP_IGNORE(iTest.DrawOffscreenBitmapsL(thePen, theBrush, theBitmapContext64K,
1483 theBitmapContext16MA, theBitmap64K, theBitmap16MA));
1484 DrawPrimitivesInCell(*theGc, theRect, theBitmap64K, theBitmap16MA);
1486 TheClient->iWs.Flush();
1489 theGc->DiscardFont();
1491 if(iBitmapContextBackground)
1493 theGc = TheClient->iGc;
1494 theGc->BitBlt(TPoint(0, 0), iBitmapBackground);
1498 void CTWinAlphaForeground::SetPoligonLocation(const TPoint &ptOffset)
1500 TRect rect = TRect(iTest.iTriangleSize);
1501 (*iPolygon)[0] = rect.iTl + ptOffset;
1502 (*iPolygon)[1] = TPoint(rect.iTl.iX, rect.iBr.iY) + ptOffset;
1503 (*iPolygon)[2] = rect.iBr + ptOffset;
1506 /** Define boundary of the table*/
1507 void CTWinAlphaForeground::CalculateTableMargin()
1509 TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
1510 iRows[0] = iTest.iFirstCellHeight;
1511 TInt theRowHeight = (Size().iHeight - iTest.iFirstCellHeight) / 3;
1512 for(TInt ii = 1; ii < numRows; ii++)
1514 iRows[ii] = iRows[ii-1] + theRowHeight;
1518 /** Draw a table which comprises 3 rows: for transparent, semi-transparent
1522 void CTWinAlphaForeground::DrawTable(CBitmapContext& aGc) const
1524 TInt numRows = sizeof(iRows) / sizeof(iRows[0]) ;
1526 aGc.SetPenColor(iTest.iPenTable);
1528 for (TInt ii = 0; ii < numRows - 1; ii++)
1531 TPoint pt1 = TPoint(0, iRows[ii]);
1532 TPoint pt2 = TPoint(Size().iWidth, iRows[ii]);
1534 aGc.DrawLine(pt1, pt2);
1538 TPoint pt3 = TPoint(0, iRows[ii]) + TPoint(2,(iRows[1] - iRows[0]) / 2);
1541 case 0: iBuf = _L("o"); break;
1542 case 1: iBuf = _L("s"); break;
1543 case 2: iBuf = _L("t"); break;
1544 default : iBuf = _L(""); break;
1546 aGc.DrawText(iBuf, pt3);
1551 TPoint pt3 = TPoint(iCol, iRows[0]) + TPoint(1,-2);
1552 TBuf<32> text = iTitle1;
1554 aGc.DrawText(text, pt3);
1556 TPoint pt1 = TPoint(iCol, 0);
1557 TPoint pt2 = TPoint(iCol, Size().iHeight);
1558 aGc.DrawLine(pt1, pt2);
1563 /** Draw truetype font to check anti-aliasing*/
1564 void CTWinAlphaForeground::DrawTextInCell(CBitmapContext& aGc, const TRect& aRect)
1566 TPoint pt(aRect.iTl.iX, aRect.iBr.iY);
1567 pt += TPoint(2, -10);
1569 aGc.DrawText(_L("ABCD"), pt);
1572 /** Draw graphics primitive in a cell:
1573 rectangle, ellipse, triangle, a few lines, bitmaps
1576 void CTWinAlphaForeground::DrawPrimitivesInCell(CBitmapContext& aGc, const TRect& aRect,
1577 CFbsBitmap* aBitmap64K, CFbsBitmap* aBitmap16MA)
1579 TRect theCellRect = aRect;
1580 theCellRect.Shrink(1, 1);
1583 TRect rect = TRect(iTest.iRectangleSize);
1584 rect.Move(theCellRect.iTl);
1588 rect = TRect(iTest.iEllipseSize);
1589 rect.Move(theCellRect.iTl + TPoint(iTest.iRectangleSize.iWidth + 5, 0));
1590 aGc.DrawEllipse(rect);
1593 TPoint pt = TPoint(rect.iBr.iX, rect.iTl.iY) + TPoint(5, 0);
1594 SetPoligonLocation(pt);
1595 aGc.DrawPolygon(iPolygon);
1598 pt = pt + TPoint (((*iPolygon)[2]).iX - ((*iPolygon)[0]).iX, 0) + TPoint(5, 2);
1599 rect = TRect(iTest.iTriangleSize);
1601 aGc.DrawLine(rect.iTl, TPoint(rect.iTl.iX, rect.iBr.iY));
1602 aGc.DrawLine(TPoint(rect.iTl.iX, rect.iBr.iY), rect.iBr);
1603 aGc.DrawLine(rect.iBr, TPoint(rect.iBr.iX, rect.iTl.iY));
1604 aGc.DrawLine(TPoint(rect.iBr.iX, rect.iTl.iY), rect.iTl);
1605 aGc.DrawLine(rect.iTl, rect.iBr);
1606 aGc.DrawLine(TPoint(rect.iBr.iX, rect.iTl.iY), TPoint(rect.iTl.iX, rect.iBr.iY));
1609 aGc.SetBrushStyle(CGraphicsContext::ENullBrush);
1610 pt = TPoint(theCellRect.iTl.iX, rect.iBr.iY) + TPoint(0, 5);
1613 aGc.BitBlt(pt, aBitmap64K);
1614 pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
1616 aGc.BitBltMasked(pt,
1617 aBitmap64K, TRect(aBitmap64K->SizeInPixels()),
1618 iTest.iBitmapGray256Mask, EFalse);
1619 pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
1621 aGc.BitBltMasked(pt,
1622 aBitmap64K, TRect(aBitmap64K->SizeInPixels()),
1623 iTest.iBitmapMask, EFalse);
1625 pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
1630 aGc.BitBlt(pt, aBitmap16MA);
1632 pt = pt + TPoint( aBitmap16MA->SizeInPixels().iWidth, 0) + TPoint(2, 0);
1634 aGc.BitBltMasked(pt,
1635 aBitmap16MA, TRect(aBitmap16MA->SizeInPixels()),
1636 iTest.iBitmapGray256Mask, EFalse);
1638 pt = pt + TPoint( aBitmap16MA->SizeInPixels().iWidth, 0) + TPoint(2,0);
1640 pt = pt + TPoint( 0, aBitmap16MA->SizeInPixels().iHeight);
1643 pt.iX = aRect.iTl.iX + 2;
1648 TSize size = aBitmap64K->SizeInPixels();
1649 TRect srcRect(TPoint(0,0),size);
1651 TRect destRect(pt - TPoint(0, 8), size);
1652 aGc.DrawBitmap(destRect, aBitmap64K, srcRect);
1653 pt = pt + TPoint( size.iWidth, 0) + TPoint(2, 0);
1656 destRect.Move(TPoint(aBitmap64K->SizeInPixels().iWidth + 8, 0));
1657 ((CWindowGc&) aGc).DrawBitmapMasked(destRect,
1658 aBitmap64K, srcRect,
1659 iTest.iBitmapGray256Mask, EFalse);
1660 pt = pt + TPoint( aBitmap64K->SizeInPixels().iWidth, 0) + TPoint(2, 0);
1664 aGc.DrawText(iTest.iText, pt);
1667 ((CWindowGc&) aGc).DrawTextVertical(iTest.iText, pt, ETrue);
1671 /** calculate table's size and size of graphics primitieves */
1672 void CTWinAlphaForeground::PrepareForDrawingL()
1674 iCol = iTest.iFirstCellWidth;
1676 CalculateTableMargin();
1679 iPolygon = new (ELeave) CArrayFixFlat<TPoint> (3);
1680 TRect rect = TRect(iTest.iTriangleSize);
1681 iPolygon->AppendL(rect.iTl);
1682 iPolygon->AppendL(TPoint(rect.iTl.iX, rect.iBr.iY));
1683 iPolygon->AppendL(rect.iBr);
1686 /** Bitmap is intended to use on target only*/
1687 void CTWinAlphaForeground::CreateBackgroundBitmapL(const TDisplayMode& aDispMode)
1689 ASSERT(!iBitmapBackground);
1691 TSize size = Size();
1693 iBitmapBackground = new (ELeave) CFbsBitmap ;
1694 iBitmapBackground->Create(size,aDispMode);
1696 iBitmapDeviceBackground = CFbsBitmapDevice::NewL(iBitmapBackground);
1697 CGraphicsContext *&theGc = (CGraphicsContext*&)iBitmapContextBackground;
1698 iBitmapDeviceBackground->CreateContext(theGc);
1701 void CTWinAlphaForeground::CleanBackgroundBitmap()
1703 ASSERT(iBitmapBackground);
1705 TRect rect = TRect(iBitmapBackground->SizeInPixels());
1706 iBitmapContextBackground->SetBrushColor(iBackgroundColor);
1707 iBitmapContextBackground->SetPenColor(iBackgroundColor);
1708 iBitmapContextBackground->SetBrushStyle(CGraphicsContext::ESolidBrush);
1709 iBitmapContextBackground->DrawRect(rect);
1712 void CTWinAlphaForeground::StartAnimationL()
1715 RWsSprite theSprite;
1717 RDrawableWindow *theWin = DrawableWin();
1719 theSprite=RWsSprite(TheClient->iWs);
1720 TPoint theSpritePos = TPoint(10, 10);
1722 theSprite.Construct(*theWin, theSpritePos, theFlags);
1723 TDisplayMode dispMode = EColor256;
1724 //create a ball bitmap for animation
1725 CFbsBitmap* theBitmapBall= new (ELeave) CFbsBitmap;
1726 theBitmapBall->Create(TSize(32, 32), dispMode);
1727 CFbsBitmapDevice* theBitmapDeviceBall = CFbsBitmapDevice::NewL(theBitmapBall);
1728 CGraphicsContext* theBitmapContextBall = NULL;
1729 theBitmapDeviceBall->CreateContext(theBitmapContextBall);
1731 theBitmapContextBall->SetBrushColor(TRgb(128, 0, 255));
1732 theBitmapContextBall->SetPenColor(TRgb(128, 0, 255));
1733 theBitmapContextBall->SetBrushStyle(CGraphicsContext::ESolidBrush);
1734 theBitmapContextBall->DrawRect(theBitmapBall->SizeInPixels());
1736 //create a ball's mask
1737 CFbsBitmap* theBitmapMask= new (ELeave) CFbsBitmap;
1738 theBitmapMask->Create(TSize(32, 32), dispMode);
1739 CFbsBitmapDevice* theBitmapDeviceMask = CFbsBitmapDevice::NewL(theBitmapMask);
1740 CGraphicsContext* theBitmapContextMask = NULL;
1741 theBitmapDeviceMask->CreateContext(theBitmapContextMask);
1743 theBitmapContextMask->SetBrushColor(TRgb(0, 0, 0));
1744 theBitmapContextMask->SetPenColor(TRgb(0, 0, 0));
1745 theBitmapContextMask->SetBrushStyle(CGraphicsContext::ESolidBrush);
1746 theBitmapContextMask->DrawRect(theBitmapMask->SizeInPixels());
1748 theBitmapContextMask->SetBrushColor(TRgb(255, 255, 255));
1749 theBitmapContextMask->SetPenColor(TRgb(255, 255, 255));
1750 TRect rect = TRect(theBitmapMask->SizeInPixels());
1751 theBitmapContextMask->SetPenSize(TSize(6,6));
1752 theBitmapContextMask->DrawLine(rect.iTl, rect.iBr);
1753 theBitmapContextMask->DrawLine(TPoint(0, rect.iBr.iY), TPoint(rect.iBr.iX, 0));
1755 //create a second ball's mask
1756 CFbsBitmap* theBitmapMask1= new (ELeave) CFbsBitmap;
1757 theBitmapMask1->Create(TSize(32, 32), dispMode);
1758 CFbsBitmapDevice* theBitmapDeviceMask1 = CFbsBitmapDevice::NewL(theBitmapMask1);
1759 CGraphicsContext* theBitmapContextMask1 = NULL;
1760 theBitmapDeviceMask1->CreateContext(theBitmapContextMask1);
1762 theBitmapContextMask1->SetBrushColor(TRgb(0, 0, 0));
1763 theBitmapContextMask1->SetPenColor(TRgb(0, 0, 0));
1764 theBitmapContextMask1->SetBrushStyle(CGraphicsContext::ESolidBrush);
1765 theBitmapContextMask1->DrawRect(theBitmapMask1->SizeInPixels());
1767 theBitmapContextMask1->SetBrushColor(TRgb(255, 255, 255));
1768 theBitmapContextMask1->SetPenColor(TRgb(255, 255, 255));
1769 rect = TRect(theBitmapMask1->SizeInPixels());
1770 theBitmapContextMask1->SetPenSize(TSize(6,6));
1771 theBitmapContextMask1->DrawLine(TPoint(rect.iBr.iX/2, 0), TPoint(rect.iBr.iX/2, rect.iBr.iY));
1772 theBitmapContextMask1->DrawLine(TPoint(0, rect.iBr.iY/2), TPoint(rect.iBr.iX, rect.iBr.iY/2));
1775 TSpriteMember theSpriteList;
1776 theSpriteList.iBitmap = theBitmapBall;
1777 theSpriteList.iMaskBitmap = theBitmapMask;
1778 theSpriteList.iInvertMask = EFalse;
1779 theSpriteList.iDrawMode = CGraphicsContext::EDrawModePEN;
1780 theSpriteList.iOffset = TPoint(0, 0);
1781 theSpriteList.iInterval = TTimeIntervalMicroSeconds32(100000);
1782 theSprite.AppendMember(theSpriteList);
1784 TSpriteMember theSpriteList1;
1785 theSpriteList1.iBitmap = theBitmapBall;
1786 theSpriteList1.iMaskBitmap = theBitmapMask1;
1787 theSpriteList1.iInvertMask = EFalse;
1788 theSpriteList1.iDrawMode = CGraphicsContext::EDrawModePEN;
1789 theSpriteList1.iOffset = TPoint(0, 0);
1790 theSpriteList1.iInterval = TTimeIntervalMicroSeconds32(100000);
1792 theSprite.AppendMember(theSpriteList1);
1794 theSprite.Activate();
1796 for(TInt ii = 0; ii < 20; ii++)
1798 theSpritePos += TPoint(3, 8);
1799 theSprite.SetPosition(theSpritePos);
1800 TheClient->iWs.Flush();
1801 User::After(TTimeIntervalMicroSeconds32(50000));
1804 for(TInt jj = 0; jj < 20; jj++)
1806 theSpritePos -= TPoint(0, 8);
1807 theSprite.SetPosition(theSpritePos);
1808 TheClient->iWs.Flush();
1809 User::After(TTimeIntervalMicroSeconds32(50000));
1814 delete theBitmapContextBall;
1815 delete theBitmapDeviceBall;
1817 delete theBitmapBall;
1819 delete theBitmapMask;
1820 delete theBitmapContextMask;
1821 delete theBitmapDeviceMask;
1823 delete theBitmapMask1;
1824 delete theBitmapContextMask1;
1825 delete theBitmapDeviceMask1;
1830 void CTWinAlphaForeground::CreateBackedWindowL()
1832 RBackedUpWindow theBackedWindow(TheClient->iWs);
1833 CleanupClosePushL(theBackedWindow);
1835 TDisplayMode theDisplayMode = EColor16MA;
1837 RWindow* theWin = (RWindow*) DrawableWin();
1839 theBackedWindow.Construct(*theWin,theDisplayMode, ENullWsHandle);
1841 TPoint pos =TPoint(10, 10);
1842 TSize size = theWin->Size();
1843 size.SetSize(size.iWidth / 5, size.iHeight/10);
1845 theBackedWindow.SetExtentErr(pos, size);
1846 theBackedWindow.SetOrdinalPosition(0);
1849 //draw to backed window
1850 TRgb color = TRgb(255, 0, 128);
1851 TInt bitmapHandle = theBackedWindow.BitmapHandle();
1852 CFbsBitmap bitmapWin;
1853 bitmapWin.Duplicate(bitmapHandle);
1854 //Leave poss here - theBackedWindow could leak
1855 CFbsBitmapDevice* theBitmapDevice = CFbsBitmapDevice::NewL(&bitmapWin);
1856 CGraphicsContext* theBitmapContext = NULL;
1857 theBitmapDevice->CreateContext(theBitmapContext);
1858 theBitmapContext->SetBrushColor(color);
1859 theBitmapContext->SetPenColor(color);
1860 theBitmapContext->SetBrushStyle(CGraphicsContext::ESolidBrush);
1861 theBitmapContext->DrawRect(TRect(bitmapWin.SizeInPixels()));
1863 color = TRgb(0, 0, 0);
1864 theBitmapContext->SetPenColor(color);
1865 for(TInt kk = 0; kk < bitmapWin.SizeInPixels().iWidth; kk += 8)
1867 theBitmapContext->DrawLine(TPoint(kk, 0), TPoint(kk, bitmapWin.SizeInPixels().iHeight));
1871 theBackedWindow.Activate();
1872 TheClient->iWs.Flush();
1873 User::After(TTimeIntervalMicroSeconds32(500000));
1876 theBackedWindow.SetVisible(EFalse);
1877 TheClient->iWs.Flush();
1878 User::After(TTimeIntervalMicroSeconds32(500000));
1879 theBackedWindow.SetVisible(ETrue);
1880 TheClient->iWs.Flush();
1882 for(TInt ii = 0; ii < 7; ii++)
1884 User::After(TTimeIntervalMicroSeconds32(100000));
1888 theBackedWindow.SetExtentErr(pos, size);
1889 TheClient->iWs.Flush();
1892 User::After(TTimeIntervalMicroSeconds32(500000));
1894 //transparent color. don't expect it to work
1898 theBackedWindow.SetExtentErr(pos, size);
1899 color = TRgb(255, 255, 128, 128);
1900 theBitmapContext->SetBrushColor(color);
1901 theBitmapContext->SetPenColor(color);
1902 theBitmapContext->DrawRect(TRect(bitmapWin.SizeInPixels()));
1903 TheClient->iWs.Flush();
1904 User::After(TTimeIntervalMicroSeconds32(500000));
1906 //semi-transparent color
1909 theBackedWindow.SetExtentErr(pos, size);
1910 color = TRgb(255, 255, 128, 255);
1911 theBitmapContext->SetBrushColor(color);
1912 theBitmapContext->SetPenColor(color);
1913 TheClient->iWs.Flush();
1914 User::After(TTimeIntervalMicroSeconds32(500000));
1917 CleanupStack::PopAndDestroy(); //bitmapWin
1918 delete theBitmapContext;
1919 delete theBitmapDevice;
1924 //-------------------
1925 void CTWinAlpha::Draw()
1927 CBitmapContext* theGc = TheClient->iGc;
1928 TSize size = Size();
1930 for(TInt ii = 0; ii < size.iHeight; ii += (20+iState))
1932 theGc->DrawLine(TPoint(0, ii), TPoint(size.iWidth, ii));
1936 __WS_CONSTRUCT_STEP__(AlphaChannel)