Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "W32STDGRAPHIC.H"
18 LOCAL_C const TUid KStdBitmapType = {0x10281921};
20 NONSHARABLE_STRUCT(TBitmapInit)
22 TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
27 TBitmapInit::TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
29 iBitmapHandle = (aBitmap?aBitmap->Handle():0);
30 iMaskHandle = (aMask?aMask->Handle():0);
33 CWsGraphicBitmap::CWsGraphicBitmap()
37 EXPORT_C CWsGraphicBitmap::~CWsGraphicBitmap()
41 EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
43 Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
44 The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
46 @param aBitmap CFbsBitmap owned by the Client
47 @param aMask Bitmap's Mask.
50 CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
51 CleanupStack::PushL(self);
52 const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
53 self->BaseConstructL(KStdBitmapType,data);
54 CleanupStack::Pop(self);
58 EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
60 Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
61 The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
63 @param aUid Graphic Bitmap UID.
64 @param aBitmap CFbsBitmap owned by the Client
65 @param aMask Bitmap's Mask.
68 CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
69 CleanupStack::PushL(self);
70 const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
71 self->BaseConstructL(aUid,KStdBitmapType,data);
72 CleanupStack::Pop(self);
76 EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
78 Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
79 The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
81 Atomically replace the artwork that already exists with this artwork (i.e. aBitmap) .
82 If failure to properly construct the replacement artwork occurs, the replacee artwork will remain
84 @param aReplace Bitmap artwork which will be replaced.
85 @param aBitmap CFbsBitmap owned by the Client
86 @param aMask Bitmap's Mask.
89 CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
90 CleanupStack::PushL(self);
91 const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
92 self->BaseConstructL(aReplace,KStdBitmapType,data);
93 CleanupStack::Pop(self);
97 EXPORT_C void CWsGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
101 EXPORT_C void CWsGraphicBitmap::OnReplace()
105 EXPORT_C TInt CWsGraphicBitmap::ShareGlobally()
107 return CWsGraphic::ShareGlobally();
110 EXPORT_C TInt CWsGraphicBitmap::UnShareGlobally()
112 return CWsGraphic::UnShareGlobally();
115 EXPORT_C TInt CWsGraphicBitmap::Share(TSecureId aClientId)
117 return CWsGraphic::Share(aClientId);
120 EXPORT_C TInt CWsGraphicBitmap::UnShare(TSecureId aClientId)
122 return CWsGraphic::UnShare(aClientId);