Update contrib.
1 // Copyright (c) 2006-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.
14 // CWsWindowRedraw and associated classes definitions
18 #ifndef __BACKEDUPWINDOW_H__
19 #define __BACKEDUPWINDOW_H__
24 class CWsBackedUpWindow : public CWsWindowRedraw
27 static void StaticInitL();
28 static void StaticDestroy();
30 CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode);
33 TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
34 void Resize(const TSize &aSize, const TSize &aOldSize);
35 inline TDisplayMode DisplayMode() const;
36 void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
38 virtual CFbsDevice* OutputDevice() const;
39 virtual TBool DrawCommand(CWsGc*,const TAny*);
43 void SetSizeInTwips();
45 //from CWsWindowRedraw
46 TRgb BackColor() const;
47 TBool NeedsRedraw() const;
48 TBool GetRedrawRect(TRect &aRect) const;
49 CWsBackedUpWindow *Backup() const;
50 void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
53 static CFbsBitGc *iBitGc;
55 CFbsBitmapDevice *iBitmapDevice;
57 TDisplayMode iDisplayMode;
60 inline TDisplayMode CWsBackedUpWindow::DisplayMode() const