First public contribution.
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.
16 #ifndef __DRAWSECTION_H__
17 #define __DRAWSECTION_H__
22 class TWsGraphicMsgBufParser;
25 CDrawSection contains information about one recorded redraw in the CCommandBuffer.
26 It has a segmented buffer containing all drawcommands that belongs to this drawsection.
28 NONSHARABLE_CLASS(CDrawSection) : public CBase
31 static CDrawSection* NewL();
32 static CDrawSection* NewL(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand);
35 void SetBuffer(CBufBase* aSegBuf);
36 CBufBase* Buffer() const;
37 void SetHasBeenExternalized(TBool aHasBeenExternalized);
38 TBool HasBeenExternalized() const;
39 TBool IsIdentical(const CDrawSection& aDrawSection) const;
40 void ExternalizeL(RWsGraphicMsgBuf& aMsgBuf);
41 TInt LoadL(const TWsGraphicMsgBufParser& aData, TInt aIndex);
42 TRect DrawRect() const;
46 CDrawSection(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand);
51 TBool iHasBitmapCommand;
52 TBool iHasBeenExternalized;
53 CBufBase* iSectionSegBuf;
56 #endif // __DRAWSECTION_H__