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 __WNREDRAW_H__
19 #define __WNREDRAW_H__
27 // Base class defining how a window is redrawn, i.e. Backed up, redraw from client, blanked...
29 class CWsWindowRedraw : public CBase
33 virtual void ConstructL();
34 virtual TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)=0;
35 virtual TRgb BackColor() const=0;
36 virtual TBool NeedsRedraw() const=0;
37 virtual TBool GetRedrawRect(TRect &aRect) const=0;
38 virtual void ClipInvalidRegion(const TRect &aRect);
39 virtual void Resize(const TSize &aSize, const TSize &aOldSize);
40 virtual CWsBackedUpWindow *Backup() const;
41 virtual void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
42 virtual void UpdateAnimArea();
43 virtual void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
44 virtual void Moved() {}
45 virtual void ClearRedrawStore(TBool aClearPendingRedraw=EFalse);
46 virtual TBool DrawCommand(CWsGc* aGc,const TAny *aCmdData);
47 virtual void GcAttributeChange(CWsGc* aGc,const TAny *aCmdData);
48 virtual void GcDeactivate(CWsGc* aGc);
49 inline CWsWindow *WsWin(); // Link back to main window class
50 virtual void ClientExposing();
51 virtual void DrawWindow()=0;
52 TInt DrawBackgroundColor(const TRegion* aRegion);
53 virtual TBool Contains(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
54 void DrawAnims(CFbsBitGc * aGc, const TRegion& aRegion);
55 const TRegion * GlobalRedrawRegion();
56 virtual TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
57 virtual CFbsDevice* OutputDevice() const;
58 virtual void VisibleRegionChange();
59 virtual TBool ReadyToDraw() const;
60 void PreDrawWindow(CFbsBitGc * aGc, const TRegion &aRegion);
61 void PostDrawWindow(CFbsBitGc * aGc);
62 virtual void Invalidate(const TRect *) {}
63 virtual TInt SizeInBytes() const { return 0; }
64 virtual void WindowClosing();
67 CWsWindowRedraw(CWsWindow *aWin);
68 void SetReply(TInt aReply);
69 void OwnerPanic(TClientPanic aPanic);
70 inline void QueueRedraw();
71 inline CScreen* Screen() const;
72 inline CWsClientWindow *CliWin() const;
73 void DrawAnimsL(CFbsBitGc * aGc, const TRegion& aRegion);
75 CWsWindow *iWsWin; // Link back to main window class
76 const TRegion * iGlobalRedrawRegion;// During a scheduled draw, this is the area scheduled to be drawn.
79 class CWsBlankWindow : public CWsWindowRedraw
82 CWsBlankWindow(CWsWindow *aWin);
85 //from CWsWindowRedraw
86 TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
87 TBool NeedsRedraw() const;
88 TBool GetRedrawRect(TRect &aRect) const;
90 void SetColor(TRgb aColor);
91 inline void SetBackgroundClear();
92 inline TBool IsBackgroundColor();
95 TRgb BackColor() const;
103 inline CWsWindow *CWsWindowRedraw::WsWin()
108 inline CScreen* CWsWindowRedraw::Screen() const
110 return iWsWin->Screen();
113 inline CWsClientWindow *CWsWindowRedraw::CliWin() const
115 return (CWsClientWindow *)iWsWin;
118 inline void CWsBlankWindow::SetBackgroundClear()
123 inline TBool CWsBlankWindow::IsBackgroundColor()
128 inline void CWsWindowRedraw::QueueRedraw()
130 if (iWsWin->IsActive())
132 iWsWin->WsOwner()->RedrawQueue()->AddInvalid(this);
136 inline const TRegion * CWsWindowRedraw::GlobalRedrawRegion()
138 return iGlobalRedrawRegion;