sl@0: // Copyright (c) 1995-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: // sl@0: sl@0: #include "W32STDGRAPHIC.H" sl@0: sl@0: LOCAL_C const TUid KStdBitmapType = {0x10281921}; sl@0: sl@0: NONSHARABLE_STRUCT(TBitmapInit) sl@0: { sl@0: TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask); sl@0: TInt iBitmapHandle; sl@0: TInt iMaskHandle; sl@0: }; sl@0: sl@0: TBitmapInit::TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask) sl@0: { sl@0: iBitmapHandle = (aBitmap?aBitmap->Handle():0); sl@0: iMaskHandle = (aMask?aMask->Handle():0); sl@0: } sl@0: sl@0: CWsGraphicBitmap::CWsGraphicBitmap() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmap::~CWsGraphicBitmap() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask) sl@0: /** sl@0: Constructs the client representation of a window-server-side CFbsBitmap owned by this Client. sl@0: The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type. sl@0: sl@0: @param aBitmap CFbsBitmap owned by the Client sl@0: @param aMask Bitmap's Mask. sl@0: */ sl@0: { sl@0: CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: const TPckgBuf data(TBitmapInit(aBitmap,aMask)); sl@0: self->BaseConstructL(KStdBitmapType,data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask) sl@0: /** sl@0: Constructs the client representation of a window-server-side CFbsBitmap owned by this Client. sl@0: The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type. sl@0: sl@0: @param aUid Graphic Bitmap UID. sl@0: @param aBitmap CFbsBitmap owned by the Client sl@0: @param aMask Bitmap's Mask. sl@0: */ sl@0: { sl@0: CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: const TPckgBuf data(TBitmapInit(aBitmap,aMask)); sl@0: self->BaseConstructL(aUid,KStdBitmapType,data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask) sl@0: /** sl@0: Constructs the client representation of a window-server-side CFbsBitmap owned by this Client. sl@0: The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type. sl@0: sl@0: Atomically replace the artwork that already exists with this artwork (i.e. aBitmap) . sl@0: If failure to properly construct the replacement artwork occurs, the replacee artwork will remain sl@0: sl@0: @param aReplace Bitmap artwork which will be replaced. sl@0: @param aBitmap CFbsBitmap owned by the Client sl@0: @param aMask Bitmap's Mask. sl@0: */ sl@0: { sl@0: CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap; sl@0: CleanupStack::PushL(self); sl@0: const TPckgBuf data(TBitmapInit(aBitmap,aMask)); sl@0: self->BaseConstructL(aReplace,KStdBitmapType,data); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C void CWsGraphicBitmap::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CWsGraphicBitmap::OnReplace() sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmap::ShareGlobally() sl@0: { sl@0: return CWsGraphic::ShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmap::UnShareGlobally() sl@0: { sl@0: return CWsGraphic::UnShareGlobally(); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmap::Share(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::Share(aClientId); sl@0: } sl@0: sl@0: EXPORT_C TInt CWsGraphicBitmap::UnShare(TSecureId aClientId) sl@0: { sl@0: return CWsGraphic::UnShare(aClientId); sl@0: }