os/graphics/windowing/windowserver/test/t_eventchecker/src/graphicscontextchecker.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
#include "graphicscontextchecker.h"
sl@0
    17
#include "panics.h"
sl@0
    18
sl@0
    19
#define CHECK_TEXTCURSOR() \
sl@0
    20
	CHK_ASSERT_ALWAYS(iTextCursor, EEventCheckerPanicUsingMWsTextCursorAfterEnd)
sl@0
    21
sl@0
    22
#define CHECK_FADER() \
sl@0
    23
	CHK_ASSERT_ALWAYS(iFader, EEventCheckerPanicUsingMWsFaderAfterEnd)
sl@0
    24
sl@0
    25
#define CHECK_DRAWING_TARGET() \
sl@0
    26
	CHK_ASSERT_ALWAYS(iTarget != ETargetNone, EEventCheckerPanicDrawingWithoutTarget)
sl@0
    27
		
sl@0
    28
#define CHECK_GC_AND_DRAWING_TARGET() \
sl@0
    29
	do { \
sl@0
    30
		CHK_ASSERT_ALWAYS(iContext, EEventCheckerPanicUsingMWsGraphicsContextAfterEnd); \
sl@0
    31
		CHECK_DRAWING_TARGET(); \
sl@0
    32
	} while(EFalse)
sl@0
    33
sl@0
    34
#define CHECK_TEXTCURSOR_AND_DRAWING_TARGET() \
sl@0
    35
	do { \
sl@0
    36
		CHECK_TEXTCURSOR(); \
sl@0
    37
		CHECK_DRAWING_TARGET(); \
sl@0
    38
	} while(EFalse)
sl@0
    39
sl@0
    40
#define CHECK_FADER_AND_DRAWING_TARGET() \
sl@0
    41
	do { \
sl@0
    42
		CHECK_FADER(); \
sl@0
    43
		CHECK_DRAWING_TARGET(); \
sl@0
    44
	} while(EFalse)
sl@0
    45
sl@0
    46
CGraphicsContextChecker* CGraphicsContextChecker::NewL(MWsGraphicDrawerEnvironment& /*aEnv*/)
sl@0
    47
	{
sl@0
    48
	CGraphicsContextChecker* self = new(ELeave) CGraphicsContextChecker();
sl@0
    49
	return self;
sl@0
    50
	}
sl@0
    51
sl@0
    52
CGraphicsContextChecker::CGraphicsContextChecker()
sl@0
    53
	: iTarget(ETargetNone)
sl@0
    54
	{
sl@0
    55
	}
sl@0
    56
sl@0
    57
CGraphicsContextChecker::~CGraphicsContextChecker()
sl@0
    58
	{
sl@0
    59
	iContext = NULL;
sl@0
    60
	iTextCursor = NULL;
sl@0
    61
	iFader = NULL;
sl@0
    62
	}
sl@0
    63
sl@0
    64
void CGraphicsContextChecker::SetGraphicsContext(MWsGraphicsContext* aGraphicsContext)
sl@0
    65
	{
sl@0
    66
	iContext = aGraphicsContext;
sl@0
    67
	}
sl@0
    68
sl@0
    69
const MWsGraphicsContext* CGraphicsContextChecker::GraphicsContext() const
sl@0
    70
	{
sl@0
    71
	return iContext;
sl@0
    72
	}
sl@0
    73
sl@0
    74
void CGraphicsContextChecker::SetTextCursor(MWsTextCursor* aTextCursor)
sl@0
    75
	{
sl@0
    76
	iTextCursor = aTextCursor;
sl@0
    77
	}
sl@0
    78
sl@0
    79
const MWsTextCursor* CGraphicsContextChecker::TextCursor() const
sl@0
    80
	{
sl@0
    81
	return iTextCursor;
sl@0
    82
	}
sl@0
    83
sl@0
    84
void CGraphicsContextChecker::SetFader(MWsFader* aFader)
sl@0
    85
	{
sl@0
    86
	iFader = aFader;
sl@0
    87
	}
sl@0
    88
sl@0
    89
const MWsFader* CGraphicsContextChecker::Fader() const
sl@0
    90
	{
sl@0
    91
	return iFader;
sl@0
    92
	}
sl@0
    93
sl@0
    94
TAny* CGraphicsContextChecker::ResolveObjectInterface(TUint aTypeId)
sl@0
    95
	{
sl@0
    96
	if(aTypeId == MWsDrawAnnotationObserver::EWsObjectInterfaceId)
sl@0
    97
		return static_cast<MWsDrawAnnotationObserver*>(this);
sl@0
    98
		
sl@0
    99
	//The remaining part of this method isn't exactly beautiful since we are merging three object
sl@0
   100
	//provider interfaces into one object, so we have no way of knowing 
sl@0
   101
	//which interface this method was called on.
sl@0
   102
	//however, aTypeId is a unique id and the chance that multiple
sl@0
   103
	//mixins implement the same extension is slim
sl@0
   104
	TAny* interface = NULL;
sl@0
   105
	if(!interface && iContext)
sl@0
   106
		interface = iContext->ResolveObjectInterface(aTypeId);
sl@0
   107
	if(!interface && iTextCursor)
sl@0
   108
		interface = iTextCursor->ResolveObjectInterface(aTypeId);
sl@0
   109
	if(!interface && iFader)
sl@0
   110
		interface = iFader->ResolveObjectInterface(aTypeId);
sl@0
   111
	return interface;
sl@0
   112
	}
sl@0
   113
sl@0
   114
void CGraphicsContextChecker::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
sl@0
   115
	{
sl@0
   116
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   117
	iContext->BitBlt(aDestPos, aSourceBitmap);
sl@0
   118
	}
sl@0
   119
sl@0
   120
void CGraphicsContextChecker::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
sl@0
   121
	{
sl@0
   122
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   123
	iContext->BitBlt(aDestPos, aSourceBitmap, aSourceRect);
sl@0
   124
	}
sl@0
   125
sl@0
   126
void CGraphicsContextChecker::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
sl@0
   127
	{
sl@0
   128
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   129
	iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
sl@0
   130
	}
sl@0
   131
sl@0
   132
void CGraphicsContextChecker::BitBltMasked(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, const TPoint& aMaskPos)
sl@0
   133
	{
sl@0
   134
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   135
	iContext->BitBltMasked(aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aMaskPos);
sl@0
   136
	}
sl@0
   137
sl@0
   138
void CGraphicsContextChecker::ResetClippingRegion()
sl@0
   139
	{
sl@0
   140
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   141
	iContext->ResetClippingRegion();
sl@0
   142
	}
sl@0
   143
sl@0
   144
void CGraphicsContextChecker::Clear()
sl@0
   145
	{
sl@0
   146
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   147
	iContext->Clear();
sl@0
   148
	}
sl@0
   149
sl@0
   150
void CGraphicsContextChecker::Clear(const TRect& aRect)
sl@0
   151
	{
sl@0
   152
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   153
	iContext->Clear(aRect);
sl@0
   154
	}
sl@0
   155
sl@0
   156
void CGraphicsContextChecker::ResetBrushPattern()
sl@0
   157
	{
sl@0
   158
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   159
	iContext->ResetBrushPattern();
sl@0
   160
	}
sl@0
   161
sl@0
   162
void CGraphicsContextChecker::ResetFont()
sl@0
   163
	{
sl@0
   164
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   165
	iContext->ResetFont();
sl@0
   166
	}
sl@0
   167
sl@0
   168
void CGraphicsContextChecker::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
sl@0
   169
	{
sl@0
   170
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   171
	iContext->DrawArc(aRect, aStart, aEnd);
sl@0
   172
	}
sl@0
   173
sl@0
   174
void CGraphicsContextChecker::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
sl@0
   175
	{
sl@0
   176
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   177
	iContext->DrawPie(aRect, aStart, aEnd);
sl@0
   178
	}
sl@0
   179
sl@0
   180
void CGraphicsContextChecker::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
sl@0
   181
	{
sl@0
   182
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   183
	iContext->DrawBitmap(aDestRect, aSourceBitmap);
sl@0
   184
	}
sl@0
   185
sl@0
   186
void CGraphicsContextChecker::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
sl@0
   187
	{
sl@0
   188
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   189
	iContext->DrawBitmap(aDestRect,	aSourceBitmap, aSourceRect);
sl@0
   190
	}
sl@0
   191
sl@0
   192
void CGraphicsContextChecker::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect, const CFbsBitmap& aMaskBitmap, TBool aInvertMask)
sl@0
   193
	{
sl@0
   194
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   195
	iContext->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
sl@0
   196
	}
sl@0
   197
sl@0
   198
void CGraphicsContextChecker::DrawRoundRect(const TRect& aRect, const TSize& aEllipse)
sl@0
   199
	{
sl@0
   200
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   201
	iContext->DrawRoundRect(aRect, aEllipse);
sl@0
   202
	}
sl@0
   203
sl@0
   204
void CGraphicsContextChecker::DrawPolyLine(const TArray<TPoint>& aPointList)
sl@0
   205
	{
sl@0
   206
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   207
	iContext->DrawPolyLine(aPointList);
sl@0
   208
	}
sl@0
   209
sl@0
   210
void CGraphicsContextChecker::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
sl@0
   211
	{
sl@0
   212
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   213
	iContext->DrawPolyLineNoEndPoint(aPointList);
sl@0
   214
	}
sl@0
   215
sl@0
   216
void CGraphicsContextChecker::DrawPolygon(const TArray<TPoint>& aPointList, TFillRule aFillRule)
sl@0
   217
	{
sl@0
   218
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   219
	iContext->DrawPolygon(aPointList, aFillRule);
sl@0
   220
	}
sl@0
   221
sl@0
   222
void CGraphicsContextChecker::DrawEllipse(const TRect& aRect)
sl@0
   223
	{
sl@0
   224
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   225
	iContext->DrawEllipse(aRect);
sl@0
   226
	}
sl@0
   227
sl@0
   228
void CGraphicsContextChecker::DrawLine(const TPoint& aStart, const TPoint& aEnd)
sl@0
   229
	{
sl@0
   230
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   231
	iContext->DrawLine(aStart, aEnd);
sl@0
   232
	}
sl@0
   233
sl@0
   234
void CGraphicsContextChecker::DrawLineTo(const TPoint& aPoint)
sl@0
   235
	{
sl@0
   236
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   237
	iContext->DrawLineTo(aPoint);
sl@0
   238
	}
sl@0
   239
sl@0
   240
void CGraphicsContextChecker::DrawLineBy(const TPoint& aVector)
sl@0
   241
	{
sl@0
   242
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   243
	iContext->DrawLineBy(aVector);
sl@0
   244
	}
sl@0
   245
sl@0
   246
void CGraphicsContextChecker::DrawRect(const TRect& aRect)
sl@0
   247
	{
sl@0
   248
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   249
	iContext->DrawRect(aRect);
sl@0
   250
	}
sl@0
   251
sl@0
   252
void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam)
sl@0
   253
	{
sl@0
   254
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   255
	iContext->DrawText(aText, aParam);
sl@0
   256
	}
sl@0
   257
sl@0
   258
void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition)
sl@0
   259
	{
sl@0
   260
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   261
	iContext->DrawText(aText, aParam, aPosition);
sl@0
   262
	}
sl@0
   263
sl@0
   264
void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect)
sl@0
   265
	{
sl@0
   266
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   267
	iContext->DrawText(aText, aParam, aClipRect);
sl@0
   268
	}
sl@0
   269
sl@0
   270
void CGraphicsContextChecker::DrawText(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset, TTextAlign aHrz, TInt aMargin)
sl@0
   271
	{
sl@0
   272
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   273
	iContext->DrawText(aText, aParam, aClipFillRect, aBaselineOffset, aHrz, aMargin);
sl@0
   274
	}
sl@0
   275
sl@0
   276
void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp)
sl@0
   277
	{
sl@0
   278
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   279
	iContext->DrawTextVertical(aText, aParam, aUp);
sl@0
   280
	}
sl@0
   281
sl@0
   282
void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TPoint& aPosition, TBool aUp)
sl@0
   283
	{
sl@0
   284
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   285
	iContext->DrawTextVertical(aText, aParam, aPosition, aUp);
sl@0
   286
	}
sl@0
   287
sl@0
   288
void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TBool aUp)
sl@0
   289
	{
sl@0
   290
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   291
	iContext->DrawTextVertical(aText, aParam, aClipRect, aUp);
sl@0
   292
	}
sl@0
   293
sl@0
   294
void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TBool aUp, TTextAlign aVert, TInt aMargin)
sl@0
   295
	{
sl@0
   296
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   297
	iContext->DrawTextVertical(aText, aParam, aClipRect, aBaselineOffset, aUp, aVert, aMargin);
sl@0
   298
	}
sl@0
   299
sl@0
   300
void CGraphicsContextChecker::DrawTextVertical(const TDesC& aText, const TTextParameters* aParam, const TRect& aClipRect, TInt aBaselineOffset, TInt aTextWidth, TBool aUp, TTextAlign aVert, TInt aMargin)
sl@0
   301
	{
sl@0
   302
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   303
	iContext->DrawTextVertical(aText, aParam, aClipRect, aBaselineOffset, aTextWidth, aUp, aVert, aMargin);
sl@0
   304
	}
sl@0
   305
sl@0
   306
void CGraphicsContextChecker::MoveTo(const TPoint& aPoint)
sl@0
   307
	{
sl@0
   308
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   309
	iContext->MoveTo(aPoint);
sl@0
   310
	}
sl@0
   311
sl@0
   312
void CGraphicsContextChecker::MoveBy(const TPoint& aVector)
sl@0
   313
	{
sl@0
   314
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   315
	iContext->MoveBy(aVector);
sl@0
   316
	}
sl@0
   317
sl@0
   318
void CGraphicsContextChecker::Plot(const TPoint& aPoint)
sl@0
   319
	{
sl@0
   320
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   321
	iContext->Plot(aPoint);
sl@0
   322
	}
sl@0
   323
sl@0
   324
void CGraphicsContextChecker::Reset()
sl@0
   325
	{
sl@0
   326
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   327
	iContext->Reset();
sl@0
   328
	}
sl@0
   329
sl@0
   330
void CGraphicsContextChecker::SetBrushColor(const TRgb& aColor)
sl@0
   331
	{
sl@0
   332
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   333
	iContext->SetBrushColor(aColor);
sl@0
   334
	}
sl@0
   335
sl@0
   336
void CGraphicsContextChecker::SetBrushOrigin(const TPoint& aOrigin)
sl@0
   337
	{
sl@0
   338
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   339
	iContext->SetBrushOrigin(aOrigin);
sl@0
   340
	}
sl@0
   341
sl@0
   342
void CGraphicsContextChecker::SetBrushStyle(TBrushStyle aBrushStyle)
sl@0
   343
	{
sl@0
   344
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   345
	iContext->SetBrushStyle(aBrushStyle);
sl@0
   346
	}
sl@0
   347
sl@0
   348
void CGraphicsContextChecker::SetClippingRegion(const TRegion& aRegion)
sl@0
   349
	{
sl@0
   350
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   351
	iContext->SetClippingRegion(aRegion);
sl@0
   352
	}
sl@0
   353
sl@0
   354
void CGraphicsContextChecker::SetDrawMode(TDrawMode aDrawMode)
sl@0
   355
	{
sl@0
   356
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   357
	iContext->SetDrawMode(aDrawMode);
sl@0
   358
	}
sl@0
   359
sl@0
   360
void CGraphicsContextChecker::SetOrigin(const TPoint& aPoint)
sl@0
   361
	{
sl@0
   362
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   363
	iContext->SetOrigin(aPoint);
sl@0
   364
	}
sl@0
   365
sl@0
   366
void CGraphicsContextChecker::SetPenColor(const TRgb& aColor)
sl@0
   367
	{
sl@0
   368
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   369
	iContext->SetPenColor(aColor);
sl@0
   370
	}
sl@0
   371
sl@0
   372
void CGraphicsContextChecker::SetPenStyle(TPenStyle aPenStyle)
sl@0
   373
	{
sl@0
   374
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   375
	iContext->SetPenStyle(aPenStyle);
sl@0
   376
	}
sl@0
   377
sl@0
   378
void CGraphicsContextChecker::SetPenSize(const TSize& aSize)
sl@0
   379
	{
sl@0
   380
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   381
	iContext->SetPenSize(aSize);
sl@0
   382
	}
sl@0
   383
sl@0
   384
void CGraphicsContextChecker::SetTextShadowColor(const TRgb& aColor)
sl@0
   385
	{
sl@0
   386
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   387
	iContext->SetTextShadowColor(aColor);
sl@0
   388
	}
sl@0
   389
sl@0
   390
void CGraphicsContextChecker::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
sl@0
   391
	{
sl@0
   392
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   393
	iContext->SetCharJustification(aExcessWidth, aNumChars);
sl@0
   394
	}
sl@0
   395
sl@0
   396
void CGraphicsContextChecker::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
sl@0
   397
	{
sl@0
   398
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   399
	iContext->SetWordJustification(aExcessWidth, aNumGaps);
sl@0
   400
	}
sl@0
   401
sl@0
   402
void CGraphicsContextChecker::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
sl@0
   403
	{
sl@0
   404
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   405
	iContext->SetUnderlineStyle(aUnderlineStyle);
sl@0
   406
	}
sl@0
   407
sl@0
   408
void CGraphicsContextChecker::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
sl@0
   409
	{
sl@0
   410
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   411
	iContext->SetStrikethroughStyle(aStrikethroughStyle);
sl@0
   412
	}
sl@0
   413
sl@0
   414
void CGraphicsContextChecker::SetBrushPattern(const CFbsBitmap& aBitmap)
sl@0
   415
	{
sl@0
   416
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   417
	iContext->SetBrushPattern(aBitmap);
sl@0
   418
	}
sl@0
   419
sl@0
   420
void CGraphicsContextChecker::SetBrushPattern(TInt aFbsBitmapHandle)
sl@0
   421
	{
sl@0
   422
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   423
	iContext->SetBrushPattern(aFbsBitmapHandle);
sl@0
   424
	}
sl@0
   425
sl@0
   426
void CGraphicsContextChecker::SetFont(const CFont* aFont)
sl@0
   427
	{
sl@0
   428
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   429
	iContext->SetFont(aFont);
sl@0
   430
	}
sl@0
   431
sl@0
   432
void CGraphicsContextChecker::CopyRect(const TPoint& aOffset, const TRect& aRect)
sl@0
   433
	{
sl@0
   434
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   435
	iContext->CopyRect(aOffset, aRect);
sl@0
   436
	}
sl@0
   437
sl@0
   438
void CGraphicsContextChecker::UpdateJustification(const TDesC& aText, const TTextParameters* aParam)
sl@0
   439
	{
sl@0
   440
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   441
	iContext->UpdateJustification(aText, aParam);
sl@0
   442
	}
sl@0
   443
sl@0
   444
void CGraphicsContextChecker::UpdateJustificationVertical(const TDesC& aText, const TTextParameters* aParam, TBool aUp)
sl@0
   445
	{
sl@0
   446
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   447
	iContext->UpdateJustificationVertical(aText, aParam, aUp);
sl@0
   448
	}
sl@0
   449
sl@0
   450
void CGraphicsContextChecker::SetFontNoDuplicate(const CFont* aFont)
sl@0
   451
	{
sl@0
   452
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   453
	iContext->SetFontNoDuplicate(aFont);
sl@0
   454
	}
sl@0
   455
sl@0
   456
TBool CGraphicsContextChecker::HasBrushPattern() const
sl@0
   457
	{
sl@0
   458
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   459
	return iContext->HasBrushPattern();
sl@0
   460
	}
sl@0
   461
sl@0
   462
TBool CGraphicsContextChecker::HasFont() const
sl@0
   463
	{
sl@0
   464
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   465
	return iContext->HasFont();
sl@0
   466
	}
sl@0
   467
sl@0
   468
TRgb CGraphicsContextChecker::BrushColor() const
sl@0
   469
	{
sl@0
   470
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   471
	return iContext->BrushColor();
sl@0
   472
	}
sl@0
   473
sl@0
   474
TRgb CGraphicsContextChecker::PenColor() const
sl@0
   475
	{
sl@0
   476
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   477
	return iContext->PenColor();
sl@0
   478
	}
sl@0
   479
sl@0
   480
TRgb CGraphicsContextChecker::TextShadowColor() const
sl@0
   481
	{
sl@0
   482
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   483
	return iContext->TextShadowColor();
sl@0
   484
	}
sl@0
   485
sl@0
   486
TInt CGraphicsContextChecker::GetError()
sl@0
   487
	{
sl@0
   488
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   489
	return iContext->GetError();
sl@0
   490
	}
sl@0
   491
sl@0
   492
TPoint CGraphicsContextChecker::Origin() const
sl@0
   493
	{
sl@0
   494
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   495
	return iContext->Origin();
sl@0
   496
	}
sl@0
   497
sl@0
   498
const TRegion& CGraphicsContextChecker::ClippingRegion()
sl@0
   499
	{
sl@0
   500
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   501
	return iContext->ClippingRegion();
sl@0
   502
	}
sl@0
   503
sl@0
   504
TInt CGraphicsContextChecker::Push()
sl@0
   505
	{
sl@0
   506
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   507
	return iContext->Push();
sl@0
   508
	}
sl@0
   509
sl@0
   510
void CGraphicsContextChecker::Pop()
sl@0
   511
	{
sl@0
   512
	CHECK_GC_AND_DRAWING_TARGET();
sl@0
   513
	iContext->Pop();
sl@0
   514
	}
sl@0
   515
sl@0
   516
void CGraphicsContextChecker::DrawTextCursor(const TTextCursorInfo& aTextCursorInfo)
sl@0
   517
	{
sl@0
   518
	//CHECK_TEXTCURSOR_AND_DRAWING_TARGET();
sl@0
   519
	CHECK_TEXTCURSOR();
sl@0
   520
	iTextCursor->DrawTextCursor(aTextCursorInfo);
sl@0
   521
	}
sl@0
   522
sl@0
   523
void CGraphicsContextChecker::SetFadingParameters(const TDesC8& aData)
sl@0
   524
	{
sl@0
   525
	CHECK_FADER_AND_DRAWING_TARGET();
sl@0
   526
	iFader->SetFadingParameters(aData);
sl@0
   527
	}
sl@0
   528
sl@0
   529
void CGraphicsContextChecker::FadeArea(const TRegion& aRegion)
sl@0
   530
	{
sl@0
   531
	CHECK_FADER_AND_DRAWING_TARGET();
sl@0
   532
	iFader->FadeArea(aRegion);
sl@0
   533
	}
sl@0
   534
sl@0
   535
void CGraphicsContextChecker::WindowRedrawStart(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRegion& /*aRegion*/)
sl@0
   536
	{
sl@0
   537
	CHK_ASSERT_ALWAYS(iTarget == ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   538
	iTarget = ETargetWindow;
sl@0
   539
	}
sl@0
   540
sl@0
   541
void CGraphicsContextChecker::WindowRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
sl@0
   542
	{
sl@0
   543
	CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   544
	iTarget = ETargetNone;
sl@0
   545
	}
sl@0
   546
sl@0
   547
void CGraphicsContextChecker::WindowAnimRedrawStart(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRegion& /*aRegion*/)
sl@0
   548
	{
sl@0
   549
	CHK_ASSERT_ALWAYS(iTarget == ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   550
	iTarget = ETargetWindowAnim;
sl@0
   551
	}
sl@0
   552
sl@0
   553
void CGraphicsContextChecker::WindowAnimRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
sl@0
   554
	{
sl@0
   555
	CHK_ASSERT_ALWAYS(iTarget == ETargetWindowAnim, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   556
	iTarget = ETargetNone;
sl@0
   557
	}
sl@0
   558
sl@0
   559
void CGraphicsContextChecker::SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& /*aRegion*/)
sl@0
   560
	{
sl@0
   561
	CHK_ASSERT_ALWAYS(iTarget==ETargetNone, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   562
	iTarget = (aWindowTreeNode.ParentNode()->NodeType() == MWsWindowTreeNode::EWinTreeNodeRoot) ? ETargetFloatingSprite : ETargetWindowSprite;	
sl@0
   563
	}
sl@0
   564
sl@0
   565
void CGraphicsContextChecker::SpriteRedrawEnd(const MWsWindowTreeNode& /*aWindowTreeNode*/)
sl@0
   566
	{
sl@0
   567
	CHK_ASSERT_ALWAYS((iTarget==ETargetFloatingSprite || iTarget==ETargetWindowSprite), EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   568
	iTarget = ETargetNone;
sl@0
   569
	}
sl@0
   570
sl@0
   571
void CGraphicsContextChecker::SpriteFlash(const MWsWindowTreeNode& /*aWindowTreeNode*/, TBool /*aFlashOn*/)
sl@0
   572
	{
sl@0
   573
	CHK_ASSERT_ALWAYS((iTarget==ETargetFloatingSprite || iTarget==ETargetWindowSprite), EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   574
	}
sl@0
   575
sl@0
   576
void CGraphicsContextChecker::SegmentRedrawStart(const TRegion& /*aRegion*/)
sl@0
   577
	{
sl@0
   578
	CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   579
	}
sl@0
   580
sl@0
   581
void CGraphicsContextChecker::SegmentRedrawEnd()
sl@0
   582
	{
sl@0
   583
	CHK_ASSERT_ALWAYS(iTarget == ETargetWindow, EEventCheckerPanicUnbalancedDrawingTargetEvents);
sl@0
   584
	}
sl@0
   585