os/graphics/windowing/windowserver/stdgraphic/BITMAPGRAPHIC.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/stdgraphic/BITMAPGRAPHIC.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,123 @@
     1.4 +// Copyright (c) 1995-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 +//
    1.18 +
    1.19 +#include "W32STDGRAPHIC.H"
    1.20 +
    1.21 +LOCAL_C const TUid KStdBitmapType = {0x10281921};
    1.22 +
    1.23 +NONSHARABLE_STRUCT(TBitmapInit)
    1.24 +	{
    1.25 +	TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
    1.26 +	TInt iBitmapHandle;
    1.27 +	TInt iMaskHandle;
    1.28 +	};
    1.29 +	
    1.30 +TBitmapInit::TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
    1.31 +	{
    1.32 +	iBitmapHandle = (aBitmap?aBitmap->Handle():0);
    1.33 +	iMaskHandle = (aMask?aMask->Handle():0);
    1.34 +	}
    1.35 +
    1.36 +CWsGraphicBitmap::CWsGraphicBitmap()
    1.37 +	{
    1.38 +	}
    1.39 +
    1.40 +EXPORT_C CWsGraphicBitmap::~CWsGraphicBitmap()
    1.41 +	{
    1.42 +	}
    1.43 +
    1.44 +EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
    1.45 +/** 
    1.46 +Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
    1.47 +The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
    1.48 +
    1.49 +@param aBitmap CFbsBitmap owned by the Client 
    1.50 +@param aMask Bitmap's Mask.
    1.51 +*/
    1.52 +	{
    1.53 +	CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
    1.54 +	CleanupStack::PushL(self);
    1.55 +	const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
    1.56 +	self->BaseConstructL(KStdBitmapType,data);
    1.57 +	CleanupStack::Pop(self);
    1.58 +	return self;
    1.59 +	}
    1.60 +
    1.61 +EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
    1.62 +/** 
    1.63 +Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
    1.64 +The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
    1.65 +
    1.66 +@param aUid	Graphic Bitmap UID.
    1.67 +@param aBitmap CFbsBitmap owned by the Client 
    1.68 +@param aMask Bitmap's Mask.
    1.69 +*/
    1.70 +	{
    1.71 +	CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
    1.72 +	CleanupStack::PushL(self);
    1.73 +	const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
    1.74 +	self->BaseConstructL(aUid,KStdBitmapType,data);
    1.75 +	CleanupStack::Pop(self);
    1.76 +	return self;
    1.77 +	}
    1.78 +	
    1.79 +EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
    1.80 +/** 
    1.81 +Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
    1.82 +The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
    1.83 +
    1.84 +Atomically replace the artwork that already exists with this artwork (i.e. aBitmap) .
    1.85 +If failure to properly construct the replacement artwork occurs, the replacee artwork will remain
    1.86 +
    1.87 +@param aReplace Bitmap artwork which will be replaced.
    1.88 +@param aBitmap CFbsBitmap owned by the Client 
    1.89 +@param aMask Bitmap's Mask.
    1.90 +*/	
    1.91 +	{
    1.92 +	CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
    1.93 +	CleanupStack::PushL(self);
    1.94 +	const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
    1.95 +	self->BaseConstructL(aReplace,KStdBitmapType,data);
    1.96 +	CleanupStack::Pop(self);
    1.97 +	return self;
    1.98 +	}
    1.99 +
   1.100 +EXPORT_C void CWsGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
   1.101 +	{
   1.102 +	}
   1.103 +
   1.104 +EXPORT_C void CWsGraphicBitmap::OnReplace()
   1.105 +	{
   1.106 +	}
   1.107 +
   1.108 +EXPORT_C TInt CWsGraphicBitmap::ShareGlobally()
   1.109 +	{
   1.110 +	return CWsGraphic::ShareGlobally();
   1.111 +	}
   1.112 +
   1.113 +EXPORT_C TInt CWsGraphicBitmap::UnShareGlobally()
   1.114 +	{
   1.115 +	return CWsGraphic::UnShareGlobally();
   1.116 +	}
   1.117 +
   1.118 +EXPORT_C TInt CWsGraphicBitmap::Share(TSecureId aClientId)
   1.119 +	{
   1.120 +	return CWsGraphic::Share(aClientId);
   1.121 +	}
   1.122 +
   1.123 +EXPORT_C TInt CWsGraphicBitmap::UnShare(TSecureId aClientId)
   1.124 +	{
   1.125 +	return CWsGraphic::UnShare(aClientId);
   1.126 +	}