1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/ScreenRedraw.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,136 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// SCREEN_REDRAW.H
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __SCREEN_REDRAW_H__
1.22 +#define __SCREEN_REDRAW_H__
1.23 +
1.24 +#include <e32base.h>
1.25 +#include <e32std.h>
1.26 +#include <gdi.h>
1.27 +#include "wstypes.h"
1.28 +#include "tcursor.h"
1.29 +#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
1.30 +#include "graphics/wsgraphicdrawerinternal.h"
1.31 +
1.32 +class CScreen;
1.33 +class CWsRenderStage;
1.34 +class TWalkWindowTreeSchedule;
1.35 +
1.36 +//#define USE_DEBUG_REGIONS
1.37 +
1.38 +/**
1.39 +The CScreenRedraw maintains the areas of the screen which need to be updated, and handles some of the
1.40 +scheduling of draw code to do so. It has a close relationship with the animation scheduler, which
1.41 +by default will be the CDefaultAnimationScheduler in server.cpp
1.42 +*/
1.43 +class CScreenRedraw : public CBase, public MWsScreenRedraw, public MWsWindowVisibilityObserver
1.44 + {
1.45 +public:
1.46 + static CScreenRedraw * NewL(CScreen& aScreen);
1.47 + virtual ~CScreenRedraw();
1.48 + const TTime& Now() const;
1.49 + void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
1.50 + void RegionUpdate();
1.51 + void ScheduleRedraw();
1.52 + void ScheduleAnimation(TAnimType aType, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop, CWsWindow* aWindow);
1.53 + TBool IsScheduled(TAnimType aType, const TRect& aRect, CWsWindow* aWindow) const;
1.54 + void OnAnimation(TRequestStatus* aFinished);
1.55 + void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
1.56 + void DoRedrawNow();
1.57 + void DiscardAllSchedules();
1.58 + void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow);
1.59 + void ScheduleWindow(CWsWindow* aWindow);
1.60 + void RemoveFromScheduledList(CWsWindow* aWindow);
1.61 + void RemoveFromTimedDrawList(CWsWindow* aWindow);
1.62 + void ScheduleQuickFade( CWsWindow* aWin );
1.63 + void RemoveFromQuickFadeList( CWsWindow* aWin );
1.64 + TBool IsQuickFadeScheduled( CWsWindow* aWin ) const;
1.65 + void AcceptFadeRequest( CWsWindow* aWin, TBool aFadeOn);
1.66 + inline TBool IsAnimating() const { return iAnimating; }
1.67 +public: // Implementing MWsScreenRedraw
1.68 + void SetObserver(MWsScreenRedrawObserver* aObserver);
1.69 + TBool IsUpdatePending();
1.70 + const TRegion * AnimationRegion() const;
1.71 + void UpdateDevice();
1.72 +
1.73 +public: // Implementing MWsObjectProvider
1.74 + TAny * ResolveObjectInterface(TUint aTypeId);
1.75 +
1.76 +public: // Implementing MWsWindowVisibilityObserver
1.77 + void VisibilityChanged();
1.78 + void SetWindowVisibility(const MWsWindow& aWindow, const TRegion& aVisibleRegion);
1.79 +
1.80 +public:
1.81 + MWsTextCursor* RenderStageTextCursor() const;
1.82 +
1.83 +private:
1.84 + CScreenRedraw(CScreen& aScreen);
1.85 + void ConstructL();
1.86 + void AddQuickFadeableRegions(TRegion& aRegion);
1.87 + void DoQuickFade(MWsGraphicsContext* aGc, TRegion& aAccumulatedDrawing);
1.88 + TBool ScheduleTimedRects(TRegion& aScheduledFloatingSpriteRegion);
1.89 + void Render(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler);
1.90 + void OomRender(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler);
1.91 +#ifdef USE_DEBUG_REGIONS
1.92 + void DebugRect(TRgb aColor, TRgb aFill, const TRect * aRect);
1.93 + void DebugRegion(TRgb aColor, TRgb aFill, const TRegion * aRegion);
1.94 +#endif
1.95 +#ifdef USE_DEBUG_FRAME_CAPTURE
1.96 + void CaptureFrame(const TRegion* aRegion);
1.97 + void SetupFrameCaptureResourcesL(const TSize& aScreenSize, TDisplayMode aScreenDisplayMode);
1.98 + void LogRegion(const TDesC& aPrefix, const TDesC& aFunctionName, const TRegion* aRegion);
1.99 +#endif
1.100 +
1.101 +private:
1.102 + struct TTimedRect
1.103 + {
1.104 + TTimedRect(TAnimType aType, const TRect& aRect, const TTime& aTime, CWsWindow* aWindow);
1.105 + TAnimType iType;
1.106 + TRect iRect;
1.107 + TTime iTime;
1.108 + CWsWindow* iWindow;
1.109 + static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther);
1.110 + };
1.111 +
1.112 +private:
1.113 + CScreen& iScreen;
1.114 + mutable TTime iNow;
1.115 + mutable TTime iNext;
1.116 + TBool iScheduled;
1.117 + TBool iAnimating;
1.118 + TBool iRegionUpdateScheduled;
1.119 + TBool iRenderScheduled;
1.120 + RArray<TTimedRect> iTimedDrawRect;
1.121 + RWsRegionBuf<20> iInvalid; // Region that needs to be redrawn (eg window contents changed).
1.122 + RWsRegionBuf<20> iTopElement; // Region that we need to draw, but don't need to redraw (eg new window)
1.123 + const TRegion * iAnimationRegion; // Region being redrawn during animation
1.124 + MWsScreenRedrawObserver* iObserver;
1.125 + CWsRenderStage * iRenderStages;
1.126 + MWsTextCursor* iRenderStageTextCursor;
1.127 + CWsWindow* iScheduledWindowList; // Linked list of scheduled windows (only used in DirtyWindowTracking mode)
1.128 + TBool iVisibilityUpdateScheduled;
1.129 + RPointerArray<CWsWindow> iQuickFadeList;
1.130 +#ifdef USE_DEBUG_FRAME_CAPTURE
1.131 + TBool iFrameCapture;
1.132 + TPtrC iFrameCaptureLocation;
1.133 + CFbsBitmap* iDebugBitmap;
1.134 + CFbsBitmapDevice* iDebugBitmapDevice;
1.135 + CFbsBitGc* iDebugBitmapGc;
1.136 +#endif //USE_DEBUG_FRAME_CAPTURE
1.137 + };
1.138 +
1.139 +#endif //__SCREEN_REDRAW_H__