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 |
#ifndef __DRAWABLECACHE_H__
|
sl@0
|
17 |
#define __DRAWABLECACHE_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32cmn.h>
|
sl@0
|
20 |
#include <graphics/sgresource.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "W32STD.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
@file
|
sl@0
|
26 |
@internalComponent
|
sl@0
|
27 |
Provides functionality which is used by RemoteGc.
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
class RWsDrawableSource;
|
sl@0
|
31 |
class MWsDrawableSourceProvider;
|
sl@0
|
32 |
class CGraphicsResourceWrapperFactory;
|
sl@0
|
33 |
class CGraphicsResourceWrapper;
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@internalComponent
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
NONSHARABLE_CLASS(CDrawableCacheBase): public CBase
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
virtual TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber) = 0;
|
sl@0
|
42 |
const TAny* Resolve(const TSgDrawableId& aDrawableId, TInt aScreenNumber) const;
|
sl@0
|
43 |
protected:
|
sl@0
|
44 |
class TCacheEntry
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
TCacheEntry(const TSgDrawableId& aDrawableId, TInt aScreenNumber)
|
sl@0
|
48 |
: iDrawableId(aDrawableId), iScreenNumber(aScreenNumber), iCachedItem(NULL)
|
sl@0
|
49 |
{}
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
TSgDrawableId iDrawableId;
|
sl@0
|
52 |
TInt iScreenNumber;
|
sl@0
|
53 |
TAny* iCachedItem;
|
sl@0
|
54 |
};
|
sl@0
|
55 |
protected:
|
sl@0
|
56 |
static TInt Compare(const TCacheEntry &aFirstEntry, const TCacheEntry &aSecondEntry);
|
sl@0
|
57 |
protected:
|
sl@0
|
58 |
RArray<TCacheEntry> iCachedItems;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
@internalComponent
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
NONSHARABLE_CLASS(CWindowDrawableCache): public CDrawableCacheBase
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
CWindowDrawableCache(RWsSession& aSession);
|
sl@0
|
68 |
~CWindowDrawableCache();
|
sl@0
|
69 |
TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber);
|
sl@0
|
70 |
private:
|
sl@0
|
71 |
RWsSession& iWsSession;
|
sl@0
|
72 |
CGraphicsResourceWrapperFactory* iGrwFactory;
|
sl@0
|
73 |
CGraphicsResourceWrapper* iGraphicsResource;
|
sl@0
|
74 |
};
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
@internalComponent
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
NONSHARABLE_CLASS(CRenderStageDrawableCache): public CDrawableCacheBase
|
sl@0
|
80 |
{
|
sl@0
|
81 |
public:
|
sl@0
|
82 |
CRenderStageDrawableCache(MWsDrawableSourceProvider* aDrawResource);
|
sl@0
|
83 |
~CRenderStageDrawableCache();
|
sl@0
|
84 |
TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber);
|
sl@0
|
85 |
private:
|
sl@0
|
86 |
MWsDrawableSourceProvider* iDrawResource;
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
#endif //__DRAWABLECACHE_H__
|