os/graphics/windowing/windowserver/nonnga/SERVER/ScreenRedraw.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// SCREEN_REDRAW.H
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SCREEN_REDRAW_H__
sl@0
    19
#define __SCREEN_REDRAW_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <gdi.h>
sl@0
    24
#include "wstypes.h"
sl@0
    25
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
sl@0
    26
#include "Graphics/wsgraphicdrawerinternal.h"
sl@0
    27
sl@0
    28
class CScreen;
sl@0
    29
class CWsRenderStage;
sl@0
    30
class CWsWindow;
sl@0
    31
sl@0
    32
//#define USE_DEBUG_REGIONS
sl@0
    33
sl@0
    34
/**
sl@0
    35
The CScreenRedraw maintains the areas of the screen which need to be updated, and handles some of the
sl@0
    36
scheduling of draw code to do so.  It has a close relationship with the animation scheduler, which 
sl@0
    37
by default will be the CDefaultAnimationScheduler in server.cpp
sl@0
    38
*/
sl@0
    39
class CScreenRedraw : public CBase, public MWsScreenRedraw
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	static CScreenRedraw * NewL(CScreen& aScreen);
sl@0
    43
	virtual ~CScreenRedraw();
sl@0
    44
	const TTime& Now() const;
sl@0
    45
	void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
sl@0
    46
	void RegionUpdate();
sl@0
    47
	void ScheduleRedraw();
sl@0
    48
	void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop);
sl@0
    49
	void OnAnimation();
sl@0
    50
	void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
sl@0
    51
	void DoRedrawNow();
sl@0
    52
	void DiscardAllSchedules();
sl@0
    53
	void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow);
sl@0
    54
	void ScheduleWinFadeNoRedraw( CWsWindow* aWin );	
sl@0
    55
	void AcceptFadeRequest( CWsWindow* aWin, TBool	aIsFaded, TBool aIsBehind, TBool aIncludeChildren = EFalse );
sl@0
    56
	
sl@0
    57
public: // Implementing MWsScreenRedraw
sl@0
    58
	void SetObserver(MWsScreenRedrawObserver* aObserver);	
sl@0
    59
	TBool IsUpdatePending();
sl@0
    60
	const TRegion * AnimationRegion() const;
sl@0
    61
	void UpdateDevice();
sl@0
    62
	
sl@0
    63
public: // Implementing MWsObjectProvider
sl@0
    64
	TAny * ResolveObjectInterface(TUint aTypeId);
sl@0
    65
sl@0
    66
	void BanThisRegionUpdate( TRegion& aForbiddenRegion );
sl@0
    67
	void LiftRegionUpdateBan( TRegion& aFormerForbiddenRegion  );
sl@0
    68
	
sl@0
    69
private:
sl@0
    70
	CScreenRedraw(CScreen& aScreen);
sl@0
    71
	void ConstructL();
sl@0
    72
#	ifdef USE_DEBUG_REGIONS
sl@0
    73
	void DebugRect(TRgb aColor, TRgb aFill, const TRect * aRect);
sl@0
    74
	void DebugRegion(TRgb aColor, TRgb aFill, const TRegion * aRegion);
sl@0
    75
#	endif
sl@0
    76
sl@0
    77
private:
sl@0
    78
	struct TTimedRect
sl@0
    79
		{
sl@0
    80
		TTimedRect(const TRect& aRect, const TTime& aTime);
sl@0
    81
		TRect iRect;
sl@0
    82
		TTime iTime;
sl@0
    83
		static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther);
sl@0
    84
		};
sl@0
    85
sl@0
    86
private:
sl@0
    87
	CScreen& iScreen;
sl@0
    88
	mutable TTime iNow;
sl@0
    89
	mutable TTime iNext;
sl@0
    90
	TBool iScheduled;
sl@0
    91
	TBool iAnimating;
sl@0
    92
	TBool iRegionUpdateScheduled;
sl@0
    93
	TBool iRenderScheduled;
sl@0
    94
	RArray<TTimedRect> iTimedDrawRect;
sl@0
    95
	RRegionBuf<20> iInvalid;  // Region that needs to be redrawn (eg window contents changed).
sl@0
    96
	RRegionBuf<20> iTopLayer; // Region that we need to draw, but don't need to redraw (eg new window)
sl@0
    97
	const TRegion * iAnimationRegion; // Region being redrawn during animation
sl@0
    98
	MWsScreenRedrawObserver* iObserver;
sl@0
    99
	CWsRenderStage * iRenderStages;
sl@0
   100
	RRegion	iBannedRegion;
sl@0
   101
	};
sl@0
   102
sl@0
   103
#endif //__SCREEN_REDRAW_H__