First public contribution.
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.
17 #ifndef __DRAWRESOURCE_H__
18 #define __DRAWRESOURCE_H__
21 #include <graphics/wsgraphicscontext.h>
22 #include <graphics/wsdrawablesourceprovider.h>
27 The class represents RWsDrawableSource on the server side.
28 It maintains a reference count. Drawing commands will be redirected to the resource drawing
29 interface retrieved from the graphics context.
32 @see RWsDrawableSource
34 class CWsDrawableSource : public CWsObject
37 CWsDrawableSource(CWsClient *aOwner);
38 void ConstructL(const TWsClCmdCreateDrawableSource &aParams);
39 void CommandL(TInt aOpcode, const TAny *aCmdData);
40 void DrawResource(MWsGraphicsContext *aGc, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation) const;
41 void DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation) const;
42 void DrawResource(MWsGraphicsContext *aGc, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation) const;
43 void DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, const TDesC8& aDes) const;
52 EWsClientHandleClosed = 0x00000001 // Set if the associated RWsDrawableSource handle has been closed
57 TAny* iDrawableSource; // to be used by plug-ins
58 MWsDrawableSourceProvider* iDrawResource; // doesn't own