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 "tcursor.h"
|
sl@0
|
26 |
#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
27 |
#include "graphics/wsgraphicdrawerinternal.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
class CScreen;
|
sl@0
|
30 |
class CWsRenderStage;
|
sl@0
|
31 |
class TWalkWindowTreeSchedule;
|
sl@0
|
32 |
|
sl@0
|
33 |
//#define USE_DEBUG_REGIONS
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
The CScreenRedraw maintains the areas of the screen which need to be updated, and handles some of the
|
sl@0
|
37 |
scheduling of draw code to do so. It has a close relationship with the animation scheduler, which
|
sl@0
|
38 |
by default will be the CDefaultAnimationScheduler in server.cpp
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CScreenRedraw : public CBase, public MWsScreenRedraw, public MWsWindowVisibilityObserver
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
static CScreenRedraw * NewL(CScreen& aScreen);
|
sl@0
|
44 |
virtual ~CScreenRedraw();
|
sl@0
|
45 |
const TTime& Now() const;
|
sl@0
|
46 |
void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
|
sl@0
|
47 |
void RegionUpdate();
|
sl@0
|
48 |
void ScheduleRedraw();
|
sl@0
|
49 |
void ScheduleAnimation(TAnimType aType, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop, CWsWindow* aWindow);
|
sl@0
|
50 |
TBool IsScheduled(TAnimType aType, const TRect& aRect, CWsWindow* aWindow) const;
|
sl@0
|
51 |
void OnAnimation(TRequestStatus* aFinished);
|
sl@0
|
52 |
void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
|
sl@0
|
53 |
void DoRedrawNow();
|
sl@0
|
54 |
void DiscardAllSchedules();
|
sl@0
|
55 |
void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow);
|
sl@0
|
56 |
void ScheduleWindow(CWsWindow* aWindow);
|
sl@0
|
57 |
void RemoveFromScheduledList(CWsWindow* aWindow);
|
sl@0
|
58 |
void RemoveFromTimedDrawList(CWsWindow* aWindow);
|
sl@0
|
59 |
void ScheduleQuickFade( CWsWindow* aWin );
|
sl@0
|
60 |
void RemoveFromQuickFadeList( CWsWindow* aWin );
|
sl@0
|
61 |
TBool IsQuickFadeScheduled( CWsWindow* aWin ) const;
|
sl@0
|
62 |
void AcceptFadeRequest( CWsWindow* aWin, TBool aFadeOn);
|
sl@0
|
63 |
inline TBool IsAnimating() const { return iAnimating; }
|
sl@0
|
64 |
public: // Implementing MWsScreenRedraw
|
sl@0
|
65 |
void SetObserver(MWsScreenRedrawObserver* aObserver);
|
sl@0
|
66 |
TBool IsUpdatePending();
|
sl@0
|
67 |
const TRegion * AnimationRegion() const;
|
sl@0
|
68 |
void UpdateDevice();
|
sl@0
|
69 |
|
sl@0
|
70 |
public: // Implementing MWsObjectProvider
|
sl@0
|
71 |
TAny * ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
72 |
|
sl@0
|
73 |
public: // Implementing MWsWindowVisibilityObserver
|
sl@0
|
74 |
void VisibilityChanged();
|
sl@0
|
75 |
void SetWindowVisibility(const MWsWindow& aWindow, const TRegion& aVisibleRegion);
|
sl@0
|
76 |
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
MWsTextCursor* RenderStageTextCursor() const;
|
sl@0
|
79 |
|
sl@0
|
80 |
private:
|
sl@0
|
81 |
CScreenRedraw(CScreen& aScreen);
|
sl@0
|
82 |
void ConstructL();
|
sl@0
|
83 |
void AddQuickFadeableRegions(TRegion& aRegion);
|
sl@0
|
84 |
void DoQuickFade(MWsGraphicsContext* aGc, TRegion& aAccumulatedDrawing);
|
sl@0
|
85 |
TBool ScheduleTimedRects(TRegion& aScheduledFloatingSpriteRegion);
|
sl@0
|
86 |
void Render(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler);
|
sl@0
|
87 |
void OomRender(CWsWindow& aWin, MWsGraphicsContext& aGc, const TWalkWindowTreeSchedule& aScheduler);
|
sl@0
|
88 |
#ifdef USE_DEBUG_REGIONS
|
sl@0
|
89 |
void DebugRect(TRgb aColor, TRgb aFill, const TRect * aRect);
|
sl@0
|
90 |
void DebugRegion(TRgb aColor, TRgb aFill, const TRegion * aRegion);
|
sl@0
|
91 |
#endif
|
sl@0
|
92 |
#ifdef USE_DEBUG_FRAME_CAPTURE
|
sl@0
|
93 |
void CaptureFrame(const TRegion* aRegion);
|
sl@0
|
94 |
void SetupFrameCaptureResourcesL(const TSize& aScreenSize, TDisplayMode aScreenDisplayMode);
|
sl@0
|
95 |
void LogRegion(const TDesC& aPrefix, const TDesC& aFunctionName, const TRegion* aRegion);
|
sl@0
|
96 |
#endif
|
sl@0
|
97 |
|
sl@0
|
98 |
private:
|
sl@0
|
99 |
struct TTimedRect
|
sl@0
|
100 |
{
|
sl@0
|
101 |
TTimedRect(TAnimType aType, const TRect& aRect, const TTime& aTime, CWsWindow* aWindow);
|
sl@0
|
102 |
TAnimType iType;
|
sl@0
|
103 |
TRect iRect;
|
sl@0
|
104 |
TTime iTime;
|
sl@0
|
105 |
CWsWindow* iWindow;
|
sl@0
|
106 |
static TInt Compare(const TTimedRect& aOne,const TTimedRect& aOther);
|
sl@0
|
107 |
};
|
sl@0
|
108 |
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
CScreen& iScreen;
|
sl@0
|
111 |
mutable TTime iNow;
|
sl@0
|
112 |
mutable TTime iNext;
|
sl@0
|
113 |
TBool iScheduled;
|
sl@0
|
114 |
TBool iAnimating;
|
sl@0
|
115 |
TBool iRegionUpdateScheduled;
|
sl@0
|
116 |
TBool iRenderScheduled;
|
sl@0
|
117 |
RArray<TTimedRect> iTimedDrawRect;
|
sl@0
|
118 |
RWsRegionBuf<20> iInvalid; // Region that needs to be redrawn (eg window contents changed).
|
sl@0
|
119 |
RWsRegionBuf<20> iTopElement; // Region that we need to draw, but don't need to redraw (eg new window)
|
sl@0
|
120 |
const TRegion * iAnimationRegion; // Region being redrawn during animation
|
sl@0
|
121 |
MWsScreenRedrawObserver* iObserver;
|
sl@0
|
122 |
CWsRenderStage * iRenderStages;
|
sl@0
|
123 |
MWsTextCursor* iRenderStageTextCursor;
|
sl@0
|
124 |
CWsWindow* iScheduledWindowList; // Linked list of scheduled windows (only used in DirtyWindowTracking mode)
|
sl@0
|
125 |
TBool iVisibilityUpdateScheduled;
|
sl@0
|
126 |
RPointerArray<CWsWindow> iQuickFadeList;
|
sl@0
|
127 |
#ifdef USE_DEBUG_FRAME_CAPTURE
|
sl@0
|
128 |
TBool iFrameCapture;
|
sl@0
|
129 |
TPtrC iFrameCaptureLocation;
|
sl@0
|
130 |
CFbsBitmap* iDebugBitmap;
|
sl@0
|
131 |
CFbsBitmapDevice* iDebugBitmapDevice;
|
sl@0
|
132 |
CFbsBitGc* iDebugBitmapGc;
|
sl@0
|
133 |
#endif //USE_DEBUG_FRAME_CAPTURE
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
#endif //__SCREEN_REDRAW_H__
|