sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef __DRAWRESOURCE_H__
|
sl@0
|
18 |
#define __DRAWRESOURCE_H__
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "OBJECT.H"
|
sl@0
|
21 |
#include <graphics/wsgraphicscontext.h>
|
sl@0
|
22 |
#include <graphics/wsdrawablesourceprovider.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
The class represents RWsDrawableSource on the server side.
|
sl@0
|
28 |
It maintains a reference count. Drawing commands will be redirected to the resource drawing
|
sl@0
|
29 |
interface retrieved from the graphics context.
|
sl@0
|
30 |
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
@see RWsDrawableSource
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class CWsDrawableSource : public CWsObject
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
CWsDrawableSource(CWsClient *aOwner);
|
sl@0
|
38 |
void ConstructL(const TWsClCmdCreateDrawableSource &aParams);
|
sl@0
|
39 |
void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
40 |
void DrawResource(MWsGraphicsContext *aGc, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation) const;
|
sl@0
|
41 |
void DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation) const;
|
sl@0
|
42 |
void DrawResource(MWsGraphicsContext *aGc, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation) const;
|
sl@0
|
43 |
void DrawResource(MWsGraphicsContext *aGc, const TRect& aRect, const TDesC8& aDes) const;
|
sl@0
|
44 |
void CloseObject();
|
sl@0
|
45 |
void IncRefCount();
|
sl@0
|
46 |
void DecRefCount();
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
~CWsDrawableSource();
|
sl@0
|
49 |
private:
|
sl@0
|
50 |
enum // Flags
|
sl@0
|
51 |
{
|
sl@0
|
52 |
EWsClientHandleClosed = 0x00000001 // Set if the associated RWsDrawableSource handle has been closed
|
sl@0
|
53 |
};
|
sl@0
|
54 |
private:
|
sl@0
|
55 |
TInt iRefCount;
|
sl@0
|
56 |
TUint32 iFlags;
|
sl@0
|
57 |
TAny* iDrawableSource; // to be used by plug-ins
|
sl@0
|
58 |
MWsDrawableSourceProvider* iDrawResource; // doesn't own
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
#endif
|