os/graphics/windowing/windowserver/test/t_eventchecker/inc/graphicscontextchecker.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_eventchecker/inc/graphicscontextchecker.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,144 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __GRAPHICSCONTEXTCHECKER_H__
1.20 +#define __GRAPHICSCONTEXTCHECKER_H__
1.21 +
1.22 +#include <graphics/wsgraphicscontext.h>
1.23 +#include <graphics/wscursor.h>
1.24 +#include <graphics/wsgraphicdrawer.h>
1.25 +
1.26 +class CGraphicsContextChecker : public CBase,
1.27 + public MWsGraphicsContext,
1.28 + public MWsTextCursor,
1.29 + public MWsFader,
1.30 + public MWsDrawAnnotationObserver
1.31 + {
1.32 +public:
1.33 + static CGraphicsContextChecker* NewL(MWsGraphicDrawerEnvironment& aEnv);
1.34 + ~CGraphicsContextChecker();
1.35 +
1.36 + void SetGraphicsContext(MWsGraphicsContext* aGraphicsContext);
1.37 + const MWsGraphicsContext* GraphicsContext() const;
1.38 + void SetTextCursor(MWsTextCursor* aTextCursor);
1.39 + const MWsTextCursor* TextCursor() const;
1.40 + void SetFader(MWsFader* aFader);
1.41 + const MWsFader* Fader() const;
1.42 +
1.43 +public: //MWsObjectProvider
1.44 + TAny* ResolveObjectInterface(TUint aTypeId);
1.45 +public: //MWsGraphicsContext
1.46 + void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap);
1.47 + void BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
1.48 + void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
1.49 + void BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos);
1.50 + void ResetClippingRegion();
1.51 + void Clear();
1.52 + void Clear(const TRect& aRect);
1.53 + void ResetBrushPattern();
1.54 + void ResetFont();
1.55 + void DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
1.56 + void DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd);
1.57 + void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap);
1.58 + void DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect);
1.59 + void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask);
1.60 + void DrawRoundRect(const TRect& aRect, const TSize& aEllipse);
1.61 + void DrawPolyLine(const TArray<TPoint>& aPointList);
1.62 + void DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList);
1.63 + void DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule=EAlternate);
1.64 + void DrawEllipse(const TRect& aRect);
1.65 + void DrawLine(const TPoint& aStart, const TPoint& aEnd);
1.66 + void DrawLineTo(const TPoint& aPoint);
1.67 + void DrawLineBy(const TPoint& aVector);
1.68 + void DrawRect(const TRect& aRect);
1.69 + void DrawText(const TDesC& aText, const TTextParameters* aParam);
1.70 + void DrawText(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition);
1.71 + void DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect);
1.72 + void DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset, TTextAlign aHrz=ELeft, TInt aMargin=0);
1.73 + void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp);
1.74 + void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition, TBool aUp);
1.75 + void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TBool aUp);
1.76 + void DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TBool aUp, TTextAlign aVert=ELeft, TInt aMargin=0);
1.77 + void DrawTextVertical(const TDesC& aText,const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TInt aTextWidth, TBool aUp, TTextAlign aVert=ELeft, TInt aMargin=0);
1.78 + void MoveTo(const TPoint& aPoint);
1.79 + void MoveBy(const TPoint& aVector);
1.80 + void Plot(const TPoint& aPoint);
1.81 + void Reset();
1.82 + void SetBrushColor(const TRgb& aColor);
1.83 + void SetBrushOrigin(const TPoint& aOrigin);
1.84 + void SetBrushStyle(TBrushStyle aBrushStyle);
1.85 + void SetClippingRegion(const TRegion& aRegion);
1.86 + void SetDrawMode(TDrawMode aDrawMode);
1.87 + void SetOrigin(const TPoint& aPoint = TPoint(0, 0));
1.88 + void SetPenColor(const TRgb& aColor);
1.89 + void SetPenStyle(TPenStyle aPenStyle);
1.90 + void SetPenSize(const TSize& aSize);
1.91 + void SetTextShadowColor(const TRgb& aColor);
1.92 + void SetCharJustification(TInt aExcessWidth, TInt aNumChars);
1.93 + void SetWordJustification(TInt aExcessWidth, TInt aNumGaps);
1.94 + void SetUnderlineStyle(TFontUnderline aUnderlineStyle);
1.95 + void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle);
1.96 + void SetBrushPattern(const CFbsBitmap& aBitmap);
1.97 + void SetBrushPattern(TInt aFbsBitmapHandle);
1.98 + void SetFont(const CFont* aFont);
1.99 + void CopyRect(const TPoint& aOffset, const TRect& aRect);
1.100 + void UpdateJustification(const TDesC& aText, const TTextParameters* aParam);
1.101 + void UpdateJustificationVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp);
1.102 + void SetFontNoDuplicate(const CFont* aFont);
1.103 + TBool HasBrushPattern() const;
1.104 + TBool HasFont() const;
1.105 + TRgb BrushColor() const;
1.106 + TRgb PenColor() const;
1.107 + TRgb TextShadowColor() const;
1.108 + TInt GetError();
1.109 + TPoint Origin() const;
1.110 + const TRegion& ClippingRegion();
1.111 + TInt Push();
1.112 + void Pop();
1.113 +public: //MWsTextCursor
1.114 + void DrawTextCursor(const TTextCursorInfo& aTextCursorInfo);
1.115 +public: //MWsFader
1.116 + void SetFadingParameters(const TDesC8& aData);
1.117 + void FadeArea(const TRegion& aRegion);
1.118 +public: //MWsDrawAnnotationObserver
1.119 + void WindowRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
1.120 + void WindowRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
1.121 + void WindowAnimRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
1.122 + void WindowAnimRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
1.123 + void SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion);
1.124 + void SpriteRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode);
1.125 + void SpriteFlash(const MWsWindowTreeNode& aWindowTreeNode, TBool aFlashOn);
1.126 + void SegmentRedrawStart(const TRegion& aRegion);
1.127 + void SegmentRedrawEnd();
1.128 +
1.129 +private:
1.130 + enum TDrawingTarget
1.131 + {
1.132 + ETargetNone,
1.133 + ETargetWindow,
1.134 + ETargetWindowAnim,
1.135 + ETargetWindowSprite,
1.136 + ETargetFloatingSprite,
1.137 + };
1.138 +private:
1.139 + CGraphicsContextChecker();
1.140 +private:
1.141 + MWsGraphicsContext* iContext;
1.142 + MWsTextCursor* iTextCursor;
1.143 + MWsFader* iFader;
1.144 + TDrawingTarget iTarget;
1.145 + };
1.146 +
1.147 +#endif //__GRAPHICSCONTEXTCHECKER_H__