sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This file is part of manual test (group\inc113743.mmp) to check Wserv behaviour when sl@0: // exposing a transparent window that is obscured by some opaque child window above it. sl@0: // Without the fix, that transparent window will be drawn as opaque window sl@0: // because its transparent regions is null (not re-created due to its update flag is not sl@0: // set as it is not traceable via transparent regions linked list of windows above it. sl@0: // Some illustration when the situation will trigger the defect (side view), sl@0: // ---- Child (opaque) sl@0: // ---------- Parent (transparent) sl@0: // ---- Other transparent window obscured by opaque child sl@0: // This defect is only reproducable when window shadowing is not used, so it cannot be sl@0: // tested from standard Wserv test framework. sl@0: // @SYMTestCaseID GRAPHICS-WSERV-0450 sl@0: // @SYMDEF INC113743 sl@0: // @SYMTestCaseDesc Perform test on Wserv behaviour in exposing transparent windows which is obscured indirectly by opaque child window sl@0: // @SYMTestPriority High sl@0: // @SYMTestStatus Implemented sl@0: // @SYMTestActions Create opaque and transparent windows in the following dimension and z-order sl@0: // ---- opaque child sl@0: // ---------- transparent parent sl@0: // ---- other transparent underneath obscured and non traceable via transparent parent iTransparentRegions sl@0: // and then make transparent parent window invisible sl@0: // @SYMTestExpectedResults The expected result are: other transparent window underneath is exposed and redrawn properly not becoming opaque sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #define ENullWsHandle 0xffffffff sl@0: sl@0: void MainL() sl@0: { sl@0: const TSize KTestSize(320,240); sl@0: const TSize KHalfSize(160,240); sl@0: const TInt KScreenNo = 1; sl@0: sl@0: RRegion shape; sl@0: shape.AddRect(TRect(0,0,160,120)); sl@0: shape.AddRect(TRect(160,120,320,240)); sl@0: CleanupClosePushL(shape); sl@0: sl@0: RWsSession ws; sl@0: User::LeaveIfError(ws.Connect()); sl@0: CleanupClosePushL(ws); sl@0: sl@0: CWsScreenDevice* scr = new(ELeave) CWsScreenDevice(ws); sl@0: CleanupStack::PushL(scr); sl@0: User::LeaveIfError(scr->Construct(KScreenNo)); sl@0: TDisplayMode displayMode = scr->DisplayMode(); sl@0: sl@0: CWindowGc* gc = NULL; sl@0: User::LeaveIfError(scr->CreateContext(gc)); sl@0: CleanupStack::PushL(gc); sl@0: sl@0: RWindowGroup group(ws); sl@0: User::LeaveIfError(group.Construct(0x0badface, ETrue)); sl@0: CleanupClosePushL(group); sl@0: sl@0: // create transparent window underneath that will be obscured by some opaque child window above it sl@0: RWindow transWinUnderneath(ws); sl@0: User::LeaveIfError(transWinUnderneath.Construct(group, ENullWsHandle)); sl@0: CleanupClosePushL(transWinUnderneath); sl@0: transWinUnderneath.SetShadowDisabled(ETrue); sl@0: transWinUnderneath.SetExtent(TPoint(0,0),KTestSize/*KHalfSize*/); sl@0: transWinUnderneath.SetTransparencyAlphaChannel(); sl@0: transWinUnderneath.SetRequiredDisplayMode(EColor64K); sl@0: transWinUnderneath.SetBackgroundColor(TRgb(255,0,0,128)); sl@0: transWinUnderneath.SetShape(shape); sl@0: transWinUnderneath.Activate(); sl@0: transWinUnderneath.Invalidate(); sl@0: transWinUnderneath.BeginRedraw(); sl@0: transWinUnderneath.EndRedraw(); sl@0: ws.Flush(); sl@0: sl@0: User::After(1*1000*1000); sl@0: sl@0: // save the reference image (semi-transparent red window) sl@0: CFbsBitmap* refImage = new(ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(refImage); sl@0: User::LeaveIfError(refImage->Create(KTestSize, displayMode)); sl@0: scr->CopyScreenToBitmap(refImage); sl@0: sl@0: // create transparent window parent which will have opaque child sl@0: RWindow transWinParent(ws); sl@0: User::LeaveIfError(transWinParent.Construct(group, ENullWsHandle)); sl@0: CleanupClosePushL(transWinParent); sl@0: transWinParent.SetShadowDisabled(ETrue); sl@0: transWinParent.SetExtent(TPoint(0,0),KTestSize); sl@0: transWinParent.SetTransparencyAlphaChannel(); sl@0: transWinParent.SetRequiredDisplayMode(EColor64K); sl@0: transWinParent.SetBackgroundColor(TRgb(255,255,255,0)); sl@0: transWinParent.Activate(); sl@0: sl@0: transWinParent.Invalidate(); sl@0: transWinParent.BeginRedraw(); sl@0: transWinParent.EndRedraw(); sl@0: ws.Flush(); sl@0: sl@0: // create opaque child window that obscure transparent window underneath (not its parent) sl@0: RWindow opaqueWinChild(ws); sl@0: User::LeaveIfError(opaqueWinChild.Construct(transWinParent, ENullWsHandle)); sl@0: CleanupClosePushL(opaqueWinChild); sl@0: opaqueWinChild.SetExtent(TPoint(0,0),KTestSize/*KHalfSize*/); sl@0: opaqueWinChild.SetRequiredDisplayMode(EColor64K); sl@0: opaqueWinChild.SetShape(shape); sl@0: opaqueWinChild.Activate(); sl@0: sl@0: opaqueWinChild.Invalidate(); sl@0: opaqueWinChild.BeginRedraw(); sl@0: gc->Activate(opaqueWinChild); sl@0: gc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: gc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: gc->SetBrushColor(KRgbGreen); sl@0: gc->Clear(); sl@0: gc->SetBrushColor(KRgbBlue); sl@0: gc->DrawEllipse(KTestSize/*KHalfSize*/); sl@0: gc->Deactivate(); sl@0: opaqueWinChild.EndRedraw(); sl@0: ws.Flush(); sl@0: sl@0: User::After(1*1000*1000); sl@0: sl@0: // preform the test by making transparent window parent invisible sl@0: transWinParent.SetVisible(EFalse); sl@0: ws.Flush(); sl@0: sl@0: User::After(2*1000*1000); sl@0: sl@0: // save the test image (without the fix this would be an opaque red window) sl@0: CFbsBitmap* testImage = new(ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(testImage); sl@0: User::LeaveIfError(testImage->Create(KTestSize, displayMode)); sl@0: scr->CopyScreenToBitmap(testImage); sl@0: sl@0: _LIT(KPanicMsg, "Test Failed"); sl@0: TInt nbytes = CFbsBitmap::ScanLineLength(KTestSize.iWidth, displayMode)*KTestSize.iHeight; sl@0: if (Mem::Compare((TUint8*)testImage->DataAddress(), nbytes, (TUint8*)refImage->DataAddress(), nbytes)!=0) sl@0: User::Panic(KPanicMsg, 0); sl@0: sl@0: CleanupStack::PopAndDestroy(10, &shape); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: CTrapCleanup* cs = CTrapCleanup::New(); sl@0: if (!cs) sl@0: return KErrNoMemory; sl@0: sl@0: TRAPD(err,MainL()); sl@0: sl@0: delete cs; sl@0: return err; sl@0: }