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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __DRAWSECTION_H__
|
sl@0
|
17 |
#define __DRAWSECTION_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <w32std.h>
|
sl@0
|
20 |
#include <s32mem.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
class TWsGraphicMsgBufParser;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
CDrawSection contains information about one recorded redraw in the CCommandBuffer.
|
sl@0
|
26 |
It has a segmented buffer containing all drawcommands that belongs to this drawsection.
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
NONSHARABLE_CLASS(CDrawSection) : public CBase
|
sl@0
|
29 |
{
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
static CDrawSection* NewL();
|
sl@0
|
32 |
static CDrawSection* NewL(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand);
|
sl@0
|
33 |
~CDrawSection();
|
sl@0
|
34 |
|
sl@0
|
35 |
void SetBuffer(CBufBase* aSegBuf);
|
sl@0
|
36 |
CBufBase* Buffer() const;
|
sl@0
|
37 |
void SetHasBeenExternalized(TBool aHasBeenExternalized);
|
sl@0
|
38 |
TBool HasBeenExternalized() const;
|
sl@0
|
39 |
TBool IsIdentical(const CDrawSection& aDrawSection) const;
|
sl@0
|
40 |
void ExternalizeL(RWsGraphicMsgBuf& aMsgBuf);
|
sl@0
|
41 |
TInt LoadL(const TWsGraphicMsgBufParser& aData, TInt aIndex);
|
sl@0
|
42 |
TRect DrawRect() const;
|
sl@0
|
43 |
|
sl@0
|
44 |
private:
|
sl@0
|
45 |
CDrawSection();
|
sl@0
|
46 |
CDrawSection(const TRect& aDrawRect, const TRect& aBoundingRect, TBool aHasBitmapCommand);
|
sl@0
|
47 |
|
sl@0
|
48 |
private:
|
sl@0
|
49 |
TRect iDrawRect;
|
sl@0
|
50 |
TRect iBoundingRect;
|
sl@0
|
51 |
TBool iHasBitmapCommand;
|
sl@0
|
52 |
TBool iHasBeenExternalized;
|
sl@0
|
53 |
CBufBase* iSectionSegBuf;
|
sl@0
|
54 |
};
|
sl@0
|
55 |
|
sl@0
|
56 |
#endif // __DRAWSECTION_H__
|