First public contribution.
1 // Copyright (c) 1996-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.
14 // Window server side bitmap class
15 // All this class does is actually give the window server ownership of the bitmap
21 DWsBitmap::DWsBitmap(CWsClient *aOwner) : CWsObject(aOwner, WS_HANDLE_BITMAP)
25 DWsBitmap::~DWsBitmap()
30 void DWsBitmap::ConstructL(const TWsClCmdCreateBitmap &aParams)
33 iFbsBitmap=new(ELeave) CFbsBitmap();
34 TInt ret = iFbsBitmap->Duplicate(aParams.handle);
35 if(ret == KErrNoMemory)
40 OwnerPanic(EWservPanicBitmap);
44 void DWsBitmap::CommandL(TInt aOpcode, const TAny *)
49 iFlags |= EWsBitmapClientObjectFreed;
53 OwnerPanic(EWservPanicOpcode);
59 DWsBitmap is a reference couting object so we cannot simply close the object as somebody else may have a reference to it
61 void DWsBitmap::CloseObject()
64 if (!(iFlags & EWsBitmapClientObjectFreed))
70 void DWsBitmap::IncRefCount()
75 void DWsBitmap::DecRefCount()