First public contribution.
1 // Copyright (c) 2007-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.
18 #ifndef __SCREEN_REDRAW_H__
19 #define __SCREEN_REDRAW_H__
25 #include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
26 #include "Graphics/wsgraphicdrawerinternal.h"
32 //#define USE_DEBUG_REGIONS
35 The CScreenRedraw maintains the areas of the screen which need to be updated, and handles some of the
36 scheduling of draw code to do so. It has a close relationship with the animation scheduler, which
37 by default will be the CDefaultAnimationScheduler in server.cpp
39 class CScreenRedraw : public CBase, public MWsScreenRedraw
42 static CScreenRedraw * NewL(CScreen& aScreen);
43 virtual ~CScreenRedraw();
44 const TTime& Now() const;
45 void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
47 void ScheduleRedraw();
48 void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop);
50 void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
52 void DiscardAllSchedules();
53 void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow);
54 void ScheduleWinFadeNoRedraw( CWsWindow* aWin );
55 void AcceptFadeRequest( CWsWindow* aWin, TBool aIsFaded, TBool aIsBehind, TBool aIncludeChildren = EFalse );
57 public: // Implementing MWsScreenRedraw
58 void SetObserver(MWsScreenRedrawObserver* aObserver);
59 TBool IsUpdatePending();
60 const TRegion * AnimationRegion() const;
63 public: // Implementing MWsObjectProvider
64 TAny * ResolveObjectInterface(TUint aTypeId);
66 void BanThisRegionUpdate( TRegion& aForbiddenRegion );
67 void LiftRegionUpdateBan( TRegion& aFormerForbiddenRegion );
70 CScreenRedraw(CScreen& aScreen);
72 # ifdef USE_DEBUG_REGIONS
73 void DebugRect(TRgb aColor, TRgb aFill, const TRect * aRect);
74 void DebugRegion(TRgb aColor, TRgb aFill, const TRegion * aRegion);
80 TTimedRect(const TRect& aRect, const TTime& aTime);
83 static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther);
92 TBool iRegionUpdateScheduled;
93 TBool iRenderScheduled;
94 RArray<TTimedRect> iTimedDrawRect;
95 RRegionBuf<20> iInvalid; // Region that needs to be redrawn (eg window contents changed).
96 RRegionBuf<20> iTopLayer; // Region that we need to draw, but don't need to redraw (eg new window)
97 const TRegion * iAnimationRegion; // Region being redrawn during animation
98 MWsScreenRedrawObserver* iObserver;
99 CWsRenderStage * iRenderStages;
100 RRegion iBannedRegion;
103 #endif //__SCREEN_REDRAW_H__