sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __REMOTEGCUTILS_H__ sl@0: #define __REMOTEGCUTILS_H__ sl@0: sl@0: /** sl@0: All possible drawcommands that can be recorded and played by the RemoteGc. sl@0: @publishedPartner sl@0: @released*/ sl@0: enum TDrawCode sl@0: { sl@0: ECommandClear, sl@0: ECommandClearRect, sl@0: ECommandCopyRect, sl@0: ECommandBitBlt1, sl@0: ECommandBitBlt2, sl@0: ECommandBitBltMasked, sl@0: ECommandSetFaded, sl@0: ECommandSetFadingParameters, sl@0: ECommandAlphaBlendBitmaps, sl@0: ECommandSetOrigin, sl@0: ECommandSetDrawMode, sl@0: ECommandSetClippingRect, sl@0: ECommandCancelClippingRect, sl@0: ECommandReset, sl@0: ECommandUseFont, sl@0: ECommandDiscardFont, sl@0: ECommandSetUnderlineStyle, sl@0: ECommandSetStrikethroughStyle, sl@0: ECommandSetWordJustification, sl@0: ECommandSetCharJustification, sl@0: ECommandSetPenColor, sl@0: ECommandSetPenStyle, sl@0: ECommandSetPenSize, sl@0: ECommandSetBrushColor, sl@0: ECommandSetBrushStyle, sl@0: ECommandSetBrushOrigin, sl@0: ECommandUseBrushPattern, sl@0: ECommandDiscardBrushPattern, sl@0: ECommandMoveTo, sl@0: ECommandMoveBy, sl@0: ECommandPlot, sl@0: ECommandDrawArc, sl@0: ECommandDrawLine, sl@0: ECommandDrawLineTo, sl@0: ECommandDrawLineBy, sl@0: ECommandDrawPolyLine, sl@0: ECommandDrawPie, sl@0: ECommandDrawEllipse, sl@0: ECommandDrawRect, sl@0: ECommandDrawRoundRect, sl@0: ECommandDrawPolygon, sl@0: ECommandDrawBitmap1, sl@0: ECommandDrawBitmap2, sl@0: ECommandDrawBitmap3, sl@0: ECommandDrawBitmapMasked, sl@0: ECommandDrawText1, sl@0: ECommandDrawText2, sl@0: ECommandDrawText3, sl@0: ECommandMapColors, sl@0: ECommandSetClippingRegion, sl@0: ECommandCancelClippingRegion, sl@0: ECommandDrawTextVertical1, sl@0: ECommandDrawTextVertical2, sl@0: ECommandDrawWsGraphic1, sl@0: ECommandDrawWsGraphic2, sl@0: ECommandSetShadowColor, sl@0: // New DrawText API's that take in context sl@0: ECommandDrawText4, sl@0: ECommandDrawText5, sl@0: ECommandDrawTextVertical3, sl@0: ECommandDrawTextVertical4, sl@0: sl@0: ECommandGetUnderlineMetrics, sl@0: sl@0: ECommandDrawResourceToPos, sl@0: ECommandDrawResourceToRect, sl@0: ECommandDrawResourceFromRectToRect, sl@0: ECommandDrawResourceWithData, sl@0: }; sl@0: sl@0: #endif // __REMOTEGCUTILS_H__