First public contribution.
1 // Copyright (c) 2003-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 #if !defined(__OFFSCREENBITMAP_H__)
17 #define __OFFSCREENBITMAP_H__
23 #include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
25 class CFbsBitmapDevice;
26 class CWsClientWindow;
33 #if defined(__WINS__) && defined(_DEBUG)
37 class CWsOffScreenBitmap : public CBase, public MWsBackBuffer
39 public: // Construction / Destruction
40 static CWsOffScreenBitmap* NewL(CScreen* aScreen);
41 ~CWsOffScreenBitmap();
43 CWsOffScreenBitmap(CScreen* aScreen);
46 TInt DisplayModeChanged(TBool aSwapWidthAndHeight);
47 void UpdateGc(const TBool aSwapWidthAndHeight);
50 CFbsDevice* BitmapDevice();
52 public: // implementing MWsObjectProvider
53 TAny* ResolveObjectInterface(TUint aTypeId);
55 public: // implementing MWsBackBuffer
56 CFbsBitmap* GetBitmap();
57 CFbsBitGc* GetBitGc();
58 CFbsBitGc* GetBitGcCurrent();
59 TInt SetBitGc(CFbsBitGc* aBitGc);
60 TInt RedirectTo(MWsBackBuffer* aTarget);
61 void SetObserver(MWsFlickerFreeBufferObserver* aObserver);
62 MWsFlickerFreeBufferObserver* Observer();
63 #if defined(__WINS__) && defined(_DEBUG)
70 CFbsBitmapDevice* iBitmapDevice;
74 #if defined(__WINS__) && defined(_DEBUG)
75 CDebugOsbWin* iOsbWin;
79 // used by MWsBackBuffer to redirect OSB output
80 CFbsBitGc* iRedirectGc;
81 MWsBackBuffer* iRedirectBuffer;
82 MWsFlickerFreeBufferObserver* iObserver;
85 #endif // __OFFSCREENBITMAP__