os/graphics/windowing/windowserver/nonnga/SERVER/ScreenRedraw.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // SCREEN_REDRAW.H
    15 // 
    16 //
    17 
    18 #ifndef __SCREEN_REDRAW_H__
    19 #define __SCREEN_REDRAW_H__
    20 
    21 #include <e32base.h>
    22 #include <e32std.h>
    23 #include <gdi.h>
    24 #include "wstypes.h"
    25 #include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
    26 #include "Graphics/wsgraphicdrawerinternal.h"
    27 
    28 class CScreen;
    29 class CWsRenderStage;
    30 class CWsWindow;
    31 
    32 //#define USE_DEBUG_REGIONS
    33 
    34 /**
    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
    38 */
    39 class CScreenRedraw : public CBase, public MWsScreenRedraw
    40 	{
    41 public:
    42 	static CScreenRedraw * NewL(CScreen& aScreen);
    43 	virtual ~CScreenRedraw();
    44 	const TTime& Now() const;
    45 	void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
    46 	void RegionUpdate();
    47 	void ScheduleRedraw();
    48 	void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop);
    49 	void OnAnimation();
    50 	void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
    51 	void DoRedrawNow();
    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 );
    56 	
    57 public: // Implementing MWsScreenRedraw
    58 	void SetObserver(MWsScreenRedrawObserver* aObserver);	
    59 	TBool IsUpdatePending();
    60 	const TRegion * AnimationRegion() const;
    61 	void UpdateDevice();
    62 	
    63 public: // Implementing MWsObjectProvider
    64 	TAny * ResolveObjectInterface(TUint aTypeId);
    65 
    66 	void BanThisRegionUpdate( TRegion& aForbiddenRegion );
    67 	void LiftRegionUpdateBan( TRegion& aFormerForbiddenRegion  );
    68 	
    69 private:
    70 	CScreenRedraw(CScreen& aScreen);
    71 	void ConstructL();
    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);
    75 #	endif
    76 
    77 private:
    78 	struct TTimedRect
    79 		{
    80 		TTimedRect(const TRect& aRect, const TTime& aTime);
    81 		TRect iRect;
    82 		TTime iTime;
    83 		static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther);
    84 		};
    85 
    86 private:
    87 	CScreen& iScreen;
    88 	mutable TTime iNow;
    89 	mutable TTime iNext;
    90 	TBool iScheduled;
    91 	TBool iAnimating;
    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;
   101 	};
   102 
   103 #endif //__SCREEN_REDRAW_H__