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 __REMOTEGCUTILS_H__
|
sl@0
|
17 |
#define __REMOTEGCUTILS_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
All possible drawcommands that can be recorded and played by the RemoteGc.
|
sl@0
|
21 |
@publishedPartner
|
sl@0
|
22 |
@released*/
|
sl@0
|
23 |
enum TDrawCode
|
sl@0
|
24 |
{
|
sl@0
|
25 |
ECommandClear,
|
sl@0
|
26 |
ECommandClearRect,
|
sl@0
|
27 |
ECommandCopyRect,
|
sl@0
|
28 |
ECommandBitBlt1,
|
sl@0
|
29 |
ECommandBitBlt2,
|
sl@0
|
30 |
ECommandBitBltMasked,
|
sl@0
|
31 |
ECommandSetFaded,
|
sl@0
|
32 |
ECommandSetFadingParameters,
|
sl@0
|
33 |
ECommandAlphaBlendBitmaps,
|
sl@0
|
34 |
ECommandSetOrigin,
|
sl@0
|
35 |
ECommandSetDrawMode,
|
sl@0
|
36 |
ECommandSetClippingRect,
|
sl@0
|
37 |
ECommandCancelClippingRect,
|
sl@0
|
38 |
ECommandReset,
|
sl@0
|
39 |
ECommandUseFont,
|
sl@0
|
40 |
ECommandDiscardFont,
|
sl@0
|
41 |
ECommandSetUnderlineStyle,
|
sl@0
|
42 |
ECommandSetStrikethroughStyle,
|
sl@0
|
43 |
ECommandSetWordJustification,
|
sl@0
|
44 |
ECommandSetCharJustification,
|
sl@0
|
45 |
ECommandSetPenColor,
|
sl@0
|
46 |
ECommandSetPenStyle,
|
sl@0
|
47 |
ECommandSetPenSize,
|
sl@0
|
48 |
ECommandSetBrushColor,
|
sl@0
|
49 |
ECommandSetBrushStyle,
|
sl@0
|
50 |
ECommandSetBrushOrigin,
|
sl@0
|
51 |
ECommandUseBrushPattern,
|
sl@0
|
52 |
ECommandDiscardBrushPattern,
|
sl@0
|
53 |
ECommandMoveTo,
|
sl@0
|
54 |
ECommandMoveBy,
|
sl@0
|
55 |
ECommandPlot,
|
sl@0
|
56 |
ECommandDrawArc,
|
sl@0
|
57 |
ECommandDrawLine,
|
sl@0
|
58 |
ECommandDrawLineTo,
|
sl@0
|
59 |
ECommandDrawLineBy,
|
sl@0
|
60 |
ECommandDrawPolyLine,
|
sl@0
|
61 |
ECommandDrawPie,
|
sl@0
|
62 |
ECommandDrawEllipse,
|
sl@0
|
63 |
ECommandDrawRect,
|
sl@0
|
64 |
ECommandDrawRoundRect,
|
sl@0
|
65 |
ECommandDrawPolygon,
|
sl@0
|
66 |
ECommandDrawBitmap1,
|
sl@0
|
67 |
ECommandDrawBitmap2,
|
sl@0
|
68 |
ECommandDrawBitmap3,
|
sl@0
|
69 |
ECommandDrawBitmapMasked,
|
sl@0
|
70 |
ECommandDrawText1,
|
sl@0
|
71 |
ECommandDrawText2,
|
sl@0
|
72 |
ECommandDrawText3,
|
sl@0
|
73 |
ECommandMapColors,
|
sl@0
|
74 |
ECommandSetClippingRegion,
|
sl@0
|
75 |
ECommandCancelClippingRegion,
|
sl@0
|
76 |
ECommandDrawTextVertical1,
|
sl@0
|
77 |
ECommandDrawTextVertical2,
|
sl@0
|
78 |
ECommandDrawWsGraphic1,
|
sl@0
|
79 |
ECommandDrawWsGraphic2,
|
sl@0
|
80 |
ECommandSetShadowColor,
|
sl@0
|
81 |
// New DrawText API's that take in context
|
sl@0
|
82 |
ECommandDrawText4,
|
sl@0
|
83 |
ECommandDrawText5,
|
sl@0
|
84 |
ECommandDrawTextVertical3,
|
sl@0
|
85 |
ECommandDrawTextVertical4,
|
sl@0
|
86 |
|
sl@0
|
87 |
ECommandGetUnderlineMetrics,
|
sl@0
|
88 |
|
sl@0
|
89 |
ECommandDrawResourceToPos,
|
sl@0
|
90 |
ECommandDrawResourceToRect,
|
sl@0
|
91 |
ECommandDrawResourceFromRectToRect,
|
sl@0
|
92 |
ECommandDrawResourceWithData,
|
sl@0
|
93 |
};
|
sl@0
|
94 |
|
sl@0
|
95 |
#endif // __REMOTEGCUTILS_H__
|