os/graphics/windowing/windowserver/test/tauto/topaquechild.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// This file is part of manual test (group\inc113743.mmp) to check Wserv behaviour when
sl@0
    15
// exposing a transparent window that is obscured by some opaque child window above it.
sl@0
    16
// Without the fix, that transparent window will be drawn as opaque window
sl@0
    17
// because its transparent regions is null (not re-created due to its update flag is not
sl@0
    18
// set as it is not traceable via transparent regions linked list of windows above it.
sl@0
    19
// Some illustration when the situation will trigger the defect (side view),
sl@0
    20
// ----       Child (opaque)
sl@0
    21
// ---------- Parent (transparent)
sl@0
    22
// ----       Other transparent window obscured by opaque child
sl@0
    23
// This defect is only reproducable when window shadowing is not used, so it cannot be 
sl@0
    24
// tested from standard Wserv test framework.
sl@0
    25
// @SYMTestCaseID		GRAPHICS-WSERV-0450
sl@0
    26
// @SYMDEF  			INC113743
sl@0
    27
// @SYMTestCaseDesc    Perform test on Wserv behaviour in exposing transparent windows which is obscured indirectly by opaque child window
sl@0
    28
// @SYMTestPriority    High
sl@0
    29
// @SYMTestStatus      Implemented
sl@0
    30
// @SYMTestActions     Create opaque and transparent windows in the following dimension and z-order
sl@0
    31
// ----       opaque child
sl@0
    32
// ---------- transparent parent
sl@0
    33
// ----       other transparent underneath obscured and non traceable via transparent parent iTransparentRegions
sl@0
    34
// and then make transparent parent window invisible
sl@0
    35
// @SYMTestExpectedResults The expected result are: other transparent window underneath is exposed and redrawn properly not becoming opaque
sl@0
    36
// 
sl@0
    37
//
sl@0
    38
sl@0
    39
#include <e32std.h>
sl@0
    40
#include <w32std.h>
sl@0
    41
#include <fbs.h>
sl@0
    42
sl@0
    43
#define ENullWsHandle 0xffffffff
sl@0
    44
sl@0
    45
void MainL()
sl@0
    46
	{
sl@0
    47
	const TSize KTestSize(320,240);
sl@0
    48
	const TSize KHalfSize(160,240);
sl@0
    49
	const TInt KScreenNo = 1;
sl@0
    50
sl@0
    51
	RRegion shape;
sl@0
    52
	shape.AddRect(TRect(0,0,160,120));
sl@0
    53
	shape.AddRect(TRect(160,120,320,240));
sl@0
    54
	CleanupClosePushL(shape);
sl@0
    55
sl@0
    56
	RWsSession ws;
sl@0
    57
	User::LeaveIfError(ws.Connect());
sl@0
    58
	CleanupClosePushL(ws);
sl@0
    59
sl@0
    60
	CWsScreenDevice* scr = new(ELeave) CWsScreenDevice(ws);
sl@0
    61
	CleanupStack::PushL(scr);
sl@0
    62
	User::LeaveIfError(scr->Construct(KScreenNo));
sl@0
    63
	TDisplayMode displayMode = scr->DisplayMode();
sl@0
    64
sl@0
    65
	CWindowGc* gc = NULL;
sl@0
    66
	User::LeaveIfError(scr->CreateContext(gc));
sl@0
    67
	CleanupStack::PushL(gc);
sl@0
    68
sl@0
    69
	RWindowGroup group(ws);
sl@0
    70
	User::LeaveIfError(group.Construct(0x0badface, ETrue));
sl@0
    71
	CleanupClosePushL(group);
sl@0
    72
sl@0
    73
	// create transparent window underneath that will be obscured by some opaque child window above it
sl@0
    74
	RWindow transWinUnderneath(ws);
sl@0
    75
	User::LeaveIfError(transWinUnderneath.Construct(group, ENullWsHandle));
sl@0
    76
	CleanupClosePushL(transWinUnderneath);
sl@0
    77
	transWinUnderneath.SetShadowDisabled(ETrue);
sl@0
    78
	transWinUnderneath.SetExtent(TPoint(0,0),KTestSize/*KHalfSize*/);
sl@0
    79
	transWinUnderneath.SetTransparencyAlphaChannel();
sl@0
    80
	transWinUnderneath.SetRequiredDisplayMode(EColor64K);
sl@0
    81
	transWinUnderneath.SetBackgroundColor(TRgb(255,0,0,128));
sl@0
    82
	transWinUnderneath.SetShape(shape);
sl@0
    83
	transWinUnderneath.Activate();
sl@0
    84
	transWinUnderneath.Invalidate();
sl@0
    85
	transWinUnderneath.BeginRedraw();
sl@0
    86
	transWinUnderneath.EndRedraw();
sl@0
    87
	ws.Flush();
sl@0
    88
sl@0
    89
	User::After(1*1000*1000);
sl@0
    90
sl@0
    91
	// save the reference image (semi-transparent red window)
sl@0
    92
	CFbsBitmap* refImage = new(ELeave) CFbsBitmap;
sl@0
    93
	CleanupStack::PushL(refImage);
sl@0
    94
	User::LeaveIfError(refImage->Create(KTestSize, displayMode));
sl@0
    95
	scr->CopyScreenToBitmap(refImage);
sl@0
    96
sl@0
    97
	// create transparent window parent which will have opaque child
sl@0
    98
	RWindow transWinParent(ws);
sl@0
    99
	User::LeaveIfError(transWinParent.Construct(group, ENullWsHandle));
sl@0
   100
	CleanupClosePushL(transWinParent);
sl@0
   101
	transWinParent.SetShadowDisabled(ETrue);
sl@0
   102
	transWinParent.SetExtent(TPoint(0,0),KTestSize);
sl@0
   103
	transWinParent.SetTransparencyAlphaChannel();
sl@0
   104
	transWinParent.SetRequiredDisplayMode(EColor64K);
sl@0
   105
	transWinParent.SetBackgroundColor(TRgb(255,255,255,0));
sl@0
   106
	transWinParent.Activate();
sl@0
   107
sl@0
   108
	transWinParent.Invalidate();
sl@0
   109
	transWinParent.BeginRedraw();
sl@0
   110
	transWinParent.EndRedraw();
sl@0
   111
	ws.Flush();
sl@0
   112
		
sl@0
   113
	// create opaque child window that obscure transparent window underneath (not its parent)
sl@0
   114
	RWindow opaqueWinChild(ws);
sl@0
   115
	User::LeaveIfError(opaqueWinChild.Construct(transWinParent, ENullWsHandle));
sl@0
   116
	CleanupClosePushL(opaqueWinChild);
sl@0
   117
	opaqueWinChild.SetExtent(TPoint(0,0),KTestSize/*KHalfSize*/);
sl@0
   118
	opaqueWinChild.SetRequiredDisplayMode(EColor64K);
sl@0
   119
	opaqueWinChild.SetShape(shape);
sl@0
   120
	opaqueWinChild.Activate();
sl@0
   121
	
sl@0
   122
	opaqueWinChild.Invalidate();
sl@0
   123
	opaqueWinChild.BeginRedraw();
sl@0
   124
	gc->Activate(opaqueWinChild);
sl@0
   125
	gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   126
	gc->SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   127
	gc->SetBrushColor(KRgbGreen);
sl@0
   128
	gc->Clear();
sl@0
   129
	gc->SetBrushColor(KRgbBlue);
sl@0
   130
	gc->DrawEllipse(KTestSize/*KHalfSize*/);
sl@0
   131
	gc->Deactivate();
sl@0
   132
	opaqueWinChild.EndRedraw();
sl@0
   133
	ws.Flush();
sl@0
   134
sl@0
   135
	User::After(1*1000*1000);
sl@0
   136
sl@0
   137
	// preform the test by making transparent window parent invisible
sl@0
   138
	transWinParent.SetVisible(EFalse);
sl@0
   139
	ws.Flush();
sl@0
   140
sl@0
   141
	User::After(2*1000*1000);
sl@0
   142
sl@0
   143
	// save the test image (without the fix this would be an opaque red window)
sl@0
   144
	CFbsBitmap* testImage = new(ELeave) CFbsBitmap;
sl@0
   145
	CleanupStack::PushL(testImage);
sl@0
   146
	User::LeaveIfError(testImage->Create(KTestSize, displayMode));
sl@0
   147
	scr->CopyScreenToBitmap(testImage);
sl@0
   148
sl@0
   149
	_LIT(KPanicMsg, "Test Failed");
sl@0
   150
	TInt nbytes = CFbsBitmap::ScanLineLength(KTestSize.iWidth, displayMode)*KTestSize.iHeight;
sl@0
   151
	if (Mem::Compare((TUint8*)testImage->DataAddress(), nbytes, (TUint8*)refImage->DataAddress(), nbytes)!=0)
sl@0
   152
		User::Panic(KPanicMsg, 0);
sl@0
   153
sl@0
   154
	CleanupStack::PopAndDestroy(10, &shape);
sl@0
   155
	}
sl@0
   156
sl@0
   157
GLDEF_C TInt E32Main()
sl@0
   158
	{
sl@0
   159
	CTrapCleanup* cs = CTrapCleanup::New();
sl@0
   160
	if (!cs)
sl@0
   161
		return KErrNoMemory;
sl@0
   162
		
sl@0
   163
	TRAPD(err,MainL());
sl@0
   164
sl@0
   165
	delete cs;
sl@0
   166
	return err;
sl@0
   167
	}