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