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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CWsRedrawMsgWindow and associated classes definitions
18 #ifndef __REDRAWMSGWINDOW_H__
19 #define __REDRAWMSGWINDOW_H__
22 #include "redrawmsgwindow.h"
26 class CWsRedrawMsgWindow : public CWsWindowRedraw
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
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
49 enum TRedrawSegmentType
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
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);
64 public: //from CWsWindowRedraw
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();
76 void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
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;
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);
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);
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();
126 void ScheduleUpdateOfSegment(CRedrawSegment* aSegment);
127 void ReleaseRedrawSegments();
130 static TInt iNonRedrawAgeLimit;
131 static TAtomicityType iAtomicity;
133 class CRedrawSegment : public CBase
136 static CRedrawSegment* NewLC(const TRect& aRect, TRedrawSegmentType aNewRegionType);
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;
146 void ConstructL(const TRect& aRect, TRedrawSegmentType aNewRegionType);
148 TRedrawSegmentType iRedrawSegmentType;
149 CBufSeg* iDrawCommands;
150 TInt iCurrentCommandBufferWritePos;
152 RPointerArray<CFbsBitmap> iFbsBitmapArray;
153 RPointerArray<DWsBitmap> iWsBitmapArray;
154 RPointerArray<CWsFbsFont> iWsFontArray;
155 RArray<TGraphicDrawerId> iDrawerArray;
158 RWsRegion iInvalid; // Region we haven't been sent a begin redraw for.
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
168 // During a scheduled draw, this is the area being drawn to (see comments on ReadRegion)
169 RWsRegion iLocalRedrawRegion;
175 inline TBool CWsRedrawMsgWindow::IsRemoteReadRequired(TInt aOpCode) const
177 return (aOpCode==EWsGcOpDrawTextPtr || aOpCode==EWsGcOpDrawTextVerticalPtr ||
178 aOpCode==EWsGcOpDrawBoxTextPtr || aOpCode==EWsGcOpDrawBoxTextVerticalPtr);
181 inline TInt CWsRedrawMsgWindow::CurrentCommandBufferWritePos() const
183 WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
184 return iCurrentSegment->iCurrentCommandBufferWritePos;
187 inline CBufSeg* CWsRedrawMsgWindow::CurrentDrawCommandBuffer() const
189 WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
190 return iCurrentSegment->iDrawCommands;
193 inline TBool CWsRedrawMsgWindow::InRedraw() const
195 return iFlags&EBeginEndRedraw;