Update contrib.
1 // Copyright (c) 2006-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 // The fix enables the fading effect with alpha-blending, which was not applied bofore.
15 // The test will load a bitmap and two different masks: on/off and alpha-blend.
16 // The bitmap will be masked with these masks and displayed before and after
17 // setting the fading effect.
18 // All different colour modes are being tested for both mask types.
19 // The test will check the colour of a specific pixel in the scene before and after the
20 // fading. The higher values in the After circle means that it has been highlighted.
21 // The result will be printed in wstest log file.
28 @internalComponent - Internal Symbian test code
31 #include "TFADINGBITMAP.H"
33 //===================================================
34 // CBaseWin Declaration
35 //===================================================
37 CBaseWin::CBaseWin(): CTWin()
50 void CBaseWin::ConstructWinL(TPoint aPos, TSize aSize, TBool aVisible)
52 /*** Setting up the window ***/
54 SetUpL(aPos, aSize, TheClient->iGroup, *TheClient->iGc, aVisible);
55 Win()->SetBackgroundColor(TRgb(20, 80, 20)); // dark green background
56 BaseWin()->SetRequiredDisplayMode(EColor64K);
58 /*** 24 bit bitmap ***/
59 // the original 24b bitmap to mask
60 iTempBitmap = new (ELeave) CFbsBitmap();
61 User::LeaveIfError(iTempBitmap->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles24b));
62 iBitmap = new (ELeave) CFbsBitmap();
65 iMaskGray2 = new (ELeave) CFbsBitmap();
66 User::LeaveIfError(iMaskGray2->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles_mask2b));
68 /*** alpha-blend mask ***/
69 // holds the 24bit copy of the alpha blend mask which will be
70 // copied into the proper Gray256 mask, iMaskGray256.
71 iTempMask = new (ELeave) CFbsBitmap();
72 User::LeaveIfError(iTempMask->Load(_L("Z:\\WSTEST\\WSAUTOTEST.MBM"), EMbmWsautotestCircles_mask256));
73 // alpha blend mask; copying its data from iTempMask
74 iMaskGray256 = new (ELeave) CFbsBitmap();
75 User::LeaveIfError(iMaskGray256->Create(iTempBitmap->SizeInPixels(),EGray256));
76 CFbsBitmapDevice *dev = CFbsBitmapDevice::NewL(iMaskGray256);
77 CleanupStack::PushL(dev);
79 User::LeaveIfError(dev->CreateContext(gc));
80 // performing the copying here
81 gc->BitBlt(TPoint(0,0), iTempMask);
96 _LIT(KMyFontName,"Swiss");
97 TFontSpec myFontSpec = TFontSpec(KMyFontName,16); // to get smallest Swiss font
98 TFontStyle style = TFontStyle (EPostureUpright, EStrokeWeightBold, EPrintPosNormal);
99 myFontSpec.iFontStyle = style;
100 User::LeaveIfError(TheClient->iScreen->GetNearestFontInPixels(myFont, myFontSpec));
101 iGc->UseFont(myFont);
102 iGc->SetPenStyle(CGraphicsContext::ESolidPen);
103 iGc->SetPenColor(TRgb(255, 255, 255));
106 iGc->DrawText(_L("Fading = OFF"), TPoint(130,15));
107 iGc->DrawText(_L("Fading = ON"), TPoint(275,15));
108 iGc->DrawText(_L("Alpha blend"), TPoint(15,90));
109 iGc->DrawText(_L("on/off mask"), TPoint(15,190));
110 TBuf <30> displayMode(_L("Display Mode = "));
111 displayMode.Append(iMode);
112 iGc->DrawText(displayMode, TPoint(385,100));
114 /*** drawing bitmap with its on/off mask and alpha-blending
115 before and after fading ***/
116 iGc->BitBltMasked(TPoint(140,25), iBitmap,
117 TRect(0,0,100,100), iMaskGray256, EFalse);
118 // Save the pixel colour of a pixel on the outer ring of the circle
119 // before fading enabled.
120 TheClient->iScreen->GetPixel(iNonFadedPixel, TPoint(190,30));
122 iGc->SetFaded(ETrue);
123 iGc->BitBltMasked(TPoint(270,25), iBitmap,
124 TRect(0,0,100,100), iMaskGray256, EFalse);
125 // Save the pixel colour of a pixel on the outer ring of the circle
126 // after fading enabled.
127 TheClient->iScreen->GetPixel(iFadedPixel, TPoint(320,30));
129 iGc->SetFaded(EFalse);
131 iGc->BitBltMasked(TPoint(140,125), iBitmap,
132 TRect(0,0,100,100), iMaskGray2, EFalse);
133 iGc->SetFaded(ETrue);
134 iGc->BitBltMasked(TPoint(270,125), iBitmap,
135 TRect(0,0,100,100), iMaskGray2, EFalse);
136 iGc->SetFaded(EFalse);
139 TheClient->iScreen->ReleaseFont(myFont);
143 //===================================================
144 // CTFadingBitmap Definition
145 //===================================================
147 CTFadingBitmap::CTFadingBitmap(CTestStep* aStep):
148 CTWsGraphicsBase(aStep), iTestResult(ETrue)
152 CTFadingBitmap::~CTFadingBitmap()
157 void CTFadingBitmap::TestFadingL()
160 TDisplayMode modes[] =
162 EGray2, EGray4, EGray16, EGray256,
163 EColor16, EColor256, EColor4K, EColor64K,
164 EColor16M, EColor16MU, EColor16MA, EColor16MAP
167 TBuf <12> modesTxt []=
169 _L("EGray2"), _L("EGray4"), _L("EGray16"), _L("EGray256"),
170 _L("EColor16"), _L("EColor256"), _L("EColor4K"), _L("EColor64K"),
171 _L("EColor16M"), _L("EColor16MU"), _L("EColor16MA"), _L("EColor16MAP")
175 for( int i = 0; i < 12; i++)
177 testTxt.Format(modesTxt[i]);
178 INFO_PRINTF1(testTxt);
179 // Here we copy the content of the temp bitmap, which holds the test bitmap,
180 // into the bitmap created with alternating color depths.
181 User::LeaveIfError(iBgWin->iBitmap->Create(iBgWin->iTempBitmap->SizeInPixels(), modes[i]));
182 CFbsBitmapDevice *dev = CFbsBitmapDevice::NewL(iBgWin->iBitmap);
183 CleanupStack::PushL(dev);
185 User::LeaveIfError(dev->CreateContext(gc));
186 // performing the copying here
187 gc->BitBlt(TPoint(0,0), iBgWin->iTempBitmap);
188 // setting the mode text to display it
189 iBgWin->iMode = modesTxt[i];
190 // draws the bitmap on screen
201 // Here the colours of pixels before and after fading are printed in wstest log
202 testTxt.Format(_L("Nonfaded circle - color of the outside ring: R=%d G=%d B=%d"), iBgWin->iNonFadedPixel.Red(), iBgWin->iNonFadedPixel.Green(), iBgWin->iNonFadedPixel.Blue());
203 INFO_PRINTF1(testTxt);
204 testTxt.Format(_L("Faded circle - color of the outside ring: R=%d G=%d B=%d"), iBgWin->iFadedPixel.Red(), iBgWin->iFadedPixel.Green(), iBgWin->iFadedPixel.Blue());
205 INFO_PRINTF1(testTxt);
207 // Checks if the colors are the same before and after the fading.
208 // The color will be the same only in EGray2 and EGray4 as there are no enough
209 // color variations to represent the fading and nonfading effects.
211 iBgWin->iNonFadedPixel.Red() == iBgWin->iFadedPixel.Red() &&
212 iBgWin->iNonFadedPixel.Green() == iBgWin->iFadedPixel.Green() &&
213 iBgWin->iNonFadedPixel.Blue() == iBgWin->iFadedPixel.Blue() &&
214 modes[i] != EGray2 && modes[i] != EGray4)
215 iTestResult = EFalse;
219 void CTFadingBitmap::ConstructL()
221 // construct the base window of the test in the background
222 TSize scrSize = TSize(TheClient->iScreen->SizeInPixels());
223 iBgWin = new (ELeave) CBaseWin();
224 iBgWin->ConstructWinL(TPoint(0,0), scrSize, ETrue);
227 void CTFadingBitmap::RunTestCaseL(TInt aCurTestCase)
229 ((CTFadingBitmapStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
234 @SYMTestCaseID GRAPHICS-WSERV-0566
236 ((CTFadingBitmapStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0566"));
238 // Fails or passes the test
243 ((CTFadingBitmapStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
244 ((CTFadingBitmapStep*)iStep)->CloseTMSGraphicsStep();
247 ((CTFadingBitmapStep*)iStep)->RecordTestResultL();
250 __WS_CONSTRUCT_STEP__(FadingBitmap)