sl@0
|
1 |
// Copyright (c) 2003-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 |
#if !defined(__OFFSCREENBITMAP_H__)
|
sl@0
|
17 |
#define __OFFSCREENBITMAP_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <gdi.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
24 |
|
sl@0
|
25 |
class CFbsBitmapDevice;
|
sl@0
|
26 |
class CWsClientWindow;
|
sl@0
|
27 |
class CWsWindow;
|
sl@0
|
28 |
class CWsWindowBase;
|
sl@0
|
29 |
class CWsClient;
|
sl@0
|
30 |
class CScreen;
|
sl@0
|
31 |
class DWsBitmap;
|
sl@0
|
32 |
|
sl@0
|
33 |
#if defined(__WINS__) && defined(_DEBUG)
|
sl@0
|
34 |
class CDebugOsbWin;
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
class CWsOffScreenBitmap : public CBase, public MWsBackBuffer
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public: // Construction / Destruction
|
sl@0
|
40 |
static CWsOffScreenBitmap* NewL(CScreen* aScreen);
|
sl@0
|
41 |
~CWsOffScreenBitmap();
|
sl@0
|
42 |
protected:
|
sl@0
|
43 |
CWsOffScreenBitmap(CScreen* aScreen);
|
sl@0
|
44 |
void ConstructL();
|
sl@0
|
45 |
public: // Bitmap
|
sl@0
|
46 |
TInt DisplayModeChanged(TBool aSwapWidthAndHeight);
|
sl@0
|
47 |
void UpdateGc(const TBool aSwapWidthAndHeight);
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
CFbsBitmap* Bitmap();
|
sl@0
|
50 |
CFbsDevice* BitmapDevice();
|
sl@0
|
51 |
|
sl@0
|
52 |
public: // implementing MWsObjectProvider
|
sl@0
|
53 |
TAny* ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
54 |
|
sl@0
|
55 |
public: // implementing MWsBackBuffer
|
sl@0
|
56 |
CFbsBitmap* GetBitmap();
|
sl@0
|
57 |
CFbsBitGc* GetBitGc();
|
sl@0
|
58 |
CFbsBitGc* GetBitGcCurrent();
|
sl@0
|
59 |
TInt SetBitGc(CFbsBitGc* aBitGc);
|
sl@0
|
60 |
TInt RedirectTo(MWsBackBuffer* aTarget);
|
sl@0
|
61 |
void SetObserver(MWsFlickerFreeBufferObserver* aObserver);
|
sl@0
|
62 |
MWsFlickerFreeBufferObserver* Observer();
|
sl@0
|
63 |
#if defined(__WINS__) && defined(_DEBUG)
|
sl@0
|
64 |
void Update();
|
sl@0
|
65 |
#endif
|
sl@0
|
66 |
|
sl@0
|
67 |
protected: // Data
|
sl@0
|
68 |
CFbsBitGc* iBitmapGc;
|
sl@0
|
69 |
CFbsBitmap* iBitmap;
|
sl@0
|
70 |
CFbsBitmapDevice* iBitmapDevice;
|
sl@0
|
71 |
CScreen* iScreen;
|
sl@0
|
72 |
|
sl@0
|
73 |
private: // Data
|
sl@0
|
74 |
#if defined(__WINS__) && defined(_DEBUG)
|
sl@0
|
75 |
CDebugOsbWin* iOsbWin;
|
sl@0
|
76 |
#endif
|
sl@0
|
77 |
|
sl@0
|
78 |
private: // Data
|
sl@0
|
79 |
// used by MWsBackBuffer to redirect OSB output
|
sl@0
|
80 |
CFbsBitGc* iRedirectGc;
|
sl@0
|
81 |
MWsBackBuffer* iRedirectBuffer;
|
sl@0
|
82 |
MWsFlickerFreeBufferObserver* iObserver;
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
#endif // __OFFSCREENBITMAP__
|