os/graphics/windowing/windowserver/test/tcontaindrawer/wssimpledrawer.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tcontaindrawer/wssimpledrawer.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,181 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The plug-in provides the client side CWsGraphic instance CWsListen, which is used in 
    1.18 +// GRAPHICS-WSERV-0438. 
    1.19 +// This also provides Test Case INC103472: CRedrawRegion::ContainsDrawers does not look for all drawers. 
    1.20 +// The customer incident "INC103472" reports CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers in wnredraw.cpp 
    1.21 +// is suppose to return wheather some drawers are contained within a specific region. 
    1.22 +// But it currently fails to check for drawers in drawers.
    1.23 +// So if one drawer from the iDrawerArray contains one of the drawers passed along 
    1.24 +// in aDrawers it will still return EFalse when it should return ETrue.
    1.25 +// The fix is added in CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers(const TArray& aDrawers,const RRegion& aRegion).
    1.26 +// The drawer->Contains() call will end up in HasAsChild(const TArray& aIds), 
    1.27 +// where the CWsGraphicDrawer has to look for its own nested drawers and return ETrue or EFalse.
    1.28 +// 
    1.29 +//
    1.30 +
    1.31 +/**
    1.32 + @file
    1.33 + @test
    1.34 + @internalComponent - Internal Symbian test code
    1.35 +*/
    1.36 +//CWsGraphic
    1.37 +#include "wssimpledrawer.h"
    1.38 +#include <s32mem.h>
    1.39 +
    1.40 +CWsSimpleGraphicBitmap::CWsSimpleGraphicBitmap()
    1.41 +	{
    1.42 +	}
    1.43 +
    1.44 +EXPORT_C CWsSimpleGraphicBitmap::~CWsSimpleGraphicBitmap()
    1.45 +	{
    1.46 +	iIsReady = EFalse;
    1.47 +	}
    1.48 +
    1.49 +EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL()
    1.50 +	{
    1.51 +	CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
    1.52 +	CleanupStack::PushL(self);
    1.53 + 	self->BaseConstructL(KSimpleDrawerImplId,KNullDesC8());
    1.54 +	self->iIsReady = ETrue;
    1.55 +	CleanupStack::Pop(self);
    1.56 +	return self;
    1.57 +	}
    1.58 +
    1.59 +EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(TUid aUid)
    1.60 +	{
    1.61 +	CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
    1.62 +	CleanupStack::PushL(self);
    1.63 +	self->BaseConstructL(aUid,KSimpleDrawerImplId,KNullDesC8());
    1.64 +	self->iIsReady = ETrue;
    1.65 +	CleanupStack::Pop(self);
    1.66 +	return self;
    1.67 +	}
    1.68 +	
    1.69 +EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(const TWsGraphicId& aReplace)
    1.70 +	{
    1.71 +	CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
    1.72 +	CleanupStack::PushL(self);
    1.73 +	self->BaseConstructL(aReplace,KSimpleDrawerImplId,KNullDesC8());
    1.74 +	self->iIsReady = ETrue;
    1.75 + 	CleanupStack::Pop(self);
    1.76 +	return self;
    1.77 +	}
    1.78 +
    1.79 +EXPORT_C TInt CWsSimpleGraphicBitmap::UpdateColor(TRgb aColor)
    1.80 +	{
    1.81 +	if (!iIsReady)
    1.82 +		return KErrNotReady;
    1.83 +	// Send the message to server side
    1.84 +	TBuf8<3> cmd;
    1.85 +	TInt red = aColor.Red();
    1.86 +	TInt green = aColor.Green();
    1.87 +	TInt blue = aColor.Blue();
    1.88 +    //Append the color
    1.89 +	cmd.Append(red);
    1.90 +	cmd.Append(green);
    1.91 +	cmd.Append(blue);
    1.92 +	
    1.93 +	SendMessage(cmd);
    1.94 +	return Flush();
    1.95 +	}
    1.96 +
    1.97 +EXPORT_C void CWsSimpleGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
    1.98 +	{
    1.99 +	}
   1.100 +
   1.101 +EXPORT_C void CWsSimpleGraphicBitmap::OnReplace()
   1.102 +	{
   1.103 +	}
   1.104 +
   1.105 +EXPORT_C TInt CWsSimpleGraphicBitmap::ShareGlobally()
   1.106 +	{
   1.107 +	return CWsGraphic::ShareGlobally();
   1.108 +	}
   1.109 +
   1.110 +EXPORT_C TInt CWsSimpleGraphicBitmap::UnShareGlobally()
   1.111 +	{
   1.112 +	return CWsGraphic::UnShareGlobally();
   1.113 +	}
   1.114 +
   1.115 +EXPORT_C TInt CWsSimpleGraphicBitmap::Share(TSecureId aClientId)
   1.116 +	{
   1.117 +	return CWsGraphic::Share(aClientId);
   1.118 +	}
   1.119 +
   1.120 +EXPORT_C TInt CWsSimpleGraphicBitmap::UnShare(TSecureId aClientId)
   1.121 +	{
   1.122 +	return CWsGraphic::UnShare(aClientId);
   1.123 +	}  		 
   1.124 +
   1.125 +EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL()
   1.126 +	{
   1.127 +	CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
   1.128 +	CleanupStack::PushL(self);
   1.129 +	self->BaseConstructL(KInvisibleDrawerImplId1,KNullDesC8());
   1.130 +	self->iIsReady = ETrue;
   1.131 +	CleanupStack::Pop(self);
   1.132 +	return self;
   1.133 +	}
   1.134 +
   1.135 +EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(TUid aUid)
   1.136 +	{
   1.137 +	CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
   1.138 +	CleanupStack::PushL(self);
   1.139 +	self->BaseConstructL(aUid,KInvisibleDrawerImplId1,KNullDesC8());
   1.140 +	self->iIsReady = ETrue;
   1.141 +	CleanupStack::Pop(self);
   1.142 +	return self;
   1.143 +	}
   1.144 +	
   1.145 +EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(const TWsGraphicId& aReplace)
   1.146 +	{
   1.147 +	CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
   1.148 +	CleanupStack::PushL(self);
   1.149 +	self->BaseConstructL(aReplace,KInvisibleDrawerImplId1,KNullDesC8());
   1.150 +	self->iIsReady = ETrue;
   1.151 +	CleanupStack::Pop(self);
   1.152 +	return self;
   1.153 +	}
   1.154 +
   1.155 +EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL()
   1.156 +	{
   1.157 +	CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
   1.158 +	CleanupStack::PushL(self);
   1.159 + 	self->BaseConstructL(KInvisibleDrawerImplId2,KNullDesC8());
   1.160 +	self->iIsReady = ETrue;
   1.161 +	CleanupStack::Pop(self);
   1.162 +	return self;
   1.163 +	}
   1.164 +
   1.165 +EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(TUid aUid)
   1.166 +	{
   1.167 +	CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
   1.168 +	CleanupStack::PushL(self);
   1.169 +	self->BaseConstructL(aUid,KInvisibleDrawerImplId2,KNullDesC8());
   1.170 +	self->iIsReady = ETrue;
   1.171 + 	CleanupStack::Pop(self);
   1.172 +	return self;
   1.173 +	}
   1.174 +	
   1.175 +EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(const TWsGraphicId& aReplace)
   1.176 +	{
   1.177 +	CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
   1.178 +	CleanupStack::PushL(self);
   1.179 +	self->BaseConstructL(aReplace,KInvisibleDrawerImplId2,KNullDesC8());
   1.180 +	self->iIsReady = ETrue;
   1.181 + 	CleanupStack::Pop(self);
   1.182 +	return self;
   1.183 +	}
   1.184 +