os/graphics/windowing/windowserver/test/t_eventchecker/src/graphicscontextchecker.cpp
First public contribution.
1 // Copyright (c) 2008-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 #include "graphicscontextchecker.h"
19 #define CHECK_TEXTCURSOR() \
20 CHK_ASSERT_ALWAYS(iTextCursor, EEventCheckerPanicUsingMWsTextCursorAfterEnd)
22 #define CHECK_FADER() \
23 CHK_ASSERT_ALWAYS(iFader, EEventCheckerPanicUsingMWsFaderAfterEnd)
25 #define CHECK_DRAWING_TARGET() \
26 CHK_ASSERT_ALWAYS(iTarget != ETargetNone, EEventCheckerPanicDrawingWithoutTarget)
28 #define CHECK_GC_AND_DRAWING_TARGET() \
30 CHK_ASSERT_ALWAYS(iContext, EEventCheckerPanicUsingMWsGraphicsContextAfterEnd); \
31 CHECK_DRAWING_TARGET(); \
34 #define CHECK_TEXTCURSOR_AND_DRAWING_TARGET() \
37 CHECK_DRAWING_TARGET(); \
40 #define CHECK_FADER_AND_DRAWING_TARGET() \
43 CHECK_DRAWING_TARGET(); \
46 CGraphicsContextChecker* CGraphicsContextChecker::NewL(MWsGraphicDrawerEnvironment& /*aEnv*/)
48 CGraphicsContextChecker* self = new(ELeave) CGraphicsContextChecker();
52 CGraphicsContextChecker::CGraphicsContextChecker()
53 : iTarget(ETargetNone)
57 CGraphicsContextChecker::~CGraphicsContextChecker()
64 void CGraphicsContextChecker::SetGraphicsContext(MWsGraphicsContext* aGraphicsContext)
66 iContext = aGraphicsContext;
69 const MWsGraphicsContext* CGraphicsContextChecker::GraphicsContext() const
74 void CGraphicsContextChecker::SetTextCursor(MWsTextCursor* aTextCursor)
76 iTextCursor = aTextCursor;
79 const MWsTextCursor* CGraphicsContextChecker::TextCursor() const
84 void CGraphicsContextChecker::SetFader(MWsFader* aFader)
89 const MWsFader* CGraphicsContextChecker::Fader() const
94 TAny* CGraphicsContextChecker::ResolveObjectInterface(TUint aTypeId)
96 if(aTypeId == MWsDrawAnnotationObserver::EWsObjectInterfaceId)
97 return static_cast<MWsDrawAnnotationObserver*>(this);
99 //The remaining part of this method isn't exactly beautiful since we are merging three object
100 //provider interfaces into one object, so we have no way of knowing
101 //which interface this method was called on.
102 //however, aTypeId is a unique id and the chance that multiple
103 //mixins implement the same extension is slim
104 TAny* interface = NULL;
105 if(!interface && iContext)
106 interface = iContext->ResolveObjectInterface(aTypeId);
107 if(!interface && iTextCursor)
108 interface = iTextCursor->ResolveObjectInterface(aTypeId);
109 if(!interface && iFader)
110 interface = iFader->ResolveObjectInterface(aTypeId);
114 void CGraphicsContextChecker::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
116 CHECK_GC_AND_DRAWING_TARGET();
117 iContext->BitBlt(aDestPos, aSourceBitmap);
120 void CGraphicsContextChecker::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
122 CHECK_GC_AND_DRAWING_TARGET();
123 iContext->BitBlt(aDestPos, aSourceBitmap, aSourceRect);
126 void CGraphicsContextChecker::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
128 CHECK_GC_AND_DRAWING_TARGET();
129 iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
132 void CGraphicsContextChecker::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos)
134 CHECK_GC_AND_DRAWING_TARGET();
135 iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aMaskPos);
138 void CGraphicsContextChecker::ResetClippingRegion()
140 CHECK_GC_AND_DRAWING_TARGET();
141 iContext->ResetClippingRegion();
144 void CGraphicsContextChecker::Clear()
146 CHECK_GC_AND_DRAWING_TARGET();
150 void CGraphicsContextChecker::Clear(const TRect& aRect)
152 CHECK_GC_AND_DRAWING_TARGET();
153 iContext->Clear(aRect);
156 void CGraphicsContextChecker::ResetBrushPattern()
158 CHECK_GC_AND_DRAWING_TARGET();
159 iContext->ResetBrushPattern();
162 void CGraphicsContextChecker::ResetFont()
164 CHECK_GC_AND_DRAWING_TARGET();
165 iContext->ResetFont();
168 void CGraphicsContextChecker::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
170 CHECK_GC_AND_DRAWING_TARGET();
171 iContext->DrawArc(aRect, aStart, aEnd);
174 void CGraphicsContextChecker::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
176 CHECK_GC_AND_DRAWING_TARGET();
177 iContext->DrawPie(aRect, aStart, aEnd);
180 void CGraphicsContextChecker::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
182 CHECK_GC_AND_DRAWING_TARGET();
183 iContext->DrawBitmap(aDestRect, aSourceBitmap);
186 void CGraphicsContextChecker::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
188 CHECK_GC_AND_DRAWING_TARGET();
189 iContext->DrawBitmap(aDestRect, aSourceBitmap, aSourceRect);
192 void CGraphicsContextChecker::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
194 CHECK_GC_AND_DRAWING_TARGET();
195 iContext->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
198 void CGraphicsContextChecker::DrawRoundRect(const TRect& aRect, const TSize& aEllipse)
200 CHECK_GC_AND_DRAWING_TARGET();
201 iContext->DrawRoundRect(aRect, aEllipse);
204 void CGraphicsContextChecker::DrawPolyLine(const TArray<TPoint>& aPointList)
206 CHECK_GC_AND_DRAWING_TARGET();
207 iContext->DrawPolyLine(aPointList);
210 void CGraphicsContextChecker::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
212 CHECK_GC_AND_DRAWING_TARGET();
213 iContext->DrawPolyLineNoEndPoint(aPointList);
216 void CGraphicsContextChecker::DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule)
218 CHECK_GC_AND_DRAWING_TARGET();
219 iContext->DrawPolygon(aPointList, aFillRule);
222 void CGraphicsContextChecker::DrawEllipse(const TRect& aRect)
224 CHECK_GC_AND_DRAWING_TARGET();
225 iContext->DrawEllipse(aRect);
228 void CGraphicsContextChecker::DrawLine(const TPoint& aStart, const TPoint& aEnd)
230 CHECK_GC_AND_DRAWING_TARGET();
231 iContext->DrawLine(aStart, aEnd);
234 void CGraphicsContextChecker::DrawLineTo(const TPoint& aPoint)
236 CHECK_GC_AND_DRAWING_TARGET();
237 iContext->DrawLineTo(aPoint);
240 void CGraphicsContextChecker::DrawLineBy(const TPoint& aVector)
242 CHECK_GC_AND_DRAWING_TARGET();
243 iContext->DrawLineBy(aVector);
246 void CGraphicsContextChecker::DrawRect(const TRect& aRect)
248 CHECK_GC_AND_DRAWING_TARGET();
249 iContext->DrawRect(aRect);
252 void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam)
254 CHECK_GC_AND_DRAWING_TARGET();
255 iContext->DrawText(aText, aParam);
258 void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition)
260 CHECK_GC_AND_DRAWING_TARGET();
261 iContext->DrawText(aText, aParam, aPosition);
264 void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect)
266 CHECK_GC_AND_DRAWING_TARGET();
267 iContext->DrawText(aText, aParam, aClipRect);
270 void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset, TTextAlign aHrz, TInt aMargin)
272 CHECK_GC_AND_DRAWING_TARGET();
273 iContext->DrawText(aText, aParam, aClipFillRect, aBaselineOffset, aHrz, aMargin);
276 void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp)
278 CHECK_GC_AND_DRAWING_TARGET();
279 iContext->DrawTextVertical(aText, aParam, aUp);
282 void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition, TBool aUp)
284 CHECK_GC_AND_DRAWING_TARGET();
285 iContext->DrawTextVertical(aText, aParam, aPosition, aUp);
288 void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TBool aUp)
290 CHECK_GC_AND_DRAWING_TARGET();
291 iContext->DrawTextVertical(aText, aParam, aClipRect, aUp);
294 void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TBool aUp, TTextAlign aVert, TInt aMargin)
296 CHECK_GC_AND_DRAWING_TARGET();
297 iContext->DrawTextVertical(aText, aParam, aClipRect, aBaselineOffset, aUp, aVert, aMargin);
300 void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TInt aTextWidth, TBool aUp, TTextAlign aVert, TInt aMargin)
302 CHECK_GC_AND_DRAWING_TARGET();
303 iContext->DrawTextVertical(aText, aParam, aClipRect, aBaselineOffset, aTextWidth, aUp, aVert, aMargin);
306 void CGraphicsContextChecker::MoveTo(const TPoint& aPoint)
308 CHECK_GC_AND_DRAWING_TARGET();
309 iContext->MoveTo(aPoint);
312 void CGraphicsContextChecker::MoveBy(const TPoint& aVector)
314 CHECK_GC_AND_DRAWING_TARGET();
315 iContext->MoveBy(aVector);
318 void CGraphicsContextChecker::Plot(const TPoint& aPoint)
320 CHECK_GC_AND_DRAWING_TARGET();
321 iContext->Plot(aPoint);
324 void CGraphicsContextChecker::Reset()
326 CHECK_GC_AND_DRAWING_TARGET();
330 void CGraphicsContextChecker::SetBrushColor(const TRgb& aColor)
332 CHECK_GC_AND_DRAWING_TARGET();
333 iContext->SetBrushColor(aColor);
336 void CGraphicsContextChecker::SetBrushOrigin(const TPoint& aOrigin)
338 CHECK_GC_AND_DRAWING_TARGET();
339 iContext->SetBrushOrigin(aOrigin);
342 void CGraphicsContextChecker::SetBrushStyle(TBrushStyle aBrushStyle)
344 CHECK_GC_AND_DRAWING_TARGET();
345 iContext->SetBrushStyle(aBrushStyle);
348 void CGraphicsContextChecker::SetClippingRegion(const TRegion& aRegion)
350 CHECK_GC_AND_DRAWING_TARGET();
351 iContext->SetClippingRegion(aRegion);
354 void CGraphicsContextChecker::SetDrawMode(TDrawMode aDrawMode)
356 CHECK_GC_AND_DRAWING_TARGET();
357 iContext->SetDrawMode(aDrawMode);
360 void CGraphicsContextChecker::SetOrigin(const TPoint& aPoint)
362 CHECK_GC_AND_DRAWING_TARGET();
363 iContext->SetOrigin(aPoint);
366 void CGraphicsContextChecker::SetPenColor(const TRgb& aColor)
368 CHECK_GC_AND_DRAWING_TARGET();
369 iContext->SetPenColor(aColor);
372 void CGraphicsContextChecker::SetPenStyle(TPenStyle aPenStyle)
374 CHECK_GC_AND_DRAWING_TARGET();
375 iContext->SetPenStyle(aPenStyle);
378 void CGraphicsContextChecker::SetPenSize(const TSize& aSize)
380 CHECK_GC_AND_DRAWING_TARGET();
381 iContext->SetPenSize(aSize);
384 void CGraphicsContextChecker::SetTextShadowColor(const TRgb& aColor)
386 CHECK_GC_AND_DRAWING_TARGET();
387 iContext->SetTextShadowColor(aColor);
390 void CGraphicsContextChecker::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
392 CHECK_GC_AND_DRAWING_TARGET();
393 iContext->SetCharJustification(aExcessWidth, aNumChars);
396 void CGraphicsContextChecker::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
398 CHECK_GC_AND_DRAWING_TARGET();
399 iContext->SetWordJustification(aExcessWidth, aNumGaps);
402 void CGraphicsContextChecker::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
404 CHECK_GC_AND_DRAWING_TARGET();
405 iContext->SetUnderlineStyle(aUnderlineStyle);
408 void CGraphicsContextChecker::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
410 CHECK_GC_AND_DRAWING_TARGET();
411 iContext->SetStrikethroughStyle(aStrikethroughStyle);
414 void CGraphicsContextChecker::SetBrushPattern(const CFbsBitmap& aBitmap)
416 CHECK_GC_AND_DRAWING_TARGET();
417 iContext->SetBrushPattern(aBitmap);
420 void CGraphicsContextChecker::SetBrushPattern(TInt aFbsBitmapHandle)
422 CHECK_GC_AND_DRAWING_TARGET();
423 iContext->SetBrushPattern(aFbsBitmapHandle);
426 void CGraphicsContextChecker::SetFont(const CFont* aFont)
428 CHECK_GC_AND_DRAWING_TARGET();
429 iContext->SetFont(aFont);
432 void CGraphicsContextChecker::CopyRect(const TPoint& aOffset, const TRect& aRect)
434 CHECK_GC_AND_DRAWING_TARGET();
435 iContext->CopyRect(aOffset, aRect);
438 void CGraphicsContextChecker::UpdateJustification(const TDesC& aText, const TTextParameters* aParam)
440 CHECK_GC_AND_DRAWING_TARGET();
441 iContext->UpdateJustification(aText, aParam);
444 void CGraphicsContextChecker::UpdateJustificationVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp)
446 CHECK_GC_AND_DRAWING_TARGET();
447 iContext->UpdateJustificationVertical(aText, aParam, aUp);
450 void CGraphicsContextChecker::SetFontNoDuplicate(const CFont* aFont)
452 CHECK_GC_AND_DRAWING_TARGET();
453 iContext->SetFontNoDuplicate(aFont);
456 TBool CGraphicsContextChecker::HasBrushPattern() const
458 CHECK_GC_AND_DRAWING_TARGET();
459 return iContext->HasBrushPattern();
462 TBool CGraphicsContextChecker::HasFont() const
464 CHECK_GC_AND_DRAWING_TARGET();
465 return iContext->HasFont();
468 TRgb CGraphicsContextChecker::BrushColor() const
470 CHECK_GC_AND_DRAWING_TARGET();
471 return iContext->BrushColor();
474 TRgb CGraphicsContextChecker::PenColor() const
476 CHECK_GC_AND_DRAWING_TARGET();
477 return iContext->PenColor();
480 TRgb CGraphicsContextChecker::TextShadowColor() const
482 CHECK_GC_AND_DRAWING_TARGET();
483 return iContext->TextShadowColor();
486 TInt CGraphicsContextChecker::GetError()
488 CHECK_GC_AND_DRAWING_TARGET();
489 return iContext->GetError();
492 TPoint CGraphicsContextChecker::Origin() const
494 CHECK_GC_AND_DRAWING_TARGET();
495 return iContext->Origin();
498 const TRegion& CGraphicsContextChecker::ClippingRegion()
500 CHECK_GC_AND_DRAWING_TARGET();
501 return iContext->ClippingRegion();
504 TInt CGraphicsContextChecker::Push()
506 CHECK_GC_AND_DRAWING_TARGET();
507 return iContext->Push();
510 void CGraphicsContextChecker::Pop()
512 CHECK_GC_AND_DRAWING_TARGET();
516 void CGraphicsContextChecker::DrawTextCursor(const TTextCursorInfo& aTextCursorInfo)
518 //CHECK_TEXTCURSOR_AND_DRAWING_TARGET();
520 iTextCursor->DrawTextCursor(aTextCursorInfo);
523 void CGraphicsContextChecker::SetFadingParameters(const TDesC8& aData)
525 CHECK_FADER_AND_DRAWING_TARGET();
526 iFader->SetFadingParameters(aData);
529 void CGraphicsContextChecker::FadeArea(const TRegion& aRegion)
531 CHECK_FADER_AND_DRAWING_TARGET();
532 iFader->FadeArea(aRegion);
535 void CGraphicsContextChecker::WindowRedrawStart(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRegion& /*aRegion*/)
537 CHK_ASSERT_ALWAYS(iTarget == ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
538 iTarget = ETargetWindow;
541 void CGraphicsContextChecker::WindowRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
543 CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);
544 iTarget = ETargetNone;
547 void CGraphicsContextChecker::WindowAnimRedrawStart(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRegion& /*aRegion*/)
549 CHK_ASSERT_ALWAYS(iTarget == ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
550 iTarget = ETargetWindowAnim;
553 void CGraphicsContextChecker::WindowAnimRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
555 CHK_ASSERT_ALWAYS(iTarget == ETargetWindowAnim, EEventCheckerPanicUnbalancedDrawingTargetEvents);
556 iTarget = ETargetNone;
559 void CGraphicsContextChecker::SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& /*aRegion*/)
561 CHK_ASSERT_ALWAYS(iTarget==ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
562 iTarget = (aWindowTreeNode.ParentNode()->NodeType() == MWsWindowTreeNode::EWinTreeNodeRoot) ? ETargetFloatingSprite : ETargetWindowSprite;
565 void CGraphicsContextChecker::SpriteRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
567 CHK_ASSERT_ALWAYS((iTarget==ETargetFloatingSprite || iTarget==ETargetWindowSprite), EEventCheckerPanicUnbalancedDrawingTargetEvents);
568 iTarget = ETargetNone;
571 void CGraphicsContextChecker::SpriteFlash(const MWsWindowTreeNode& /*aWindowTreeNode*/, TBool /*aFlashOn*/)
573 CHK_ASSERT_ALWAYS((iTarget==ETargetFloatingSprite || iTarget==ETargetWindowSprite), EEventCheckerPanicUnbalancedDrawingTargetEvents);
576 void CGraphicsContextChecker::SegmentRedrawStart(const TRegion& /*aRegion*/)
578 CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);
581 void CGraphicsContextChecker::SegmentRedrawEnd()
583 CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);