sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // SCREEN_REDRAW.H sl@0: // sl@0: // sl@0: sl@0: #ifndef __SCREEN_REDRAW_H__ sl@0: #define __SCREEN_REDRAW_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "wstypes.h" sl@0: #include "tcursor.h" sl@0: #include sl@0: #include "graphics/wsgraphicdrawerinternal.h" sl@0: sl@0: class CScreen; sl@0: class CWsRenderStage; sl@0: class TWalkWindowTreeSchedule; sl@0: sl@0: //#define USE_DEBUG_REGIONS sl@0: sl@0: /** sl@0: The CScreenRedraw maintains the areas of the screen which need to be updated, and handles some of the sl@0: scheduling of draw code to do so. It has a close relationship with the animation scheduler, which sl@0: by default will be the CDefaultAnimationScheduler in server.cpp sl@0: */ sl@0: class CScreenRedraw : public CBase, public MWsScreenRedraw, public MWsWindowVisibilityObserver sl@0: { sl@0: public: sl@0: static CScreenRedraw * NewL(CScreen& aScreen); sl@0: virtual ~CScreenRedraw(); sl@0: const TTime& Now() const; sl@0: void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty); sl@0: void RegionUpdate(); sl@0: void ScheduleRedraw(); sl@0: void ScheduleAnimation(TAnimType aType, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop, CWsWindow* aWindow); sl@0: TBool IsScheduled(TAnimType aType, const TRect& aRect, CWsWindow* aWindow) const; sl@0: void OnAnimation(TRequestStatus* aFinished); sl@0: void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll); sl@0: void DoRedrawNow(); sl@0: void DiscardAllSchedules(); sl@0: void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow); sl@0: void ScheduleWindow(CWsWindow* aWindow); sl@0: void RemoveFromScheduledList(CWsWindow* aWindow); sl@0: void RemoveFromTimedDrawList(CWsWindow* aWindow); sl@0: void ScheduleQuickFade( CWsWindow* aWin ); sl@0: void RemoveFromQuickFadeList( CWsWindow* aWin ); sl@0: TBool IsQuickFadeScheduled( CWsWindow* aWin ) const; sl@0: void AcceptFadeRequest( CWsWindow* aWin, TBool aFadeOn); sl@0: inline TBool IsAnimating() const { return iAnimating; } sl@0: public: // Implementing MWsScreenRedraw sl@0: void SetObserver(MWsScreenRedrawObserver* aObserver); sl@0: TBool IsUpdatePending(); sl@0: const TRegion * AnimationRegion() const; sl@0: void UpdateDevice(); sl@0: sl@0: public: // Implementing MWsObjectProvider sl@0: TAny * ResolveObjectInterface(TUint aTypeId); sl@0: sl@0: public: // Implementing MWsWindowVisibilityObserver sl@0: void VisibilityChanged(); sl@0: void SetWindowVisibility(const MWsWindow& aWindow, const TRegion& aVisibleRegion); sl@0: sl@0: public: sl@0: MWsTextCursor* RenderStageTextCursor() const; sl@0: sl@0: private: sl@0: CScreenRedraw(CScreen& aScreen); sl@0: void ConstructL(); sl@0: void AddQuickFadeableRegions(TRegion& aRegion); sl@0: void DoQuickFade(MWsGraphicsContext* aGc, TRegion& aAccumulatedDrawing); sl@0: TBool ScheduleTimedRects(TRegion& aScheduledFloatingSpriteRegion); sl@0: void Render(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler); sl@0: void OomRender(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler); sl@0: #ifdef USE_DEBUG_REGIONS sl@0: void DebugRect(TRgb aColor, TRgb aFill, const TRect * aRect); sl@0: void DebugRegion(TRgb aColor, TRgb aFill, const TRegion * aRegion); sl@0: #endif sl@0: #ifdef USE_DEBUG_FRAME_CAPTURE sl@0: void CaptureFrame(const TRegion* aRegion); sl@0: void SetupFrameCaptureResourcesL(const TSize& aScreenSize, TDisplayMode aScreenDisplayMode); sl@0: void LogRegion(const TDesC& aPrefix, const TDesC& aFunctionName, const TRegion* aRegion); sl@0: #endif sl@0: sl@0: private: sl@0: struct TTimedRect sl@0: { sl@0: TTimedRect(TAnimType aType, const TRect& aRect, const TTime& aTime, CWsWindow* aWindow); sl@0: TAnimType iType; sl@0: TRect iRect; sl@0: TTime iTime; sl@0: CWsWindow* iWindow; sl@0: static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther); sl@0: }; sl@0: sl@0: private: sl@0: CScreen& iScreen; sl@0: mutable TTime iNow; sl@0: mutable TTime iNext; sl@0: TBool iScheduled; sl@0: TBool iAnimating; sl@0: TBool iRegionUpdateScheduled; sl@0: TBool iRenderScheduled; sl@0: RArray iTimedDrawRect; sl@0: RWsRegionBuf<20> iInvalid; // Region that needs to be redrawn (eg window contents changed). sl@0: RWsRegionBuf<20> iTopElement; // Region that we need to draw, but don't need to redraw (eg new window) sl@0: const TRegion * iAnimationRegion; // Region being redrawn during animation sl@0: MWsScreenRedrawObserver* iObserver; sl@0: CWsRenderStage * iRenderStages; sl@0: MWsTextCursor* iRenderStageTextCursor; sl@0: CWsWindow* iScheduledWindowList; // Linked list of scheduled windows (only used in DirtyWindowTracking mode) sl@0: TBool iVisibilityUpdateScheduled; sl@0: RPointerArray iQuickFadeList; sl@0: #ifdef USE_DEBUG_FRAME_CAPTURE sl@0: TBool iFrameCapture; sl@0: TPtrC iFrameCaptureLocation; sl@0: CFbsBitmap* iDebugBitmap; sl@0: CFbsBitmapDevice* iDebugBitmapDevice; sl@0: CFbsBitGc* iDebugBitmapGc; sl@0: #endif //USE_DEBUG_FRAME_CAPTURE sl@0: }; sl@0: sl@0: #endif //__SCREEN_REDRAW_H__