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: // The plug-in provides the client side CWsGraphic instance CWsListen, which is used in sl@0: // GRAPHICS-WSERV-0438. sl@0: // This also provides Test Case INC103472: CRedrawRegion::ContainsDrawers does not look for all drawers. sl@0: // The customer incident "INC103472" reports CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers in wnredraw.cpp sl@0: // is suppose to return whether some drawers are contained within a specific region. sl@0: // But right now it doesn't check for drawers in drawers. sl@0: // So if one drawer from the iDrawerArray contains one of the drawers passed along sl@0: // in aDrawers it will still return EFalse when it should return ETrue. sl@0: // The fix is added in CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers(const TArray& aDrawers,const RRegion& aRegion). sl@0: // The drawer->Contains() call will end up in HasAsChild(const TArray& aIds), sl@0: // where the CWsGraphicDrawer has to look for its own nested drawers and return ETrue or EFalse. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: //CWsGraphic sl@0: #include "wscontaindrawer.h" sl@0: sl@0: CWsContainGraphicBitmap::CWsContainGraphicBitmap() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsContainGraphicBitmap::~CWsContainGraphicBitmap() sl@0: { sl@0: iIsReady = EFalse; sl@0: } sl@0: sl@0: EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL() sl@0: { sl@0: CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(KContainDrawerImplId,KNullDesC8()); sl@0: self->iIsReady = ETrue; sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(TUid aUid) sl@0: { sl@0: CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aUid,KContainDrawerImplId,KNullDesC8()); sl@0: self->iIsReady = ETrue; sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(const TWsGraphicId& aReplace) sl@0: { sl@0: CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aReplace,KContainDrawerImplId,KNullDesC8()); sl@0: self->iIsReady = ETrue; sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C TInt CWsContainGraphicBitmap::UpdateColor(TRgb aColor) sl@0: { sl@0: if (!iIsReady) sl@0: return KErrNotReady; sl@0: // Send the color the server side sl@0: TBuf8<3> cmd; sl@0: TInt red = aColor.Red(); sl@0: TInt green = aColor.Green(); sl@0: TInt blue = aColor.Blue(); sl@0: //Append the color sl@0: cmd.Append(red); sl@0: cmd.Append(green); sl@0: cmd.Append(blue); sl@0: sl@0: SendMessage(cmd); sl@0: return Flush(); sl@0: } sl@0: sl@0: sl@0: EXPORT_C void CWsContainGraphicBitmap::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CWsContainGraphicBitmap::OnReplace() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TInt CWsContainGraphicBitmap::ShareGlobally() sl@0: { sl@0: return CWsGraphic::ShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsContainGraphicBitmap::UnShareGlobally() sl@0: { sl@0: return CWsGraphic::UnShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsContainGraphicBitmap::Share(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::Share(aClientId); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsContainGraphicBitmap::UnShare(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::UnShare(aClientId); sl@0: } sl@0: