os/graphics/windowing/windowserver/nonnga/SERVER/redrawmsgwindow.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) 2006-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
// CWsRedrawMsgWindow and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __REDRAWMSGWINDOW_H__
sl@0
    19
#define __REDRAWMSGWINDOW_H__
sl@0
    20
sl@0
    21
#include "wnredraw.h"
sl@0
    22
#include "redrawmsgwindow.h"
sl@0
    23
sl@0
    24
class CWsFbsFont;
sl@0
    25
sl@0
    26
class CWsRedrawMsgWindow : public CWsWindowRedraw
sl@0
    27
	{
sl@0
    28
	class CRedrawSegment;
sl@0
    29
	enum TFlags
sl@0
    30
		{
sl@0
    31
		EBackgroundClear=0x0001,		//Clear background when starting redraw
sl@0
    32
		ENoRepeatRedraw=0x0004,			//Redraw is a response to an error, and should not repeat on another error
sl@0
    33
		EBeginEndRedraw=0x0080,			//This window is currently in the middle of a redraw, that is between client calls to BeginRedraw and EndRedraw.
sl@0
    34
		EPendingScheduledDraw=0x0200,   //We have scheduled a redraw but it hasn't happened yet
sl@0
    35
		EStoringEntireWindow=0x0400,    //If store commands for the entire window or only the viewport
sl@0
    36
		};
sl@0
    37
	enum TScope
sl@0
    38
		{
sl@0
    39
		EStoreEntireWindow,             //We try to obtain draw commands for the entire window
sl@0
    40
		EStoreViewport                  //We only try to obtain commands for the on screen viewport
sl@0
    41
		};
sl@0
    42
	enum TAtomicityType
sl@0
    43
		{
sl@0
    44
		ENoAtomicity,
sl@0
    45
		ESegment,
sl@0
    46
		EWindow,
sl@0
    47
		};
sl@0
    48
public:
sl@0
    49
	enum TRedrawSegmentType
sl@0
    50
		{
sl@0
    51
		ESegmentTypePendingRedraw,      // A redraw segment still being received
sl@0
    52
		ESegmentTypeRedraw,             // A segment received between a begin and end redraw
sl@0
    53
		ESegmentTypeNonRedraw,          // A segment storing commands received outside of begin and end redraw
sl@0
    54
		};
sl@0
    55
public:
sl@0
    56
	static void StaticInitL();
sl@0
    57
	CWsRedrawMsgWindow(CWsWindow *aWin);
sl@0
    58
	~CWsRedrawMsgWindow();
sl@0
    59
	void AddFbsBitmapsL(TInt aHandle, TInt aMaskHandle);
sl@0
    60
	void AddWsBitmapsL(TInt aHandle, TInt aMaskHandle);
sl@0
    61
	void AddWsFontL(TInt aHandle);
sl@0
    62
	void SetScope(TScope aStore);
sl@0
    63
	
sl@0
    64
public:	//from CWsWindowRedraw	
sl@0
    65
	void ConstructL();
sl@0
    66
	TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
sl@0
    67
	void ClipInvalidRegion(const TRect &aRect);
sl@0
    68
	TBool NeedsRedraw() const;
sl@0
    69
	TBool GetRedrawRect(TRect &aRect) const;
sl@0
    70
	void ClearRedrawStore(TBool aClearPendingRedraw=EFalse);
sl@0
    71
	TBool DrawCommand(CWsGc* aGc,const TAny *aCmdData);
sl@0
    72
	void GcAttributeChange(CWsGc* aGc,const TAny *aCmdData);
sl@0
    73
	void GcDeactivate(CWsGc* aGc);
sl@0
    74
	void ClientExposing();
sl@0
    75
	void DrawWindow();
sl@0
    76
	void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
sl@0
    77
	void Moved();
sl@0
    78
	TBool Contains(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
    79
	TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
sl@0
    80
	void VisibleRegionChange();
sl@0
    81
	TBool ReadyToDraw() const;
sl@0
    82
	TInt SizeInBytes() const;
sl@0
    83
	void WindowClosing();
sl@0
    84
sl@0
    85
private: //from CWsWindowRedraw	
sl@0
    86
	void Invalidate(const TRect * aRect = 0);
sl@0
    87
	TRgb BackColor() const;
sl@0
    88
	void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
sl@0
    89
	
sl@0
    90
private:
sl@0
    91
	void RemoveFromRedrawQueueIfEmpty();
sl@0
    92
	void HandleNonRedrawCommand(TWsGcOpcodes aOpcode);
sl@0
    93
	const TRegion * ReadRegion(const TInt aRegionNum);
sl@0
    94
	void BeginRedraw(const TRect* aRect);
sl@0
    95
	void DoBeginRedrawL(const TRect* aRect);
sl@0
    96
	TInt SubtractRectFromSegmentArray(const TRect& aRect);
sl@0
    97
	void EndRedraw();
sl@0
    98
	void ValidateRect(const TRect *aRect);
sl@0
    99
	void StoreDrawCommandL(CWsGc* aGc,const TAny *aCmdData);
sl@0
   100
	void AppendCommandL(const TAny* aCmdData, const TUint16 aOpcodeFlags = 0);
sl@0
   101
	void StoreAllGcAttributesL(CWsGc* aGc);
sl@0
   102
	void DrawCommandsL();
sl@0
   103
	void DiscardStoredCommands();
sl@0
   104
	TBool DiscardSegmentsOutsideViewport();
sl@0
   105
	inline TBool NoBuffer() const;
sl@0
   106
	void DiscardStoredCommandsIfError(TInt aError);
sl@0
   107
	inline TBool IsFbsBitmapOperation(TInt aOpCode) const;
sl@0
   108
	inline TBool IsWsBitmapOperation(TInt aOpCode) const;
sl@0
   109
	inline TBool IsRemoteReadRequired(TInt aOpCode) const;
sl@0
   110
	inline TBool IsWsFontOperation(TInt aOpCode) const;
sl@0
   111
	inline TBool IsDrawWsGraphicOperation(TInt aOpCode) const;
sl@0
   112
	void ReplaceAndAppendCommandL(TInt aOpcode,const TAny* aCmdData);
sl@0
   113
	// CRedrawSegment related methods
sl@0
   114
	inline TInt CurrentCommandBufferWritePos() const;
sl@0
   115
	inline CBufSeg* CurrentDrawCommandBuffer() const;
sl@0
   116
	void ExpandCommandBufferL(TInt aLength);
sl@0
   117
	void CommandBufferWrite(const TDesC8& aDes, TInt aLength);
sl@0
   118
	void CommandBufferWrite(const TAny* aPtr,TInt aLength);
sl@0
   119
	void CreateNewSegmentL(const TRect& aRect, TRedrawSegmentType aRegionType);
sl@0
   120
	inline TBool InRedraw() const;
sl@0
   121
	void AgeNonRedrawSegments();
sl@0
   122
	void PromoteAndUpdateAllPendingSegments();
sl@0
   123
	void PromoteLastPendingSegment();
sl@0
   124
	void Lock();
sl@0
   125
	void Unlock();
sl@0
   126
	void ScheduleUpdateOfSegment(CRedrawSegment* aSegment);
sl@0
   127
	void ReleaseRedrawSegments();
sl@0
   128
sl@0
   129
private:
sl@0
   130
	static TInt iNonRedrawAgeLimit;
sl@0
   131
	static TAtomicityType iAtomicity;
sl@0
   132
private:
sl@0
   133
	class CRedrawSegment : public CBase
sl@0
   134
		{
sl@0
   135
	public:
sl@0
   136
		static CRedrawSegment* NewLC(const TRect& aRect, TRedrawSegmentType aNewRegionType);
sl@0
   137
		~CRedrawSegment();
sl@0
   138
		void AddFbsBitmapL(TInt aHandle, CWsRedrawMsgWindow* aWindow);
sl@0
   139
		void AddWsBitmapL(DWsBitmap* bitmap);
sl@0
   140
		void ReleaseFontsAndBitmaps();
sl@0
   141
		void AddDrawerL(TGraphicDrawerId aDrawerId);
sl@0
   142
		TBool ContainsDrawers(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
   143
		TInt SizeInBytes() const;
sl@0
   144
	private:
sl@0
   145
		CRedrawSegment();
sl@0
   146
		void ConstructL(const TRect& aRect, TRedrawSegmentType aNewRegionType);
sl@0
   147
	public:
sl@0
   148
		TRedrawSegmentType	iRedrawSegmentType;
sl@0
   149
		CBufSeg* iDrawCommands;
sl@0
   150
		TInt iCurrentCommandBufferWritePos;
sl@0
   151
		RWsRegion iRegion;
sl@0
   152
		RPointerArray<CFbsBitmap> iFbsBitmapArray;
sl@0
   153
		RPointerArray<DWsBitmap> iWsBitmapArray;
sl@0
   154
		RPointerArray<CWsFbsFont> iWsFontArray;
sl@0
   155
		RArray<TGraphicDrawerId> iDrawerArray;
sl@0
   156
		TTime iCreationTime;
sl@0
   157
		};
sl@0
   158
	RWsRegion iInvalid; // Region we haven't been sent a begin redraw for.
sl@0
   159
	TRect iRedrawRect;
sl@0
   160
	TRgb iBackColor;
sl@0
   161
	TInt iFlags;
sl@0
   162
	// Regions currently in use for drawing this window:
sl@0
   163
	RPointerArray<CRedrawSegment> iRedrawSegments;
sl@0
   164
	// The segment we are currently storing to.  This is allowed to be null!
sl@0
   165
	CRedrawSegment * iCurrentSegment;
sl@0
   166
	// The last GC we drew with so we can detect changes
sl@0
   167
	CWsGc* iLastDrawGc;
sl@0
   168
	// During a scheduled draw, this is the area being drawn to (see comments on ReadRegion)
sl@0
   169
	RWsRegion iLocalRedrawRegion;
sl@0
   170
	TInt iMemoryLock;
sl@0
   171
	TBool iOSBStatus;
sl@0
   172
	TInt iCount;
sl@0
   173
	};
sl@0
   174
sl@0
   175
inline TBool CWsRedrawMsgWindow::IsRemoteReadRequired(TInt aOpCode) const
sl@0
   176
	{
sl@0
   177
	return (aOpCode==EWsGcOpDrawTextPtr || aOpCode==EWsGcOpDrawTextVerticalPtr || 
sl@0
   178
		aOpCode==EWsGcOpDrawBoxTextPtr || aOpCode==EWsGcOpDrawBoxTextVerticalPtr);
sl@0
   179
	}
sl@0
   180
sl@0
   181
inline TInt CWsRedrawMsgWindow::CurrentCommandBufferWritePos() const
sl@0
   182
	{
sl@0
   183
	WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
sl@0
   184
	return iCurrentSegment->iCurrentCommandBufferWritePos;
sl@0
   185
	}
sl@0
   186
sl@0
   187
inline CBufSeg* CWsRedrawMsgWindow::CurrentDrawCommandBuffer() const
sl@0
   188
	{
sl@0
   189
	WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
sl@0
   190
	return iCurrentSegment->iDrawCommands;
sl@0
   191
	}
sl@0
   192
sl@0
   193
inline TBool CWsRedrawMsgWindow::InRedraw() const
sl@0
   194
	{
sl@0
   195
	return iFlags&EBeginEndRedraw;
sl@0
   196
	}
sl@0
   197
sl@0
   198
#endif