Update contrib.
1 // Copyright (c) 2008-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 "drawresource.h"
18 #include <graphics/sgimage.h>
21 CWsDrawableSource::CWsDrawableSource(CWsClient *aOwner)
22 : CWsObject(aOwner, WS_HANDLE_DRAWABLE_SOURCE)
26 CWsDrawableSource::~CWsDrawableSource()
28 if (iDrawableSource && iDrawResource)
30 iDrawResource->CloseDrawableSource(iDrawableSource);
34 void CWsDrawableSource::ConstructL(const TWsClCmdCreateDrawableSource &aParams)
38 CScreen* screen = NULL;
39 if (Rng(0, aParams.iScreenNumber, CWsTop::NumberOfScreens() - 1))
41 screen = CWsTop::Screen(aParams.iScreenNumber);
45 User::Leave(KErrArgument);
47 MWsScreen* pOI=screen;
48 CWsDrawableSource::iDrawResource = pOI->ObjectInterface<MWsDrawableSourceProvider>();
51 User::Leave(KErrNotSupported);
53 User::LeaveIfError(iDrawResource->CreateDrawableSource(aParams.iDrawableId, iDrawableSource));
57 void CWsDrawableSource::CommandL(TInt aOpcode, const TAny *)
61 case EWsDrawableSourceOpFree:
62 iFlags |= EWsClientHandleClosed;
66 OwnerPanic(EWservPanicOpcode);
72 CWsDrawableSource is a reference counted object so we cannot simply close the object as somebody else may have a reference to it
74 void CWsDrawableSource::CloseObject()
77 if (!(iFlags & EWsClientHandleClosed))
83 void CWsDrawableSource::IncRefCount()
88 void CWsDrawableSource::DecRefCount()
96 void CWsDrawableSource::DrawResource(MWsGraphicsContext *aGc, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation) const
98 ASSERT(iDrawResource);
99 MWsDrawableSourceProvider* drawResource = aGc->ObjectInterface<MWsDrawableSourceProvider>();
100 if (drawResource == iDrawResource)
102 drawResource->DrawResource(iDrawableSource, aPos, aRotation);
106 void CWsDrawableSource::DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation) const
108 ASSERT(iDrawResource);
109 MWsDrawableSourceProvider* drawResource = aGc->ObjectInterface<MWsDrawableSourceProvider>();
110 if (drawResource == iDrawResource)
112 drawResource->DrawResource(iDrawableSource, aRect, aRotation);
116 void CWsDrawableSource::DrawResource(MWsGraphicsContext *aGc, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation) const
118 ASSERT(iDrawResource);
119 MWsDrawableSourceProvider* drawResource = aGc->ObjectInterface<MWsDrawableSourceProvider>();
120 if (drawResource == iDrawResource)
122 drawResource->DrawResource(iDrawableSource, aRectDest, aRectSrc, aRotation);
126 void CWsDrawableSource::DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, const TDesC8& aDes) const
128 ASSERT(iDrawResource);
129 MWsDrawableSourceProvider* drawResource = aGc->ObjectInterface<MWsDrawableSourceProvider>();
130 if (drawResource == iDrawResource)
132 drawResource->DrawResource(iDrawableSource, aRect, aDes);