os/graphics/graphicsdeviceinterface/directgdi/src/directgdicontext.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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 "directgdicontext.h"
sl@0
    17
#include "directgdipaniccodes.h"
sl@0
    18
#include "directgdifont.h"
sl@0
    19
#include "directgdidriver.h"
sl@0
    20
#include <graphics/directgdidrawablesource.h>
sl@0
    21
#include <graphics/directgdiengine.h>
sl@0
    22
#include <e32cmn.h>
sl@0
    23
#include <s32mem.h>
sl@0
    24
#include <shapeinfo.h>
sl@0
    25
#include <fbs.h>
sl@0
    26
#include <fntstore.h>
sl@0
    27
sl@0
    28
using namespace DirectGdi;
sl@0
    29
sl@0
    30
/**
sl@0
    31
CDirectGdiContext InternalizeL/ExternalizeL - version numbers.
sl@0
    32
Add new version numbers here. A reason of adding new version numbers may be adding new 
sl@0
    33
CDirectGdiContext data members, which may have to be externalized/internalized. 
sl@0
    34
When that happens:
sl@0
    35
1.Put a new enum item (like EDirectGDIContext_Ver01) with a version number, which is greater than
sl@0
    36
the last version number, that was used. 
sl@0
    37
2.Document the new enum item.
sl@0
    38
3.Update KDirectGDIContext_VerNo value to be the new enum item value.
sl@0
    39
4.Update InternalizeL/ExternalizeL methods after adding the new version number.
sl@0
    40
For example: If a new member is added to the class - TInt iSmth, when InternalizeL
sl@0
    41
is called to operate on older archive, iSmth member won't be in the archive!
sl@0
    42
So, in InternalizeL, there should be a check, something like:
sl@0
    43
TUint16 archiveVerNo = 0;
sl@0
    44
	aReadStream >> archiveVerNo;
sl@0
    45
    if(archiveVerNo < EDirectGDIContext_Ver02)   //EDirectGDIContext_Ver02 has been added, when iSmth has been added
sl@0
    46
		{
sl@0
    47
      	//Do nothing - iSmth is not in the archive
sl@0
    48
      	//Initialize it with some default value
sl@0
    49
      	iSmth = KDefVal;
sl@0
    50
		}
sl@0
    51
	else
sl@0
    52
		{
sl@0
    53
		aReadStream >> iSmth;
sl@0
    54
		}
sl@0
    55
*/
sl@0
    56
enum
sl@0
    57
	{
sl@0
    58
	EDirectGDIContext_Ver01 = 1 //Base version number, when InternalizeL/ExternalizeL were added
sl@0
    59
	};
sl@0
    60
sl@0
    61
LOCAL_D const TUint16 KDirectGDIContext_VerNo = EDirectGDIContext_Ver01;
sl@0
    62
sl@0
    63
/**
sl@0
    64
Static two-phase factory constuctor. Creates an object of this class.
sl@0
    65
sl@0
    66
@param	aDirectGdiDriver	The driver object which provides an abstract factory for creating a concrete drawing engine.
sl@0
    67
sl@0
    68
@pre	CDirectGdiDriver object has been initialised from the calling thread.
sl@0
    69
@post	Instances of CDirectGdiContext and MDirectGdiEngine have been created.
sl@0
    70
sl@0
    71
@leave	Leaves if CDirectGdiDriver has not been initialised from the calling thread, or other errors occur during object construction.
sl@0
    72
@return	Reference to constructed CDirectGdiContext.
sl@0
    73
*/
sl@0
    74
EXPORT_C CDirectGdiContext* CDirectGdiContext::NewL(CDirectGdiDriver& aDirectGdiDriver)
sl@0
    75
	{
sl@0
    76
	CDirectGdiContext* result = new(ELeave) CDirectGdiContext(aDirectGdiDriver);
sl@0
    77
	CleanupStack::PushL(result);
sl@0
    78
sl@0
    79
	// Cache a reference to the driver locally, so that we do not need to use
sl@0
    80
	// the singleton accessor all the time. The singleton accessor utilises TLS
sl@0
    81
	// and hence incurs a performance penalty.
sl@0
    82
	//
sl@0
    83
	result->ConstructL();
sl@0
    84
sl@0
    85
	CleanupStack::Pop();
sl@0
    86
	return result;
sl@0
    87
	}
sl@0
    88
sl@0
    89
sl@0
    90
/**
sl@0
    91
Installs a rendering engine instance from the supplied driver, records
sl@0
    92
a reference to the driver (for use by the destructor), and initialises it.
sl@0
    93
sl@0
    94
@pre	Invoked by NewL().
sl@0
    95
@post	Instance of MDirectGdiEngine has been created.
sl@0
    96
sl@0
    97
@leave	If CDirectGdiDriver::CreateEngine() returns an error code.
sl@0
    98
*/
sl@0
    99
void CDirectGdiContext::ConstructL()
sl@0
   100
	{
sl@0
   101
	User::LeaveIfError(iDriver.CreateEngine(iEngine));
sl@0
   102
	Reset();	// Initialise context and engine to default values.
sl@0
   103
	}
sl@0
   104
sl@0
   105
sl@0
   106
/**
sl@0
   107
Object constructor. Declared private for better encapsulation. A factory method is 
sl@0
   108
provided to instantiate this class. This class is not intended for derivation. Binary
sl@0
   109
compatibility needs to be maintained.
sl@0
   110
sl@0
   111
@param	aDirectGdiDriver The driver that coordinates management of DirectGDI resources.
sl@0
   112
sl@0
   113
@pre	The driver must be initialised.
sl@0
   114
@post	None.
sl@0
   115
*/
sl@0
   116
EXPORT_C CDirectGdiContext::CDirectGdiContext(CDirectGdiDriver& aDirectGdiDriver) :
sl@0
   117
	iDriver(aDirectGdiDriver)	
sl@0
   118
	{	
sl@0
   119
	}
sl@0
   120
sl@0
   121
sl@0
   122
/**
sl@0
   123
Unbind current target from drawing context and mark drawing engine for deletion.
sl@0
   124
sl@0
   125
@pre	None.
sl@0
   126
@post	Rendering engine has had targets unbound and is marked for deletion.
sl@0
   127
*/
sl@0
   128
EXPORT_C CDirectGdiContext::~CDirectGdiContext()
sl@0
   129
	{
sl@0
   130
	// If an engine has been bound, destroy it through the driver.
sl@0
   131
	if (iEngine)
sl@0
   132
		{
sl@0
   133
		iDriver.DestroyEngine(iEngine);
sl@0
   134
		}
sl@0
   135
sl@0
   136
	CleanUpBrushPattern();
sl@0
   137
	iClippingRegion.Close();
sl@0
   138
	}
sl@0
   139
sl@0
   140
sl@0
   141
/**
sl@0
   142
Binds a rendering target to this drawing context.
sl@0
   143
sl@0
   144
Subsequent rendering operations after calling this method will apply to the new rendering
sl@0
   145
target. The clipping region will be reset to none, in other words drawing will be clipped to the 
sl@0
   146
full area of the new target by default, other context states such as pen or brush colour,
sl@0
   147
font, etc. will remain unchanged.
sl@0
   148
sl@0
   149
This operation could fail, DirectGDI clients should always check the return value when 
sl@0
   150
calling this method. The error state is not modified by this function.
sl@0
   151
sl@0
   152
@param	aTarget	DirectGDI rendering target.
sl@0
   153
sl@0
   154
@pre	Rendering target has been fully constructed.
sl@0
   155
@post	The drawing context is bound to the new rendering target.
sl@0
   156
sl@0
   157
@return	KErrNone if successful, KErrNotSupported if target is incompatible with the drawing context,
sl@0
   158
		otherwise one of the system-wide error codes.
sl@0
   159
*/
sl@0
   160
EXPORT_C TInt CDirectGdiContext::Activate(RDirectGdiImageTarget& aTarget)
sl@0
   161
	{
sl@0
   162
	GRAPHICS_TRACE("CDirectGdiContext::Activate");	
sl@0
   163
	TInt err = iEngine->Activate(aTarget);
sl@0
   164
	
sl@0
   165
	iActivated = EFalse;
sl@0
   166
	if (err == KErrNone)
sl@0
   167
		{
sl@0
   168
		iActivated = ETrue;
sl@0
   169
		}
sl@0
   170
	return err;
sl@0
   171
	}
sl@0
   172
sl@0
   173
/**
sl@0
   174
Disables AutoUpdateJustification state. 
sl@0
   175
sl@0
   176
@see CDirectGdiContext::SetJustifyAutoUpdate
sl@0
   177
*/
sl@0
   178
EXPORT_C void CDirectGdiContext::NoJustifyAutoUpdate()
sl@0
   179
	{
sl@0
   180
	GRAPHICS_TRACE("CDirectGdiContext::NoJustifyAutoUpdate");
sl@0
   181
	iAutoUpdateJustification = EFalse;
sl@0
   182
	}
sl@0
   183
sl@0
   184
/**
sl@0
   185
Enables AutoUpdateJustification state. 
sl@0
   186
During the text drawing, some text parameters which impact on positioning the text on the screen will be updated and applied 
sl@0
   187
*/
sl@0
   188
EXPORT_C void CDirectGdiContext::SetJustifyAutoUpdate()
sl@0
   189
	{
sl@0
   190
	GRAPHICS_TRACE("CDirectGdiContext::SetJustifyAutoUpdate");
sl@0
   191
	iAutoUpdateJustification = ETrue;
sl@0
   192
	}
sl@0
   193
sl@0
   194
/**
sl@0
   195
Draws the whole of a CFbsBitmap. Calls BitBlt() with a rectangle set to the extents of aBitmap.
sl@0
   196
sl@0
   197
No scaling or stretching is involved. The current clipping region and drawing mode apply. The
sl@0
   198
source bitmap can reside in system memory or ROM. Bitmaps in system memory may be compressed
sl@0
   199
using RLE or Palette compression, and can be in any supported display mode. Please refer to
sl@0
   200
CFbsBitmap documentation for more details.
sl@0
   201
sl@0
   202
If the client modifies the content of the bitmap after issuing a BitBlt() command, the method
sl@0
   203
does not guarantee whether the old bitmap content or the new one will be drawn. Clients must call
sl@0
   204
Finish() on the driver before modifying the bitmap content if they want a guaranteed result that 
sl@0
   205
the previously issued BitBlt() will draw the old bitmap content.
sl@0
   206
sl@0
   207
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   208
sl@0
   209
@see	void CDirectGdiContext::BitBlt(const TPoint& aPoint, const CFbsBitmap* aBitmap, const TRect& aSourceRect);
sl@0
   210
@param	aDestPos		The position to draw the top left corner of the bitmap.
sl@0
   211
@param	aSourceBitmap	The source bitmap. 
sl@0
   212
sl@0
   213
@pre	The rendering target has been activated.
sl@0
   214
@post	Request to draw the bitmap content has been accepted. There is no guarantee that the request
sl@0
   215
		has been processed when the method returns.
sl@0
   216
sl@0
   217
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   218
*/
sl@0
   219
EXPORT_C void CDirectGdiContext::BitBlt(const TPoint& aDestPos, const CFbsBitmap& aSourceBitmap)
sl@0
   220
	{
sl@0
   221
	GRAPHICS_TRACE2("CDirectGdiContext::BitBlt(%d,%d)", aDestPos.iX, aDestPos.iY);
sl@0
   222
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   223
	
sl@0
   224
	if (ValidateBitmap (aSourceBitmap))
sl@0
   225
		{
sl@0
   226
		iEngine->BitBlt(aDestPos, aSourceBitmap, TRect(aSourceBitmap.SizeInPixels()));
sl@0
   227
		}
sl@0
   228
	}
sl@0
   229
sl@0
   230
sl@0
   231
/** 
sl@0
   232
Draws a particular rectangle from a CFbsBitmap via bitmap block image transfer. 
sl@0
   233
The bitmap content is specified by the given source rectangle. The bitmap content is drawn 
sl@0
   234
into the rendering target starting from the given destination position. To draw the content
sl@0
   235
of the entire bitmap, a source rectangle TRect(TPoint(0,0), aBitmap.SizeInPixels()) is used. 
sl@0
   236
sl@0
   237
The source rectangle is intersected with the source bitmap’s full extent, and the intersection
sl@0
   238
will become the effective value of the source rectangle.
sl@0
   239
sl@0
   240
No scaling or stretching is involved. The current clipping region and drawing mode apply. The
sl@0
   241
source bitmap can reside in system memory or ROM. Bitmaps in system memory may be compressed
sl@0
   242
using RLE or Palette compression, and can be in any supported display mode. Please refer to
sl@0
   243
CFbsBitmap documentation for more details.
sl@0
   244
sl@0
   245
The bitmap is not guaranteed to continue to exist outside the implementation of this method, for example
sl@0
   246
DirectGDI clients may delete the bitmap immediately after issuing a BitBlt() command. The adaptation
sl@0
   247
must maintain its own copy by duplicating the bitmap if access to the bitmap data is required
sl@0
   248
later on, for example outside this method implementation. Duplicating the bitmap will increase its
sl@0
   249
reference counter and will prevent the object from being destroyed by Fbserv. The adaptation
sl@0
   250
must make sure the bitmap copy is destroyed when it is no longer needed.
sl@0
   251
sl@0
   252
If the client modifies the content of the bitmap after issuing BitBlt() command, the method
sl@0
   253
does not guarantee whether the old bitmap content or the new one will be drawn. Clients must call
sl@0
   254
Finish() on the driver before modifying the bitmap content if they want a guaranteed result that 
sl@0
   255
the previously issued BitBlt() will draw the old bitmap content.
sl@0
   256
sl@0
   257
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   258
sl@0
   259
@param	aDestPos		The position to draw the top left corner of the bitmap (destination position).
sl@0
   260
@param	aSourceBitmap	The source bitmap.
sl@0
   261
@param	aSourceRect		A rectangle defining the piece of the source to be drawn. No image data 
sl@0
   262
						is transferred if no intersection exists with the bitmap.  
sl@0
   263
						NOTE: The top and left hand edges are inclusive, the bottom and 
sl@0
   264
						right hand edge are exclusive.
sl@0
   265
sl@0
   266
@pre	The rendering target has been activated.
sl@0
   267
@post	Request to draw the bitmap content has been accepted. There is no guarantee that the request
sl@0
   268
		has been processed when the method returns.
sl@0
   269
sl@0
   270
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   271
*/
sl@0
   272
EXPORT_C void CDirectGdiContext::BitBlt(
sl@0
   273
		const TPoint& aDestPos, 
sl@0
   274
		const CFbsBitmap& aSourceBitmap, 
sl@0
   275
		const TRect& aSourceRect)
sl@0
   276
	{
sl@0
   277
	GRAPHICS_TRACE2("CDirectGdiContext::BitBlt(%d,%d)", aDestPos.iX, aDestPos.iY);
sl@0
   278
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   279
	
sl@0
   280
	if (ValidateBitmap(aSourceBitmap))
sl@0
   281
		{
sl@0
   282
		TRect sourceRect = IntersectBitmapWithRect(aSourceBitmap, aSourceRect);		
sl@0
   283
		if (!sourceRect.IsEmpty())
sl@0
   284
			{
sl@0
   285
			iEngine->BitBlt(aDestPos, aSourceBitmap, sourceRect);
sl@0
   286
			}
sl@0
   287
		}
sl@0
   288
	}
sl@0
   289
sl@0
   290
/**
sl@0
   291
Validates a specified bitmap image. 
sl@0
   292
The bitmap is deemed invalid if its associated handle equals KNullHandle or it 
sl@0
   293
has a width or height of zero.
sl@0
   294
sl@0
   295
The following errors are set in iDirectGdiDriver if the associated conditions are met:
sl@0
   296
	- KErrBadHandle if the handle associated with the bitmap equals KNullHandle.
sl@0
   297
	- KErrArgument is the bitmaps width or height is zero.
sl@0
   298
sl@0
   299
@param aBitmap The bitmap to validate.
sl@0
   300
sl@0
   301
@return ETrue if the specified bitmap is valid, otherwise EFalse.
sl@0
   302
*/
sl@0
   303
TBool CDirectGdiContext::ValidateBitmap(const CFbsBitmap& aBitmap)
sl@0
   304
	{
sl@0
   305
	TInt errorCode = KErrNone;
sl@0
   306
	TBool result = ETrue;
sl@0
   307
sl@0
   308
	if (aBitmap.Handle() == KNullHandle)
sl@0
   309
		{
sl@0
   310
		errorCode = KErrBadHandle;
sl@0
   311
		}
sl@0
   312
	else
sl@0
   313
		{
sl@0
   314
		// Check that mask and source bitmap have width and height.
sl@0
   315
		const TSize bitmapSize = aBitmap.SizeInPixels();
sl@0
   316
		if (!bitmapSize.iWidth || !bitmapSize.iHeight)
sl@0
   317
			{
sl@0
   318
			errorCode = KErrArgument;
sl@0
   319
			}
sl@0
   320
		}
sl@0
   321
sl@0
   322
	if (errorCode != KErrNone)
sl@0
   323
		{
sl@0
   324
		iDriver.SetError(errorCode);	
sl@0
   325
		result = EFalse;
sl@0
   326
		}
sl@0
   327
sl@0
   328
	return result;
sl@0
   329
	}
sl@0
   330
sl@0
   331
/*
sl@0
   332
Returns a TRect that intersects both the CFbsBitmap and the passed-in TRect.
sl@0
   333
sl@0
   334
@param aBitmap The bitmap to intersect with.
sl@0
   335
@param aRect The TRect object that is overlapping the bitmap.
sl@0
   336
@return A TRect that represents the intersection of the two. If the two do not intersect,
sl@0
   337
        it will be an empty TRect object.
sl@0
   338
*/
sl@0
   339
TRect CDirectGdiContext::IntersectBitmapWithRect(const CFbsBitmap& aBitmap, const TRect& aRect) const
sl@0
   340
	{
sl@0
   341
	TRect result = TRect(aBitmap.SizeInPixels());
sl@0
   342
	
sl@0
   343
	if (aRect == result)
sl@0
   344
		return result;
sl@0
   345
	
sl@0
   346
	if (result.Intersects(aRect))
sl@0
   347
		{
sl@0
   348
		result.Intersection(aRect);
sl@0
   349
		return result;
sl@0
   350
		}
sl@0
   351
	
sl@0
   352
	return TRect(0,0,0,0);
sl@0
   353
	}
sl@0
   354
sl@0
   355
/**
sl@0
   356
sl@0
   357
Validates the specified source bitmap and mask pair.
sl@0
   358
First validates the source and mask bitmaps individually, and then checks for valid
sl@0
   359
bitmap pairings. The only pairing not supported is: EGray256 masks and sources with 
sl@0
   360
an alpha-channel when using EDrawModeWriteAlpha.
sl@0
   361
 
sl@0
   362
@see CDirectGdiContext::ValidateBitmap()
sl@0
   363
sl@0
   364
The following errors are set in iDirectGdiDriver if the associated conditions are met:
sl@0
   365
	- KErrBadHandle if the handle associated with either bitmap equals KNullHandle.
sl@0
   366
	- KErrArgument if either bitmaps width or height is zero.
sl@0
   367
	- KErrArgument if the mask format is EGray256 and the source contains an alpha-channel and draw mode is EDrawModeWriteAlpha.
sl@0
   368
 
sl@0
   369
@param aSourceBitmap 	The source bitmap to validate.
sl@0
   370
@param aMaskBitmap 		The mask to validate.
sl@0
   371
 
sl@0
   372
@return ETrue if the specified bitmaps is valid, otherwise EFalse.	
sl@0
   373
*/
sl@0
   374
TBool CDirectGdiContext::ValidateSourceAndMaskBitmaps(const CFbsBitmap& aSourceBitmap, const CFbsBitmap& aMaskBitmap)
sl@0
   375
	{
sl@0
   376
	TInt errorCode = KErrNone;
sl@0
   377
	TBool result = ETrue;
sl@0
   378
	
sl@0
   379
	if (ValidateBitmap (aSourceBitmap) && ValidateBitmap (aMaskBitmap))
sl@0
   380
		{
sl@0
   381
		TDisplayMode sourceBitmapDisplayMode = aSourceBitmap.DisplayMode();
sl@0
   382
	
sl@0
   383
		// We do not currently support EGray256 masks and sources with an alpha-channel
sl@0
   384
		// with EDrawModeWriteAlpha.
sl@0
   385
		if ((iDrawMode == DirectGdi::EDrawModeWriteAlpha) &&
sl@0
   386
			(aMaskBitmap.DisplayMode() == EGray256) &&
sl@0
   387
			((sourceBitmapDisplayMode == EColor16MA) || (sourceBitmapDisplayMode == EColor16MAP)))
sl@0
   388
			{
sl@0
   389
			errorCode = KErrArgument;
sl@0
   390
			}
sl@0
   391
		}
sl@0
   392
	else
sl@0
   393
		{
sl@0
   394
		result = EFalse;
sl@0
   395
		}
sl@0
   396
	
sl@0
   397
	if (errorCode != KErrNone)
sl@0
   398
		{
sl@0
   399
		iDriver.SetError(errorCode);	
sl@0
   400
		result = EFalse;
sl@0
   401
		}
sl@0
   402
	
sl@0
   403
	return result;
sl@0
   404
	}
sl@0
   405
sl@0
   406
/**
sl@0
   407
Helper method for performing BitBltMasked.
sl@0
   408
Note that aInvertMask is ignored if aMaskPos is not at 0,0.
sl@0
   409
sl@0
   410
@see	CDirectGdiContext::BitBlt(const TPoint& aPoint, const CFbsBitmap& aBitmap, const TRect& aSourceRect);
sl@0
   411
@see	CDirectGdiContext::BitBltMasked(const TPoint&, const CFbsBitmap&,const TRect&, const CFbsBitmap&, const TPoint&);
sl@0
   412
sl@0
   413
@param	aDestPos		The destination for the top left corner of the transferred bitmap. 
sl@0
   414
						It is relative to the top left corner of the destination bitmap, which may be the screen. 
sl@0
   415
@param	aSourceBitmap	A memory-resident source bitmap.
sl@0
   416
@param	aSourceRect		A rectangle defining the piece of the bitmap to be drawn, 
sl@0
   417
						with co-ordinates relative to the top left corner of the bitmap. 
sl@0
   418
@param	aMaskBitmap		Mask bitmap.
sl@0
   419
@param	aInvertMask		If EFalse, a source pixel that is masked by a black pixel is not transferred to 
sl@0
   420
						the destination rectangle. If ETrue, then a source pixel that is masked by a 
sl@0
   421
						white pixel is not transferred to the destination rectangle. If alpha blending
sl@0
   422
						is used instead of masking, this flag is ignored and no inversion takes place.
sl@0
   423
						Note that this parameter is ignored if aMaskPos does not equal TPoint(0,0).
sl@0
   424
@param	aMaskPos		The point on the mask bitmap to use as the top left corner 
sl@0
   425
*/
sl@0
   426
void CDirectGdiContext::DoBitBltMasked(
sl@0
   427
		const TPoint& aDestPos,
sl@0
   428
		const CFbsBitmap& aSourceBitmap,
sl@0
   429
		const TRect& aSourceRect,
sl@0
   430
		const CFbsBitmap& aMaskBitmap,
sl@0
   431
		TBool aInvertMask,
sl@0
   432
		const TPoint& aMaskPos)
sl@0
   433
	{
sl@0
   434
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   435
	
sl@0
   436
	if (ValidateSourceAndMaskBitmaps(aSourceBitmap, aMaskBitmap))
sl@0
   437
		{
sl@0
   438
		// If the source rectangle does not intersect aBitmap, do nothing.
sl@0
   439
		TRect sourceRect = IntersectBitmapWithRect(aSourceBitmap, aSourceRect);
sl@0
   440
		if (!sourceRect.IsEmpty())
sl@0
   441
			{
sl@0
   442
			if (aMaskPos == TPoint(0, 0))
sl@0
   443
				{
sl@0
   444
				iEngine->BitBltMasked(aDestPos, aSourceBitmap, sourceRect, aMaskBitmap, aInvertMask);
sl@0
   445
				}
sl@0
   446
			else
sl@0
   447
				{
sl@0
   448
				TSize maskSize = aMaskBitmap.SizeInPixels();
sl@0
   449
				// Convert negative or large mask offsets into sensible positive ones for tiling.
sl@0
   450
				TPoint maskOffset(aMaskPos.iX % maskSize.iWidth, aMaskPos.iY % maskSize.iHeight);
sl@0
   451
				if (maskOffset.iX < 0) 
sl@0
   452
					maskOffset.iX += maskSize.iWidth;
sl@0
   453
				if (maskOffset.iY < 0) 
sl@0
   454
					maskOffset.iY += maskSize.iHeight;
sl@0
   455
sl@0
   456
				iEngine->BitBltMasked(aDestPos, aSourceBitmap, sourceRect, aMaskBitmap, maskOffset);
sl@0
   457
				}
sl@0
   458
			}
sl@0
   459
		}
sl@0
   460
	}
sl@0
   461
sl@0
   462
sl@0
   463
/**
sl@0
   464
Performs a masked bitmap block transfer. Source rectangle operates in a similar way to BitBlt().
sl@0
   465
sl@0
   466
This function uses either a black and white (binary) mask bitmap, or if the mask's display mode is 
sl@0
   467
EGray256, alpha blending is used. The result is undefined if the mask pixel value is neither black nor 
sl@0
   468
white and the mask display mode is other than EGray256.
sl@0
   469
sl@0
   470
The mask is aligned with the source bitmap by aligning the first pixel of the mask and source bitmaps within
sl@0
   471
the source rectangle. Tiling in both directions applies if the mask size is smaller than the source rectangle.
sl@0
   472
Note that the mask is applied before the piece of the bitmap is defined - the mask is tiled relative to the 
sl@0
   473
top left of the original source bitmap rather than the top left of the bitmap piece. If the mask has zero
sl@0
   474
width or height, the error state is set to KErrArgument and no drawing is performed.
sl@0
   475
sl@0
   476
The mask bitmap can be used as either a positive or negative mask. Masked pixels are not mapped to the 
sl@0
   477
destination rectangle.
sl@0
   478
sl@0
   479
If the client modifies the contents of the bitmap or the mask after issuing the BitBltMasked() command, the
sl@0
   480
method does not guarantee whether the old bitmap or mask contents, or the new ones will be used. 
sl@0
   481
Clients must call Finish() on the driver before modifying the bitmap or mask contents if they want a 
sl@0
   482
guaranteed  result that the previously issued BitBltMasked() will be using the old bitmap or mask contents.
sl@0
   483
sl@0
   484
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   485
sl@0
   486
@see	CDirectGdiContext::BitBlt(const TPoint& aPoint, const CFbsBitmap& aBitmap, const TRect& aSourceRect);
sl@0
   487
@see	CDirectGdiContext::BitBltMasked(const TPoint&, const CFbsBitmap&,const TRect&, const CFbsBitmap&, const TPoint&);
sl@0
   488
sl@0
   489
@param	aDestPos		The destination for the top left corner of the transferred bitmap. 
sl@0
   490
						It is relative to the top left corner of the destination bitmap, which may be the screen. 
sl@0
   491
@param	aSourceBitmap	A memory-resident source bitmap.
sl@0
   492
@param	aSourceRect		A rectangle defining the piece of the bitmap to be drawn, 
sl@0
   493
						with co-ordinates relative to the top left corner of the bitmap. 
sl@0
   494
@param	aMaskBitmap		Mask bitmap.
sl@0
   495
@param	aInvertMask		If EFalse, a source pixel that is masked by a black pixel is not transferred to 
sl@0
   496
						the destination rectangle. If ETrue, then a source pixel that is masked by a 
sl@0
   497
						white pixel is not transferred to the destination rectangle. If alpha blending
sl@0
   498
						is used instead of masking, this flag is ignored and no inversion takes place.
sl@0
   499
sl@0
   500
@pre	The rendering target has been activated. aBitmap and aMask hold valid handles.
sl@0
   501
@post	Request to draw the masked bitmap content has been accepted. 
sl@0
   502
		There is no guarantee that the request has been processed when the method returns.
sl@0
   503
sl@0
   504
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   505
*/
sl@0
   506
EXPORT_C void CDirectGdiContext::BitBltMasked(
sl@0
   507
		const TPoint& aDestPos,
sl@0
   508
		const CFbsBitmap& aSourceBitmap,
sl@0
   509
		const TRect& aSourceRect,
sl@0
   510
		const CFbsBitmap& aMaskBitmap,
sl@0
   511
		TBool aInvertMask)
sl@0
   512
	{
sl@0
   513
	GRAPHICS_TRACE2("CDirectGdiContext::BitBltMasked(%d,%d)", aDestPos.iX, aDestPos.iY);
sl@0
   514
	DoBitBltMasked (aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask, TPoint(0, 0));
sl@0
   515
	}
sl@0
   516
sl@0
   517
sl@0
   518
/**
sl@0
   519
Performs a masked bitmap block transfer. Source rectangle operates in a similar way to BitBlt().
sl@0
   520
sl@0
   521
This function uses either a black and white (binary) mask bitmap, or if aMaskBitmap's display mode is 
sl@0
   522
EGray256, alpha blending is used. The result is undefined if the mask pixel value is neither black nor 
sl@0
   523
white and the mask display mode is other than EGray256.
sl@0
   524
sl@0
   525
The source rectangle is intersected with the source bitmap’s full extent and the intersection
sl@0
   526
will become the effective value. The mask bitmap is aligned with the source bitmap by aligning
sl@0
   527
its pixel at the position specified in aMaskPt with the first pixel of the source bitmap
sl@0
   528
within the source rectangle. The mask bitmap will be tiled if it is smaller than the source
sl@0
   529
rectangle. If the mask has zero width or height, the error state is set to KErrArgument and 
sl@0
   530
no drawing is performed.
sl@0
   531
sl@0
   532
If the client modifies the contents of the bitmap or the mask after issuing the BitBltMasked() command, the
sl@0
   533
method does not guarantee whether the old bitmap or mask contents, or the new ones will be used. 
sl@0
   534
Clients must call Finish() on the driver before modifying the bitmap or mask contents if they want a 
sl@0
   535
guaranteed  result that the previously issued BitBltMasked() will be using the old bitmap or mask contents.
sl@0
   536
sl@0
   537
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   538
sl@0
   539
@see	CDirectGdiContext::BitBlt(const TPoint& aPoint, const CFbsBitmap& aBitmap, const TRect& aSourceRect);
sl@0
   540
@see	CDirectGdiContext::BitBltMasked(const TPoint&, const CFbsBitmap&,const TRect&, const CFbsBitmap&, TBool);
sl@0
   541
sl@0
   542
@param	aDestPos		The destination for the top left corner of the transferred bitmap. 
sl@0
   543
						It is relative to the top left corner of the destination bitmap, which may be the screen. 
sl@0
   544
@param	aSourceBitmap	A memory-resident source bitmap.
sl@0
   545
@param	aSourceRect		A rectangle defining the piece of the bitmap to be drawn, 
sl@0
   546
						with co-ordinates relative to the top left corner of the bitmap. 
sl@0
   547
@param	aMaskBitmap		Mask bitmap.
sl@0
   548
@param	aMaskPos		The point on the mask bitmap to use as the top left corner 
sl@0
   549
sl@0
   550
@pre	The rendering target has been activated. aBitmap and aMask hold valid handles.
sl@0
   551
@post	Request to draw the masked bitmap content has been accepted. 
sl@0
   552
		There is no guarantee that the request has been processed when the method returns.
sl@0
   553
sl@0
   554
@panic	DGDI 7, if no context is activated
sl@0
   555
*/
sl@0
   556
EXPORT_C void CDirectGdiContext::BitBltMasked(
sl@0
   557
		const TPoint& aDestPos,
sl@0
   558
		const CFbsBitmap& aSourceBitmap,
sl@0
   559
		const TRect& aSourceRect,
sl@0
   560
		const CFbsBitmap& aMaskBitmap,
sl@0
   561
		const TPoint& aMaskPos)
sl@0
   562
	{
sl@0
   563
	GRAPHICS_TRACE2("CDirectGdiContext::BitBltMasked(%d,%d)", aDestPos.iX, aDestPos.iY);
sl@0
   564
	DoBitBltMasked (aDestPos, aSourceBitmap, aSourceRect, aMaskBitmap, EFalse, aMaskPos);		
sl@0
   565
	}
sl@0
   566
sl@0
   567
sl@0
   568
/**
sl@0
   569
Resets the current clipping region to none.
sl@0
   570
sl@0
   571
@see    CDirectGdiContext::SetClippingRegion(const TRegion&)
sl@0
   572
sl@0
   573
@pre	The rendering target has been activated.
sl@0
   574
@post	Clipping region is reset to none. Subsequent rendering operations on current target will be clipped to the
sl@0
   575
		full area of the target.
sl@0
   576
sl@0
   577
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   578
*/
sl@0
   579
EXPORT_C void CDirectGdiContext::ResetClippingRegion()
sl@0
   580
	{
sl@0
   581
	GRAPHICS_TRACE("CDirectGdiContext::ResetClippingRegion");
sl@0
   582
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   583
	iClippingRegion.Clear();
sl@0
   584
	iEngine->ResetClippingRegion();
sl@0
   585
	}
sl@0
   586
sl@0
   587
sl@0
   588
/**
sl@0
   589
Clears the entire target area with the current brush colour. The area is filled 
sl@0
   590
as if ESolidBrush is used. Current clipping region and drawing mode apply.
sl@0
   591
sl@0
   592
@see	CDirectGdiContext::Clear(const TRect&)
sl@0
   593
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
   594
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
   595
@see	CDirectGdiContext::SetClippingRegion(const TRegion& aRegion)
sl@0
   596
sl@0
   597
@pre	The rendering target has been activated.
sl@0
   598
@post	Request to clear given rectangular area (clipped to current clipping region) 
sl@0
   599
		has been accepted. There is no guarantee that the request has been processed 
sl@0
   600
		when the method returns.
sl@0
   601
sl@0
   602
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   603
*/
sl@0
   604
EXPORT_C void CDirectGdiContext::Clear()
sl@0
   605
	{
sl@0
   606
	GRAPHICS_TRACE("CDirectGdiContext::Clear");
sl@0
   607
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   608
	iEngine->Clear();
sl@0
   609
	}
sl@0
   610
sl@0
   611
sl@0
   612
/**
sl@0
   613
Clears the given rectangular area with current brush colour. The area is filled 
sl@0
   614
as if ESolidBrush is used. Current clipping region and drawing mode apply.
sl@0
   615
sl@0
   616
@see	CDirectGdiContext::Clear()
sl@0
   617
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
   618
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
   619
@see	CDirectGdiContext::SetClippingRegion(const TRegion&)
sl@0
   620
sl@0
   621
@param	aRect Area to be cleared.
sl@0
   622
sl@0
   623
@pre	The rendering target has been activated.
sl@0
   624
@post	Request to clear given rectangular area (clipped to current clipping region) has been accepted. 
sl@0
   625
		There is no guarantee that the request has been processed when the method returns.
sl@0
   626
sl@0
   627
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   628
*/
sl@0
   629
EXPORT_C void CDirectGdiContext::Clear(const TRect& aRect)
sl@0
   630
	{
sl@0
   631
	GRAPHICS_TRACE2("CDirectGdiContext::Clear(%d,%d)", aRect.Width(), aRect.Height());
sl@0
   632
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   633
	if(aRect.Width() <= 0 || aRect.Height() <= 0)
sl@0
   634
		{
sl@0
   635
		return;
sl@0
   636
		}
sl@0
   637
	iEngine->Clear(aRect);
sl@0
   638
	}
sl@0
   639
sl@0
   640
sl@0
   641
/**
sl@0
   642
Resets the bitmap brush pattern to none. If the current brush style is EPatternedBrush, the brush
sl@0
   643
style will be set to ENullBrush.
sl@0
   644
sl@0
   645
@see	CDirectGdiContext::SetBrushPattern(const CFbsBitmap&)
sl@0
   646
sl@0
   647
@pre	None.
sl@0
   648
@post	The bitmap brush pattern is no longer used.
sl@0
   649
*/
sl@0
   650
EXPORT_C void CDirectGdiContext::ResetBrushPattern()
sl@0
   651
	{
sl@0
   652
	GRAPHICS_TRACE("CDirectGdiContext::ResetBrushPattern");
sl@0
   653
	CleanUpBrushPattern();
sl@0
   654
	if (iBrushStyle == DirectGdi::EPatternedBrush)
sl@0
   655
		{
sl@0
   656
		iBrushStyle = DirectGdi::ENullBrush;
sl@0
   657
		iEngine->SetBrushStyle(iBrushStyle);
sl@0
   658
		}
sl@0
   659
	iEngine->ResetBrushPattern();
sl@0
   660
	}
sl@0
   661
sl@0
   662
sl@0
   663
/**
sl@0
   664
Releases the selected font for this context.
sl@0
   665
sl@0
   666
@pre	None.
sl@0
   667
@post	Internal resources previously allocated during SetFont() are released.
sl@0
   668
sl@0
   669
@see	CDirectGdiContext::SetFont()
sl@0
   670
@see	CGraphicsContext::DiscardFont()
sl@0
   671
*/
sl@0
   672
EXPORT_C void CDirectGdiContext::ResetFont()
sl@0
   673
	{
sl@0
   674
	GRAPHICS_TRACE("CDirectGdiContext::ResetFont");
sl@0
   675
	iEngine->ResetFont();
sl@0
   676
	iFont.Reset();
sl@0
   677
	}
sl@0
   678
sl@0
   679
sl@0
   680
/**
sl@0
   681
Draws an arc. An arc is a segment of an ellipse which is defined by a given rectangle. The arc is drawn 
sl@0
   682
anti-clockwise from the arc start point to the arc end point. The arc start point is the intersection  
sl@0
   683
between vectors from the centre of the ellipse to the given start position and the ellipse. 
sl@0
   684
Arc end point is defined in the same way.
sl@0
   685
sl@0
   686
@param	aRect	The rectangle which defines where to draw the ellipse.
sl@0
   687
@param	aStart	Position to be used in defining the arc start point.
sl@0
   688
@param	aEnd	Position to be used in defining the arc end point.
sl@0
   689
sl@0
   690
@pre	The rendering target has been activated.
sl@0
   691
@post	Request to draw an arc has been accepted. There is no guarantee that the request 
sl@0
   692
		has been processed when the method returns.
sl@0
   693
sl@0
   694
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   695
sl@0
   696
@see	CDirectGdiContext::DrawPie(const TRect&, const TPoint&, const TPoint&)
sl@0
   697
*/
sl@0
   698
EXPORT_C void CDirectGdiContext::DrawArc(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
sl@0
   699
	{
sl@0
   700
	GRAPHICS_TRACE("CDirectGdiContext::DrawArc");
sl@0
   701
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   702
	if (aRect.IsEmpty() || iPenStyle == DirectGdi::ENullPen || (iPenSize.iWidth == 0) || (iPenSize.iHeight == 0))
sl@0
   703
		{
sl@0
   704
		return;
sl@0
   705
		}
sl@0
   706
	iEngine->DrawArc(aRect, aStart, aEnd);
sl@0
   707
	}
sl@0
   708
sl@0
   709
sl@0
   710
/**
sl@0
   711
Draws and fills a pie. A pie is a shape defined by an arc from the ellipse and straight lines 
sl@0
   712
from the centre of the ellipse to the arc start and end position. 
sl@0
   713
sl@0
   714
@param	aRect	The rectangle which defines where to draw the ellipse
sl@0
   715
@param	aStart	Position to be used in defining the arc start point
sl@0
   716
@param	aEnd	Position to be used in defining the arc end point
sl@0
   717
sl@0
   718
@pre	The rendering target has been activated.
sl@0
   719
@post	Request to draw a pie has been accepted. There is no guarantee that the request 
sl@0
   720
		has been processed when the method returns.
sl@0
   721
sl@0
   722
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   723
@panic  DGDI 9, if the brush style is EPatternedBrush but no pattern has been set.
sl@0
   724
sl@0
   725
@see	CDirectGdiContext::DrawArc(const TRect&, const TPoint&, const TPoint&)
sl@0
   726
*/
sl@0
   727
EXPORT_C void CDirectGdiContext::DrawPie(const TRect& aRect, const TPoint& aStart, const TPoint& aEnd)
sl@0
   728
	{
sl@0
   729
	GRAPHICS_TRACE("CDirectGdiContext::DrawPie");
sl@0
   730
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   731
	GRAPHICS_ASSERT_ALWAYS(iBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
   732
	
sl@0
   733
	if (aRect.IsEmpty())
sl@0
   734
		{
sl@0
   735
		return;
sl@0
   736
		}
sl@0
   737
	iEngine->DrawPie(aRect, aStart, aEnd);
sl@0
   738
	}
sl@0
   739
sl@0
   740
/**
sl@0
   741
Draws the bitmap contents into the destination rectangle. Scaling applies when 
sl@0
   742
the extents of the source bitmap and the destination rectangle do not match.
sl@0
   743
If the source rectangle is not completely contained within the source 
sl@0
   744
bitmap's extents, no drawing will take place.
sl@0
   745
sl@0
   746
If the client modifies the content of the bitmap after issuing a DrawBitmap() command,
sl@0
   747
the method does not guarantee that the old bitmap content or the new one
sl@0
   748
will be drawn. Clients must call Finish() on the driver before modifying the bitmap 
sl@0
   749
content if they want a guarantee that the previously issued DrawBitmap() will draw the
sl@0
   750
old bitmap content.
sl@0
   751
sl@0
   752
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   753
sl@0
   754
@see CDirectGdiContext::DrawBitmap(const TRect&, const CFbsBitmap&, const TRect&)
sl@0
   755
sl@0
   756
@param	aDestRect Destination rectangle.
sl@0
   757
@param	aSourceBitmap Source bitmap.
sl@0
   758
sl@0
   759
@pre	The rendering target has been activated.
sl@0
   760
@post	Request to draw the bitmap content has been accepted.
sl@0
   761
		There is no guarantee that the request has been processed when the method returns.
sl@0
   762
sl@0
   763
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   764
*/
sl@0
   765
EXPORT_C void CDirectGdiContext::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap)
sl@0
   766
	{
sl@0
   767
	GRAPHICS_TRACE2("CDirectGdiContext::DrawBitmap(%d,%d)", aDestRect.iTl.iX, aDestRect.iTl.iY);
sl@0
   768
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   769
	if (ValidateBitmap (aSourceBitmap))
sl@0
   770
		{
sl@0
   771
		DrawBitmap(aDestRect, aSourceBitmap,TRect(TPoint(0, 0), aSourceBitmap.SizeInPixels()));		
sl@0
   772
		}
sl@0
   773
	}
sl@0
   774
sl@0
   775
/**
sl@0
   776
Draws the bitmap contents into the destination rectangle. Scaling applies when 
sl@0
   777
the destination and source rectangles do not match. The source bitmap may be 
sl@0
   778
compressed. The destination rectangle will be clipped with the current clipping 
sl@0
   779
region. If the source rectangle is not completely contained within the source 
sl@0
   780
bitmap's extents, no drawing will take place.
sl@0
   781
sl@0
   782
If the client modifies the content of the bitmap after issuing a DrawBitmap() command,
sl@0
   783
the method does not guarantee that the old bitmap content or the new one
sl@0
   784
will be drawn. Clients must call Finish() on the driver before modifying the bitmap 
sl@0
   785
content if they want a guarantee that the previously issued DrawBitmap() will draw the
sl@0
   786
old bitmap content.
sl@0
   787
sl@0
   788
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   789
sl@0
   790
@see CDirectGdiContext::DrawBitmap(const TRect&, const CFbsBitmap&)
sl@0
   791
sl@0
   792
@param	aDestRect		Destination rectangle.
sl@0
   793
@param	aSourceBitmap	Source bitmap.
sl@0
   794
@param	aSourceRect		Rectangle specifying the area of the source bitmap to be drawn.
sl@0
   795
sl@0
   796
@pre	The rendering target has been activated.
sl@0
   797
@post	Request to draw the bitmap content has been accepted.
sl@0
   798
		There is no guarantee that the request has been processed when the method returns.
sl@0
   799
sl@0
   800
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   801
*/
sl@0
   802
EXPORT_C void CDirectGdiContext::DrawBitmap(const TRect& aDestRect, const CFbsBitmap& aSourceBitmap, const TRect& aSourceRect)
sl@0
   803
	{
sl@0
   804
	GRAPHICS_TRACE2("CDirectGdiContext::DrawBitmap(%d,%d)", aDestRect.iTl.iX, aDestRect.iTl.iY);
sl@0
   805
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   806
sl@0
   807
	if (ValidateBitmap(aSourceBitmap))
sl@0
   808
		{
sl@0
   809
		TSize sourceSize = aSourceBitmap.SizeInPixels();
sl@0
   810
		// If source rectangle is not fully contained by the extents of the source bitmap,
sl@0
   811
		// or the size of the source bitmap is zero, do nothing.
sl@0
   812
		if (aSourceRect.iTl.iX >= 0 &&
sl@0
   813
			aSourceRect.iTl.iY >= 0 &&
sl@0
   814
			aSourceRect.iBr.iX <= sourceSize.iWidth &&
sl@0
   815
			aSourceRect.iBr.iY <= sourceSize.iHeight &&
sl@0
   816
			!aDestRect.IsEmpty() && !aSourceRect.IsEmpty())
sl@0
   817
			{
sl@0
   818
			iEngine->DrawBitmap(aDestRect, aSourceBitmap, aSourceRect);
sl@0
   819
			}
sl@0
   820
		}
sl@0
   821
	}
sl@0
   822
sl@0
   823
sl@0
   824
/**
sl@0
   825
Draws bitmap content with masking. Scaling applies to both the source bitmap and the mask. 
sl@0
   826
Both the source and the mask bitmap may be compressed. The destination and source rectangles
sl@0
   827
operate in a similar way to DrawBitmap().
sl@0
   828
sl@0
   829
This function uses either a black and white (binary) mask bitmap, or if the mask's display mode is 
sl@0
   830
EGray256, alpha blending is used. The result is undefined if the mask pixel value is neither black nor 
sl@0
   831
white and the mask display mode is other than EGray256.
sl@0
   832
sl@0
   833
The mask is aligned with the source bitmap by aligning their first pixels within the source 
sl@0
   834
rectangle. If the mask size is greater than or equal to the source bitmap size, it will be 
sl@0
   835
scaled to fit the destination rectangle in the same way the source bitmap is scaled. 
sl@0
   836
If the mask has zero width or height, the error state is set to KErrArgument and no drawing is performed.
sl@0
   837
sl@0
   838
If the mask is smaller than the source bitmap, it will be tiled to fit the source bitmap size, 
sl@0
   839
and then scaled to fit the destination rectangle.
sl@0
   840
sl@0
   841
If the client modifies the content of the bitmap or mask after issuing a DrawBitmapMasked() command,
sl@0
   842
the method does not guarantee whether the old bitmap or mask contents, or the new ones
sl@0
   843
will be used. Clients must call Finish() on the driver before modifying the bitmap or mask contents 
sl@0
   844
if they want a guaranteed result that the previously issued DrawBitmapMasked() will be using the old 
sl@0
   845
bitmap or mask contents.
sl@0
   846
sl@0
   847
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
   848
sl@0
   849
@param	aDestRect		Destination rectangle.
sl@0
   850
@param	aSourceBitmap	Source bitmap.
sl@0
   851
@param	aSourceRect		Rectangle specifying the area of the source bitmap to be drawn.
sl@0
   852
@param	aMaskBitmap		Mask bitmap.
sl@0
   853
@param	aInvertMask		If EFalse, a source pixel that is masked by a black pixel is not transferred to 
sl@0
   854
						the destination rectangle. If ETrue, then a source pixel that is masked by a 
sl@0
   855
						white pixel is not transferred to the destination rectangle. If alpha blending
sl@0
   856
						is used instead of masking, this flag is ignored and no inversion takes place.
sl@0
   857
sl@0
   858
@pre	The rendering target has been activated.
sl@0
   859
@post	Request to draw the bitmap content with masking has been accepted.
sl@0
   860
		There is no guarantee that the request has been processed when the method returns.
sl@0
   861
sl@0
   862
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   863
*/
sl@0
   864
EXPORT_C void CDirectGdiContext::DrawBitmapMasked(
sl@0
   865
		const TRect& aDestRect,
sl@0
   866
		const CFbsBitmap& aSourceBitmap,
sl@0
   867
		const TRect& aSourceRect,
sl@0
   868
		const CFbsBitmap& aMaskBitmap,
sl@0
   869
		TBool aInvertMask)
sl@0
   870
	{
sl@0
   871
	GRAPHICS_TRACE2("CDirectGdiContext::DrawBitmapMasked(%d,%d)", aDestRect.iTl.iX, aDestRect.iTl.iY);
sl@0
   872
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   873
sl@0
   874
	if (ValidateSourceAndMaskBitmaps(aSourceBitmap, aMaskBitmap))
sl@0
   875
		{
sl@0
   876
		TSize sourceSize = aSourceBitmap.SizeInPixels();
sl@0
   877
		// Ensure source rect is fully within bounds of bitmap extents and
sl@0
   878
		// dest and source rect are not empty. 
sl@0
   879
		if (aSourceRect.iTl.iX >= 0 &&
sl@0
   880
			aSourceRect.iTl.iY >= 0 &&
sl@0
   881
			aSourceRect.iBr.iX <= sourceSize.iWidth &&
sl@0
   882
			aSourceRect.iBr.iY <= sourceSize.iHeight &&
sl@0
   883
			!aDestRect.IsEmpty() && !aSourceRect.IsEmpty())
sl@0
   884
			{
sl@0
   885
			iEngine->DrawBitmapMasked(aDestRect, aSourceBitmap, aSourceRect, aMaskBitmap, aInvertMask);
sl@0
   886
			}
sl@0
   887
		}
sl@0
   888
	}
sl@0
   889
sl@0
   890
/**
sl@0
   891
Draws and fills a rectangle with rounded corners. The corner is constructed as an arc of 
sl@0
   892
an ellipse. The outline is drawn in the current pen colour, size and style if the pen 
sl@0
   893
colour is not ENullPen. The area inside the rectangle is filled according to the current 
sl@0
   894
brush colour and style.
sl@0
   895
sl@0
   896
If the corner size has zero width or height, a square-cornered rectangle is drawn. If the corner 
sl@0
   897
size is greater than half the extents of the rectangle, an ellipse is drawn.
sl@0
   898
sl@0
   899
@param	aRect The rectangle.
sl@0
   900
@param	aCornerSize The corner size.
sl@0
   901
sl@0
   902
@see	CDirectGdiContext::SetPenSize()
sl@0
   903
@see	CDirectGdiContext::SetPenStyle()
sl@0
   904
@see	CDirectGdiContext::SetPenColor()
sl@0
   905
@see	CDirectGdiContext::SetBrushColor()
sl@0
   906
@see	CDirectGdiContext::SetBrushStyle()
sl@0
   907
@see	CDirectGdiContext::SetBrushPattern()
sl@0
   908
sl@0
   909
@pre	The rendering target has been activated.
sl@0
   910
@post	Request to draw a rectangle with rounded corners has been accepted. There is no guarantee 
sl@0
   911
		that the request has been processed when the method returns.
sl@0
   912
		
sl@0
   913
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
   914
@panic  DGDI 9, if the brush style is EPatternedBrush but no pattern has been set.
sl@0
   915
*/
sl@0
   916
EXPORT_C void CDirectGdiContext::DrawRoundRect(const TRect& aRect, const TSize& aCornerSize)
sl@0
   917
	{
sl@0
   918
	GRAPHICS_TRACE("CDirectGdiContext::DrawRoundRect");
sl@0
   919
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   920
	GRAPHICS_ASSERT_ALWAYS(iBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
   921
			
sl@0
   922
	TSize ellsize(aCornerSize);
sl@0
   923
	ellsize.iWidth <<= 1;
sl@0
   924
	ellsize.iHeight <<= 1;
sl@0
   925
sl@0
   926
	if (aRect.Width() > 0 && aRect.Height() > 0)
sl@0
   927
		{
sl@0
   928
		if (ellsize.iWidth < 3 || ellsize.iHeight < 3)
sl@0
   929
			{
sl@0
   930
			DrawRect(aRect);
sl@0
   931
			return;
sl@0
   932
			}	
sl@0
   933
		if (aRect.Width() < ellsize.iWidth && aRect.Height() < ellsize.iHeight)
sl@0
   934
			{
sl@0
   935
			DrawEllipse(aRect);
sl@0
   936
			return;
sl@0
   937
			}
sl@0
   938
		iEngine->DrawRoundRect(aRect, aCornerSize);
sl@0
   939
		}
sl@0
   940
	}
sl@0
   941
sl@0
   942
/**
sl@0
   943
Draws a polyline using the points in an array. A polyline is a series of concatenated straight 
sl@0
   944
lines joining a set of points. Current pen settings and drawing mode applies. If @c aPointList 
sl@0
   945
has one element, a plot is performed.
sl@0
   946
sl@0
   947
@param	aPointList Array of points specifying points on the polyline.
sl@0
   948
sl@0
   949
@pre	The rendering target has been activated.
sl@0
   950
@post	Request to draw a polyline has been accepted.
sl@0
   951
		There is no guarantee that the request has been processed when the method returns.
sl@0
   952
		The internal drawing position is set to the last point in the array.
sl@0
   953
sl@0
   954
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   955
sl@0
   956
@see	CDirectGdiContext::DrawPolyLineNoEndPoint(const TArray<TPoint>&)
sl@0
   957
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
   958
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
   959
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
   960
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
   961
*/
sl@0
   962
EXPORT_C void CDirectGdiContext::DrawPolyLine(const TArray<TPoint>& aPointList)
sl@0
   963
	{
sl@0
   964
	GRAPHICS_TRACE("CDirectGdiContext::DrawPolyLine");
sl@0
   965
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
   966
	if ((aPointList.Count() < 1) || iPenStyle == DirectGdi::ENullPen || (iPenSize.iWidth == 0) || (iPenSize.iHeight == 0))
sl@0
   967
		{
sl@0
   968
		return;
sl@0
   969
		}
sl@0
   970
sl@0
   971
	if (aPointList.Count() == 1)
sl@0
   972
		{
sl@0
   973
		Plot(aPointList[0]);
sl@0
   974
		}
sl@0
   975
	else
sl@0
   976
		{
sl@0
   977
		iEngine->DrawPolyLine(aPointList);
sl@0
   978
		}
sl@0
   979
	}
sl@0
   980
sl@0
   981
sl@0
   982
/**
sl@0
   983
Draws a polyline using the points in an array. A polyline is a series of concatenated straight 
sl@0
   984
lines joining a set of points. Current pen settings and drawing mode applies. If @c aPointList 
sl@0
   985
has less than two elements, no drawing is performed. If @c aPointList has exactly two elements
sl@0
   986
then a DrawLine is performed.
sl@0
   987
sl@0
   988
@param	aPointList Array of points specifying points on the polyline.
sl@0
   989
sl@0
   990
@pre	The rendering target has been activated.
sl@0
   991
@post	Request to draw a polyline has been accepted.
sl@0
   992
		There is no guarantee that the request has been processed when the method returns.
sl@0
   993
		The internal drawing position is set to the last point in the array.
sl@0
   994
sl@0
   995
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
   996
sl@0
   997
@see	CDirectGdiContext::DrawPolyLine(const TArray<TPoint>&)
sl@0
   998
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
   999
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1000
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1001
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  1002
*/
sl@0
  1003
EXPORT_C void CDirectGdiContext::DrawPolyLineNoEndPoint(const TArray<TPoint>& aPointList)
sl@0
  1004
	{
sl@0
  1005
	GRAPHICS_TRACE("CDirectGdiContext::DrawPolyLineNoEndPoint");
sl@0
  1006
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1007
sl@0
  1008
	const TInt points = aPointList.Count();
sl@0
  1009
sl@0
  1010
	if (points == 1)
sl@0
  1011
		{
sl@0
  1012
		Plot(aPointList[0]);
sl@0
  1013
		}
sl@0
  1014
	else if (points == 2)
sl@0
  1015
		{
sl@0
  1016
		DrawLine(aPointList[0], aPointList[1]);
sl@0
  1017
		}
sl@0
  1018
	else if (points > 2 && !(iPenStyle == DirectGdi::ENullPen || (iPenSize.iWidth == 0) || (iPenSize.iHeight == 0)))
sl@0
  1019
		{
sl@0
  1020
		iEngine->DrawPolyLineNoEndPoint(aPointList);
sl@0
  1021
		}
sl@0
  1022
	}
sl@0
  1023
sl@0
  1024
/**
sl@0
  1025
Draws and fills a polygon defined using an array of points. The first point in the array defines the 
sl@0
  1026
start of the first side of the polygon. The final side of the polygon is drawn using the last point 
sl@0
  1027
from the array, and the line is drawn to the start point of the first side. The outline of the polygon
sl@0
  1028
is drawn using the current pen settings and the area is filled with the current brush settings. 
sl@0
  1029
sl@0
  1030
Self-crossing polygons are filled according to the specified fill rule.
sl@0
  1031
sl@0
  1032
If @c aPointList is empty, no drawing is performed. If it has one element, the result is the same as Plot(). 
sl@0
  1033
If it has two elements, the result is the same as DrawLine().
sl@0
  1034
sl@0
  1035
The error state is set to KErrArgument if aFillRule is an invalid fill rule.
sl@0
  1036
sl@0
  1037
@param	aPointList Array of points specifying the vertices of the polygon.
sl@0
  1038
@param	aFillRule Polygon filling rule.
sl@0
  1039
sl@0
  1040
@pre	The rendering target has been activated.
sl@0
  1041
@post	Request to draw a polygon has been accepted. There is no guarantee that the request has been processed
sl@0
  1042
		when the method returns. The internal drawing position is set to the last point in the array.
sl@0
  1043
		
sl@0
  1044
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
  1045
@panic  DGDI 9, if the brush style is EPatternedBrush but no pattern has been set.
sl@0
  1046
sl@0
  1047
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1048
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1049
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1050
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1051
@see	CDirectGdiContext::SetBrushStyle(DirectGdi::TBrushStyle)
sl@0
  1052
@see	CDirectGdiContext::SetBrushPattern(const CFbsBitmap&)
sl@0
  1053
@see	CDirectGdiContext::SetBrushOrigin(TPoint)
sl@0
  1054
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  1055
@see	DirectGdi::TFillRule
sl@0
  1056
*/
sl@0
  1057
EXPORT_C void CDirectGdiContext::DrawPolygon(const TArray<TPoint>& aPointList, DirectGdi::TFillRule aFillRule)
sl@0
  1058
	{
sl@0
  1059
	GRAPHICS_TRACE("CDirectGdiContext::DrawPolygon");
sl@0
  1060
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1061
	GRAPHICS_ASSERT_ALWAYS(iBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
  1062
	
sl@0
  1063
	if (aFillRule != DirectGdi::EAlternate && aFillRule != DirectGdi::EWinding)
sl@0
  1064
		{
sl@0
  1065
		iDriver.SetError(KErrArgument);
sl@0
  1066
		return;
sl@0
  1067
		}
sl@0
  1068
	
sl@0
  1069
	if (aPointList.Count() == 0)
sl@0
  1070
		{
sl@0
  1071
		return;
sl@0
  1072
		}
sl@0
  1073
	
sl@0
  1074
	iEngine->DrawPolygon(aPointList, aFillRule);
sl@0
  1075
	}
sl@0
  1076
sl@0
  1077
sl@0
  1078
/**
sl@0
  1079
Draws and fills an ellipse inside the given rectangle. Current pen and brush settings apply.
sl@0
  1080
sl@0
  1081
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1082
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1083
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1084
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1085
@see	CDirectGdiContext::SetBrushStyle(DirectGdi::TBrushStyle)
sl@0
  1086
@see	CDirectGdiContext::SetBrushPattern(const CFbsBitmap&)
sl@0
  1087
sl@0
  1088
@param	aRect The rectangle in which to draw the ellipse.
sl@0
  1089
sl@0
  1090
@pre	The rendering target has been activated.
sl@0
  1091
@post	Request to draw an ellipse has been accepted. 
sl@0
  1092
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1093
		
sl@0
  1094
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
  1095
@panic  DGDI 9, if the brush style is EPatternedBrush but no pattern has been set.
sl@0
  1096
*/
sl@0
  1097
EXPORT_C void CDirectGdiContext::DrawEllipse(const TRect& aRect)
sl@0
  1098
	{
sl@0
  1099
	GRAPHICS_TRACE("CDirectGdiContext::DrawEllipse");
sl@0
  1100
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1101
	GRAPHICS_ASSERT_ALWAYS(iBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
  1102
	
sl@0
  1103
	if (aRect.IsEmpty())
sl@0
  1104
		{
sl@0
  1105
		return;
sl@0
  1106
		}
sl@0
  1107
	iEngine->DrawEllipse(aRect);
sl@0
  1108
	}
sl@0
  1109
sl@0
  1110
sl@0
  1111
/**
sl@0
  1112
Draws a straight line from the start to the end position using current pen size, colour and style. 
sl@0
  1113
sl@0
  1114
@param	aStart	Start position.
sl@0
  1115
@param	aEnd	End position.
sl@0
  1116
sl@0
  1117
@pre	The rendering target has been activated.
sl@0
  1118
@post	Request to draw a straight line with the current pen colour, size and style has been accepted.
sl@0
  1119
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1120
		The internal drawing position is set to @c aEnd.
sl@0
  1121
sl@0
  1122
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1123
sl@0
  1124
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1125
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1126
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1127
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  1128
*/
sl@0
  1129
EXPORT_C void CDirectGdiContext::DrawLine(const TPoint& aStart, const TPoint& aEnd)
sl@0
  1130
	{
sl@0
  1131
	GRAPHICS_TRACE("CDirectGdiContext::DrawLine");
sl@0
  1132
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1133
sl@0
  1134
	// Do not draw if start/end at the same point or pensize is 0
sl@0
  1135
	if(aStart == aEnd || iPenStyle == DirectGdi::ENullPen || iPenSize.iWidth == 0 || iPenSize.iHeight == 0)
sl@0
  1136
		{
sl@0
  1137
		return;
sl@0
  1138
		}
sl@0
  1139
sl@0
  1140
	iEngine->DrawLine(aStart, aEnd);
sl@0
  1141
	}
sl@0
  1142
sl@0
  1143
sl@0
  1144
/**
sl@0
  1145
Draws a straight line from the current internal drawing position to a point using the current pen size, colour and style.
sl@0
  1146
sl@0
  1147
@param	aPoint The end-point of the line.
sl@0
  1148
sl@0
  1149
@pre	Rendering target has been activated.
sl@0
  1150
@post	Request to draw a straight line to a specified point with the current pen colour, size and style has been accepted.
sl@0
  1151
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1152
		Internal drawing position is set to @c aPoint.
sl@0
  1153
sl@0
  1154
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1155
sl@0
  1156
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1157
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1158
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1159
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  1160
@see	CDirectGdiContext::MoveTo(TPoint)
sl@0
  1161
@see	CDirectGdiContext::MoveBy(TPoint)
sl@0
  1162
*/
sl@0
  1163
EXPORT_C void CDirectGdiContext::DrawLineTo(const TPoint& aPoint)
sl@0
  1164
	{
sl@0
  1165
	GRAPHICS_TRACE("CDirectGdiContext::DrawLineTo");
sl@0
  1166
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1167
	if(iPenStyle == DirectGdi::ENullPen || iPenSize.iWidth == 0 || iPenSize.iHeight == 0)
sl@0
  1168
		{
sl@0
  1169
		return;
sl@0
  1170
		}
sl@0
  1171
	iEngine->DrawLineTo (aPoint);
sl@0
  1172
	}
sl@0
  1173
sl@0
  1174
sl@0
  1175
/**
sl@0
  1176
Draws a straight line relative to the current internal drawing position, using a vector. 
sl@0
  1177
The start point of the line is the current internal drawing position. The vector @c aVector 
sl@0
  1178
is added to the internal drawing position to give the end point of the line.
sl@0
  1179
sl@0
  1180
@param	aVector	The vector to add to the current internal drawing position, giving the end point of the line.
sl@0
  1181
sl@0
  1182
@pre	The rendering target has been activated.
sl@0
  1183
@post	The request to draw a straight line using the vector with current pen colour, size and style has been
sl@0
  1184
		accepted. There is no guarantee that the request has been processed when the method returns. 
sl@0
  1185
		The internal drawing position is set to the end of the line.
sl@0
  1186
sl@0
  1187
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1188
sl@0
  1189
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1190
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1191
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1192
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  1193
@see	CDirectGdiContext::MoveTo(TPoint)
sl@0
  1194
@see	CDirectGdiContext::MoveBy(TPoint)
sl@0
  1195
*/
sl@0
  1196
EXPORT_C void CDirectGdiContext::DrawLineBy(const TPoint& aVector)
sl@0
  1197
	{
sl@0
  1198
	GRAPHICS_TRACE("CDirectGdiContext::DrawLineBy");
sl@0
  1199
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1200
	if(iPenStyle == DirectGdi::ENullPen || iPenSize.iWidth == 0 || iPenSize.iHeight == 0)
sl@0
  1201
		{
sl@0
  1202
		return;
sl@0
  1203
		}
sl@0
  1204
sl@0
  1205
	if (aVector != TPoint(0,0))
sl@0
  1206
		{
sl@0
  1207
		iEngine->DrawLineBy(aVector);
sl@0
  1208
		}
sl@0
  1209
	}
sl@0
  1210
sl@0
  1211
sl@0
  1212
/**
sl@0
  1213
Draws and fills a rectangle. The outlines are drawn according to the current pen colour, size and style.
sl@0
  1214
The area inside the rectangle is filled according to the current brush colour and style.
sl@0
  1215
sl@0
  1216
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  1217
@see	CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle)
sl@0
  1218
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1219
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1220
@see	CDirectGdiContext::SetBrushStyle(DirectGdi::TBrushStyle)
sl@0
  1221
@see	CDirectGdiContext::SetBrushPattern(const CFbsBitmap&)
sl@0
  1222
sl@0
  1223
@param	aRect The rectangle.
sl@0
  1224
sl@0
  1225
@pre	The rendering target has been activated.
sl@0
  1226
@post	Request to draw a rectangle according to the current pen and brush settings has been accepted.
sl@0
  1227
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1228
		
sl@0
  1229
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
  1230
@panic  DGDI 9, if the brush style is EPatternedBrush but no pattern has been set.
sl@0
  1231
*/
sl@0
  1232
EXPORT_C void CDirectGdiContext::DrawRect(const TRect& aRect)
sl@0
  1233
	{
sl@0
  1234
	GRAPHICS_TRACE("CDirectGdiContext::DrawRect");
sl@0
  1235
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1236
	GRAPHICS_ASSERT_ALWAYS(iBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
  1237
	
sl@0
  1238
	if(aRect.IsEmpty())
sl@0
  1239
		return;
sl@0
  1240
	
sl@0
  1241
	iEngine->DrawRect(aRect);
sl@0
  1242
	}
sl@0
  1243
sl@0
  1244
sl@0
  1245
/**
sl@0
  1246
Draws text at the last print position.
sl@0
  1247
sl@0
  1248
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1249
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1250
@see	CDirectGdiContext::SetFont(const CFont*)
sl@0
  1251
sl@0
  1252
@param	aText	The text string to be drawn.
sl@0
  1253
@param	aParam	Parameters used in drawing text.
sl@0
  1254
sl@0
  1255
@pre	The rendering target has been activated.
sl@0
  1256
@post	Request to draw the text at the last text position using the current font and pen colour has been accepted.
sl@0
  1257
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1258
sl@0
  1259
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1260
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush
sl@0
  1261
		style is neither ENullBrush nor ESolidBrush.
sl@0
  1262
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1263
*/
sl@0
  1264
EXPORT_C void CDirectGdiContext::DrawText(const TDesC& aText, const DirectGdi::TTextParameters* aParam)
sl@0
  1265
	{
sl@0
  1266
	GRAPHICS_TRACE("CDirectGdiContext::DrawText");
sl@0
  1267
	DrawText(aText, aParam, iLastPrintPosition, DirectGdi::ELeft, CFont::EHorizontal);
sl@0
  1268
	}
sl@0
  1269
sl@0
  1270
sl@0
  1271
/**
sl@0
  1272
Draws text at the specified text position.
sl@0
  1273
sl@0
  1274
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1275
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1276
@see	CDirectGdiContext::SetFont(const CFont*)
sl@0
  1277
sl@0
  1278
@param	aText		The text string to be drawn.
sl@0
  1279
@param	aParam		Parameters used in drawing text.
sl@0
  1280
@param	aPosition	The position to draw at.
sl@0
  1281
sl@0
  1282
@pre	The rendering target has been activated.
sl@0
  1283
@post	Request to draw the text at the specified position using the current font and pen colour has been accepted.
sl@0
  1284
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1285
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1286
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush
sl@0
  1287
		style is neither ENullBrush nor ESolidBrush.
sl@0
  1288
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1289
*/
sl@0
  1290
EXPORT_C void CDirectGdiContext::DrawText(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TPoint& aPosition)
sl@0
  1291
	{
sl@0
  1292
	GRAPHICS_TRACE("CDirectGdiContext::DrawText");
sl@0
  1293
	DrawText(aText, aParam, aPosition, DirectGdi::ELeft, CFont::EHorizontal);
sl@0
  1294
	}
sl@0
  1295
sl@0
  1296
sl@0
  1297
/**
sl@0
  1298
Draws text clipped to the specified rectangle.
sl@0
  1299
sl@0
  1300
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1301
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1302
@see	CDirectGdiContext::SetFont(const CFont*)
sl@0
  1303
sl@0
  1304
@param	aText		The text string to be drawn.
sl@0
  1305
@param	aParam		Parameters used in drawing text.
sl@0
  1306
@param	aClipRect	The clipping rectangle.
sl@0
  1307
sl@0
  1308
@pre	The rendering target has been activated.
sl@0
  1309
@post	Request to draw the text at the last text position using the current font and pen colour, clipped to the specified rectangle has been accepted.
sl@0
  1310
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1311
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1312
@panic	DGDI 10, if the active font is an outline and/or shadow font and 
sl@0
  1313
		the brush style is neither ENullBrush nor ESolidBrush.
sl@0
  1314
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1315
*/
sl@0
  1316
EXPORT_C void CDirectGdiContext::DrawText(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect& aClipRect)
sl@0
  1317
	{
sl@0
  1318
	GRAPHICS_TRACE("CDirectGdiContext::DrawText");
sl@0
  1319
	DrawText(aText, aParam, iLastPrintPosition, DirectGdi::ELeft, CFont::EHorizontal, &aClipRect);
sl@0
  1320
	}
sl@0
  1321
sl@0
  1322
sl@0
  1323
/**
sl@0
  1324
Draws text clipped to the specified filled rectangle using a baseline offset,
sl@0
  1325
horizontal alignment and a margin.
sl@0
  1326
sl@0
  1327
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  1328
@see	CDirectGdiContext::SetBrushColor(TRgb)
sl@0
  1329
@see	CDirectGdiContext::SetFont(const CFont*)
sl@0
  1330
sl@0
  1331
@param	aText			The text string to be drawn.
sl@0
  1332
@param	aParam		Parameters used in drawing text.
sl@0
  1333
@param	aClipFillRect	The clipping rectangle (this rect will also be filled before text is plotted).
sl@0
  1334
@param	aBaselineOffset	An offset in pixels for the baseline from the normal position (bottom of the rectangle minus the descent of the font).
sl@0
  1335
@param	aAlignment		Horizontal alignment option relative to the specified rectangle.
sl@0
  1336
@param	aMargin			Offset to add to the position as calculated using specified rectangle.
sl@0
  1337
sl@0
  1338
@pre	The rendering target has been activated.
sl@0
  1339
@post	Request to draw the text within the filled rectangle using the current font and pen colour, offset and clipped to the specified rectangle has been accepted.
sl@0
  1340
		There is no guarantee that the request has been processed when the method returns.
sl@0
  1341
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1342
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush
sl@0
  1343
		style is neither ENullBrush nor ESolidBrush.
sl@0
  1344
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1345
*/
sl@0
  1346
EXPORT_C void CDirectGdiContext::DrawText(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset, DirectGdi::TTextAlign aAlignment, TInt aMargin)
sl@0
  1347
	{
sl@0
  1348
	GRAPHICS_TRACE("CDirectGdiContext::DrawText");
sl@0
  1349
	TPoint p(aClipFillRect.iTl);
sl@0
  1350
	p.iY += aBaselineOffset;
sl@0
  1351
	switch (aAlignment)
sl@0
  1352
		{
sl@0
  1353
		case DirectGdi::ELeft:
sl@0
  1354
			{
sl@0
  1355
			p.iX += aMargin;
sl@0
  1356
			break;
sl@0
  1357
			}
sl@0
  1358
		case DirectGdi::ERight:
sl@0
  1359
			{
sl@0
  1360
			p.iX = aClipFillRect.iBr.iX - aMargin;
sl@0
  1361
			break;
sl@0
  1362
			}
sl@0
  1363
		case DirectGdi::ECenter:
sl@0
  1364
			{
sl@0
  1365
			p.iX += (aClipFillRect.Width() >> 1) + aMargin;
sl@0
  1366
			break;
sl@0
  1367
			}
sl@0
  1368
		default:
sl@0
  1369
			{
sl@0
  1370
			iDriver.SetError(KErrArgument);
sl@0
  1371
			return;
sl@0
  1372
			}		
sl@0
  1373
		}
sl@0
  1374
	DrawText(aText, aParam, p, aAlignment, CFont::EHorizontal, &aClipFillRect, &aClipFillRect);
sl@0
  1375
	}
sl@0
  1376
sl@0
  1377
sl@0
  1378
/**
sl@0
  1379
The private general DrawText routine that implements all the others.
sl@0
  1380
sl@0
  1381
@param	aText		The text to be drawn.
sl@0
  1382
@param	aParam		Parameters used in drawing text.
sl@0
  1383
@param	aPosition	The origin of the text.
sl@0
  1384
@param	aAlignment	Left, centred or right, around aPosition; not used if drawing vertically.
sl@0
  1385
@param	aDirection	Direction: left to right, right to left, or top to bottom.
sl@0
  1386
@param	aClipRect	If non-null, used as a clippingrect when the text is drawn.
sl@0
  1387
@param	aFillRect	If non-null, filled before the text is drawn.
sl@0
  1388
sl@0
  1389
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1390
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush
sl@0
  1391
		style is neither ENullBrush nor ESolidBrush.
sl@0
  1392
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1393
*/
sl@0
  1394
void CDirectGdiContext::DrawText(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TPoint& aPosition, DirectGdi::TTextAlign aAlignment, 
sl@0
  1395
	CFont::TTextDirection aDirection, const TRect* aClipRect, const TRect* aFillRect)
sl@0
  1396
	{
sl@0
  1397
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1398
	// anything to do?
sl@0
  1399
	if (aClipRect && aClipRect->IsEmpty())
sl@0
  1400
		{
sl@0
  1401
		iDriver.SetError(KErrArgument);
sl@0
  1402
		return;
sl@0
  1403
		}
sl@0
  1404
sl@0
  1405
	GRAPHICS_ASSERT_ALWAYS(iFont.Handle() != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1406
	// This next check actually covers both bitmap and open fonts
sl@0
  1407
	const CBitmapFont* bitmap_font = iFont.Address();
sl@0
  1408
	GRAPHICS_ASSERT_ALWAYS(bitmap_font != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1409
sl@0
  1410
	// measure the text
sl@0
  1411
	CFont::TMeasureTextInput measure_text_input;
sl@0
  1412
	measure_text_input.iCharJustNum = iCharJustNum;
sl@0
  1413
	measure_text_input.iCharJustExcess = iCharJustExcess;
sl@0
  1414
	measure_text_input.iWordJustNum = iWordJustNum;
sl@0
  1415
	measure_text_input.iWordJustExcess = iWordJustExcess;
sl@0
  1416
	measure_text_input.iFlags |= CFont::TMeasureTextInput::EFVisualOrder;
sl@0
  1417
	if (aParam)
sl@0
  1418
		{
sl@0
  1419
		GRAPHICS_ASSERT_ALWAYS(aParam->iStart < aParam->iEnd ,EDirectGdiPanicBadParameter);
sl@0
  1420
		measure_text_input.iStartInputChar = aParam->iStart;
sl@0
  1421
		measure_text_input.iEndInputChar = Min(aText.Length(),aParam->iEnd);
sl@0
  1422
		}
sl@0
  1423
	CFont::TMeasureTextOutput measure_text_output;
sl@0
  1424
	const TInt advance = iFont.MeasureText(aText, &measure_text_input, &measure_text_output);
sl@0
  1425
	TRect text_bounds = measure_text_output.iBounds;
sl@0
  1426
sl@0
  1427
	//for linked fonts need an adjustment to the underline postion
sl@0
  1428
	TInt underlineStrikeoutOffset = BaselineCorrection();
sl@0
  1429
sl@0
  1430
	if (iUnderline == DirectGdi::EUnderlineOn)
sl@0
  1431
		{
sl@0
  1432
		TInt underline_top = 0;
sl@0
  1433
		TInt underline_bottom = 0;
sl@0
  1434
		GetUnderlineMetrics(underline_top, underline_bottom);
sl@0
  1435
		underline_top+=underlineStrikeoutOffset;
sl@0
  1436
		underline_bottom+=underlineStrikeoutOffset;
sl@0
  1437
		text_bounds.iTl.iY = Min(text_bounds.iTl.iY, underline_top);
sl@0
  1438
		text_bounds.iBr.iY = Max(text_bounds.iBr.iY, underline_bottom);
sl@0
  1439
		}
sl@0
  1440
	if (iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  1441
		{
sl@0
  1442
		TInt strike_top = 0;
sl@0
  1443
		TInt strike_bottom = 0;
sl@0
  1444
		GetStrikethroughMetrics(strike_top, strike_bottom);
sl@0
  1445
		strike_top+=underlineStrikeoutOffset;
sl@0
  1446
		strike_bottom+=underlineStrikeoutOffset;
sl@0
  1447
		text_bounds.iTl.iY = Min(text_bounds.iTl.iY, strike_top);
sl@0
  1448
		text_bounds.iBr.iY = Max(text_bounds.iBr.iY, strike_bottom);
sl@0
  1449
		}
sl@0
  1450
	if (iUnderline == DirectGdi::EUnderlineOn || iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  1451
		{
sl@0
  1452
		if (aDirection == CFont::EHorizontal)
sl@0
  1453
			{
sl@0
  1454
			text_bounds.iTl.iX = Min(text_bounds.iTl.iX, 0);
sl@0
  1455
			text_bounds.iBr.iX = Max(text_bounds.iBr.iX, advance);
sl@0
  1456
			}
sl@0
  1457
		else
sl@0
  1458
			{
sl@0
  1459
			text_bounds.iTl.iY = Min(text_bounds.iTl.iY, 0);
sl@0
  1460
			text_bounds.iBr.iY = Max(text_bounds.iBr.iY, advance);
sl@0
  1461
			}
sl@0
  1462
		}
sl@0
  1463
sl@0
  1464
	// work out the text origin and new drawing position
sl@0
  1465
	TPoint text_origin = aPosition;
sl@0
  1466
	if (aDirection != CFont::EVertical)
sl@0
  1467
		{
sl@0
  1468
		const TInt leftSideBearing = Min(text_bounds.iTl.iX, 0);
sl@0
  1469
		const TInt rightSideBearing = Max(text_bounds.iBr.iX, advance);
sl@0
  1470
		switch (aAlignment)
sl@0
  1471
			{
sl@0
  1472
			// We are forbidding side-bearings to leak over the sides here,
sl@0
  1473
			// but still keeping the start and end pen positions within bounds.
sl@0
  1474
			case DirectGdi::ELeft:
sl@0
  1475
				text_origin.iX -= leftSideBearing;
sl@0
  1476
				break;
sl@0
  1477
			case DirectGdi::ERight:
sl@0
  1478
				text_origin.iX -= rightSideBearing;
sl@0
  1479
				break;
sl@0
  1480
			case DirectGdi::ECenter:
sl@0
  1481
				// Centre is the average of left and right
sl@0
  1482
				text_origin.iX -= (leftSideBearing + rightSideBearing) >> 1;
sl@0
  1483
				break;
sl@0
  1484
			default:
sl@0
  1485
				iDriver.SetError(KErrArgument);
sl@0
  1486
				return;
sl@0
  1487
			}
sl@0
  1488
		}
sl@0
  1489
	iLastPrintPosition = text_origin;
sl@0
  1490
	if (aDirection == CFont::EHorizontal)
sl@0
  1491
		{
sl@0
  1492
		iLastPrintPosition.iX += advance;
sl@0
  1493
		}
sl@0
  1494
	else
sl@0
  1495
		{
sl@0
  1496
		iLastPrintPosition.iY += advance;
sl@0
  1497
		}
sl@0
  1498
	text_origin.iY += bitmap_font->iAlgStyle.iBaselineOffsetInPixels;
sl@0
  1499
	text_bounds.Move(text_origin);
sl@0
  1500
	text_origin += iOrigin;
sl@0
  1501
sl@0
  1502
	// determine clipping rectangle
sl@0
  1503
	TRect clipRect = aClipRect ? *aClipRect : text_bounds;
sl@0
  1504
sl@0
  1505
	// fill the box if necessary
sl@0
  1506
	if (aFillRect && (iBrushStyle != DirectGdi::ENullBrush))
sl@0
  1507
		{
sl@0
  1508
		TRect fillBox = *aFillRect;
sl@0
  1509
		if (fillBox.Intersects(clipRect))
sl@0
  1510
			{
sl@0
  1511
			fillBox.Intersection(clipRect);
sl@0
  1512
			iEngine->SetPenStyle(DirectGdi::ENullPen);	// Fill box, don't outline it
sl@0
  1513
			iEngine->DrawRect(fillBox);
sl@0
  1514
			iEngine->SetPenStyle(iPenStyle);		// Put the pen style back
sl@0
  1515
			}
sl@0
  1516
		}
sl@0
  1517
	if (!aText.Length())
sl@0
  1518
		{		
sl@0
  1519
		return;
sl@0
  1520
		}
sl@0
  1521
sl@0
  1522
	clipRect.Move(iOrigin);
sl@0
  1523
sl@0
  1524
	// decide which drawing routine to call
sl@0
  1525
sl@0
  1526
	TOpenFontMetrics metrics;
sl@0
  1527
	iFont.GetFontMetrics(metrics);
sl@0
  1528
	const TInt maxwidth = metrics.MaxWidth();
sl@0
  1529
	// extext will be TRUE, if font is underline/strikethrough/anti-aliased or it has shadow/outline effects ON.
sl@0
  1530
	// Depending on these properties it will call the proper draw routine.
sl@0
  1531
	TBool extext = EFalse;
sl@0
  1532
	TBool normaltext = EFalse;
sl@0
  1533
	const TBool antiAliased = (bitmap_font->GlyphBitmapType() == EAntiAliasedGlyphBitmap);
sl@0
  1534
	const TBool outlineAndShadow = (bitmap_font->GlyphBitmapType() == EFourColourBlendGlyphBitmap);
sl@0
  1535
	if (antiAliased || outlineAndShadow )
sl@0
  1536
		{
sl@0
  1537
		if ((outlineAndShadow) && !((iBrushStyle == DirectGdi::ENullBrush) || (iBrushStyle == DirectGdi::ESolidBrush)))
sl@0
  1538
			{
sl@0
  1539
			//For future compatibility it is better if brush style of ENullBrush or ESolidBrush is used 
sl@0
  1540
			//when drawing outline and shadow fonts.
sl@0
  1541
			GRAPHICS_PANIC_ALWAYS(EDirectGdiPanicInvalidBrushStyle);
sl@0
  1542
			}
sl@0
  1543
		extext = ETrue;
sl@0
  1544
		}
sl@0
  1545
	else if ((iUnderline == DirectGdi::EUnderlineOn) || (iStrikethrough == DirectGdi::EStrikethroughOn) || (iCharJustNum > 0) || (iWordJustNum > 0))
sl@0
  1546
		extext = ETrue;
sl@0
  1547
	else
sl@0
  1548
		normaltext = ETrue;
sl@0
  1549
sl@0
  1550
	const TInt charjustexcess = iCharJustExcess;
sl@0
  1551
	const TInt charjustnum = iCharJustNum;
sl@0
  1552
	const TInt wordjustexcess = iWordJustExcess;
sl@0
  1553
	const TInt wordjustnum = iWordJustNum;
sl@0
  1554
sl@0
  1555
	// Set up the parameter block for character positioning.
sl@0
  1556
	CFont::TPositionParam param;
sl@0
  1557
	param.iDirection = static_cast<TInt16>(aDirection);
sl@0
  1558
	param.iText.Set(aText);
sl@0
  1559
	TInt endDraw = aText.Length();
sl@0
  1560
	if (aParam)
sl@0
  1561
		{
sl@0
  1562
		param.iPosInText = aParam->iStart;
sl@0
  1563
		endDraw = Min(aText.Length(),aParam->iEnd);
sl@0
  1564
		}
sl@0
  1565
	else
sl@0
  1566
		{
sl@0
  1567
		param.iPosInText = 0;
sl@0
  1568
		}
sl@0
  1569
	param.iPen = text_origin;
sl@0
  1570
sl@0
  1571
	// Draw the text.
sl@0
  1572
	if (normaltext)
sl@0
  1573
		{
sl@0
  1574
		DoDrawText(param, endDraw, clipRect);
sl@0
  1575
		}
sl@0
  1576
	else if (extext)
sl@0
  1577
		{
sl@0
  1578
		DoDrawTextEx(param, endDraw, clipRect,underlineStrikeoutOffset);
sl@0
  1579
		}
sl@0
  1580
sl@0
  1581
	// Reset the justification parameters to their original values.
sl@0
  1582
	// These will be updated as required later in code.
sl@0
  1583
	iCharJustExcess = charjustexcess;
sl@0
  1584
	iCharJustNum = charjustnum;
sl@0
  1585
	iWordJustExcess = wordjustexcess;
sl@0
  1586
	iWordJustNum = wordjustnum;
sl@0
  1587
sl@0
  1588
	if (iAutoUpdateJustification)
sl@0
  1589
		UpdateJustification(aText, aParam);
sl@0
  1590
	}
sl@0
  1591
sl@0
  1592
/**
sl@0
  1593
Overridden  function which draws monochrome text within the given clip rectangle. No rotation applied.
sl@0
  1594
@param	aParam	Defines glyph code, ligature creation and diacritic placement.
sl@0
  1595
@param	aEnd	The end position within the text descriptor to draw.
sl@0
  1596
@param	aClipRect If not-empty, used as a clippingrect when the text is drawn.
sl@0
  1597
*/
sl@0
  1598
void CDirectGdiContext::DoDrawText(CFont::TPositionParam& aParam, const TInt aEnd, const TRect& aClipRect)
sl@0
  1599
	{
sl@0
  1600
	iEngine->BeginDrawGlyph();
sl@0
  1601
	RShapeInfo shapeInfo;
sl@0
  1602
	while (aParam.iPosInText < aEnd)
sl@0
  1603
		{
sl@0
  1604
		if (iFont.GetCharacterPosition2(aParam, shapeInfo))
sl@0
  1605
			{
sl@0
  1606
			const CFont::TPositionParam::TOutput* output = aParam.iOutput;
sl@0
  1607
			for (TInt i = 0; i < aParam.iOutputGlyphs; ++i, ++output)
sl@0
  1608
				iEngine->DrawGlyph(output->iBounds.iTl, output->iCode, output->iBitmap, EMonochromeGlyphBitmap, output->iBitmapSize, aClipRect); // All other parameters are default
sl@0
  1609
			}
sl@0
  1610
		}
sl@0
  1611
	iEngine->EndDrawGlyph();
sl@0
  1612
	
sl@0
  1613
	if (shapeInfo.IsOpen())
sl@0
  1614
		shapeInfo.Close();
sl@0
  1615
	}
sl@0
  1616
sl@0
  1617
sl@0
  1618
/**
sl@0
  1619
Overridden  function which draws monochrome text within the given clip rectangle. 
sl@0
  1620
The current rotation and font style (strikethrough, underline) are applied.
sl@0
  1621
sl@0
  1622
@param	aParam	Defines glyph code, ligature creation and diacritic placement.
sl@0
  1623
@param	aEnd	The end position within the text descriptor to draw.
sl@0
  1624
@param	aClipRect If not-empty, used as a clipping rect when the text is drawn.
sl@0
  1625
@param  aUnderlineStrikethroughOffset the offset for the underline, passed to save calculating this value again
sl@0
  1626
*/
sl@0
  1627
void CDirectGdiContext::DoDrawTextEx(CFont::TPositionParam& aParam, const TInt aEnd, const TRect& aClipRect, const TInt aUnderlineStrikethroughOffset)
sl@0
  1628
	{
sl@0
  1629
	TPoint startPen = aParam.iPen;
sl@0
  1630
	const CBitmapFont* bitmap_font = iFont.Address();
sl@0
  1631
	TInt underlineTop = 0;
sl@0
  1632
	TInt underlineBottom = 0;
sl@0
  1633
	if (iUnderline == DirectGdi::EUnderlineOn)
sl@0
  1634
		{
sl@0
  1635
		GetUnderlineMetrics(underlineTop, underlineBottom);
sl@0
  1636
		underlineTop+=aUnderlineStrikethroughOffset;
sl@0
  1637
		underlineBottom+=aUnderlineStrikethroughOffset;
sl@0
  1638
		}
sl@0
  1639
	TInt strikeTop = 0;
sl@0
  1640
	TInt strikeBottom = 0;
sl@0
  1641
	if (iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  1642
		{
sl@0
  1643
		GetStrikethroughMetrics(strikeTop, strikeBottom);
sl@0
  1644
		strikeTop+=aUnderlineStrikethroughOffset;
sl@0
  1645
		strikeBottom+=aUnderlineStrikethroughOffset;
sl@0
  1646
		}
sl@0
  1647
sl@0
  1648
	iEngine->BeginDrawGlyph();
sl@0
  1649
	RShapeInfo shapeInfo;
sl@0
  1650
	while (aParam.iPosInText < aEnd)
sl@0
  1651
		{
sl@0
  1652
		if (!iFont.GetCharacterPosition2(aParam, shapeInfo))
sl@0
  1653
			{
sl@0
  1654
			continue;
sl@0
  1655
			}
sl@0
  1656
sl@0
  1657
		TInt adjustment = 0;
sl@0
  1658
		if ((iCharJustExcess > 0) && (iCharJustNum > 0)) // character clipping/justification
sl@0
  1659
			{
sl@0
  1660
			adjustment = CGraphicsContext::JustificationInPixels(iCharJustExcess, iCharJustNum);
sl@0
  1661
			}
sl@0
  1662
sl@0
  1663
		const CFont::TPositionParam::TOutput* output = aParam.iOutput;
sl@0
  1664
		for (TInt i = 0; i < aParam.iOutputGlyphs; ++i, ++output)
sl@0
  1665
			{
sl@0
  1666
			//get the character metrics for the glyph type
sl@0
  1667
			TOpenFontCharMetrics characterParams;
sl@0
  1668
			const TUint8* bitmap;
sl@0
  1669
			TSize size;
sl@0
  1670
			//note may now be using a glyph code, and not a character
sl@0
  1671
			iFont.GetCharacterData(aParam.iOutput[i].iCode,characterParams,bitmap,size);
sl@0
  1672
			TGlyphBitmapType glyphType = characterParams.GlyphType();
sl@0
  1673
			
sl@0
  1674
			switch (glyphType)
sl@0
  1675
				{
sl@0
  1676
				case EAntiAliasedGlyphBitmap:
sl@0
  1677
				case EFourColourBlendGlyphBitmap:
sl@0
  1678
				case EDefaultGlyphBitmap:
sl@0
  1679
					iEngine->DrawGlyph(output->iBounds.iTl, output->iCode, output->iBitmap, glyphType, output->iBitmapSize, aClipRect);
sl@0
  1680
					break;
sl@0
  1681
					
sl@0
  1682
				default:
sl@0
  1683
					//if the outline or shadow is not specified for the character, then use the font setting for the glyph bitmap type
sl@0
  1684
					iEngine->DrawGlyph(output->iBounds.iTl, output->iCode, output->iBitmap, 
sl@0
  1685
									   bitmap_font->GlyphBitmapType(), output->iBitmapSize, aClipRect);		 
sl@0
  1686
					break;
sl@0
  1687
				}
sl@0
  1688
			}
sl@0
  1689
sl@0
  1690
		if (adjustment)
sl@0
  1691
			{
sl@0
  1692
			aParam.iPen.iX += adjustment;
sl@0
  1693
			}
sl@0
  1694
		if ((iWordJustExcess > 0) && (iWordJustNum > 0) && (aParam.iOutput[0].iCode == 0x0020)) // word justification
sl@0
  1695
			{
sl@0
  1696
			adjustment = CGraphicsContext::JustificationInPixels(iWordJustExcess, iWordJustNum);
sl@0
  1697
			aParam.iPen.iX += adjustment;
sl@0
  1698
			}
sl@0
  1699
		}
sl@0
  1700
	iEngine->EndDrawGlyph();
sl@0
  1701
	if (shapeInfo.IsOpen())
sl@0
  1702
		shapeInfo.Close();
sl@0
  1703
sl@0
  1704
	if (iUnderline == DirectGdi::EUnderlineOn)
sl@0
  1705
		{
sl@0
  1706
		TRect underlineRect(startPen.iX, startPen.iY + underlineTop, aParam.iPen.iX, startPen.iY + underlineBottom);
sl@0
  1707
		FillRect(underlineRect, iPenColor, aClipRect);
sl@0
  1708
		}
sl@0
  1709
sl@0
  1710
	if (iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  1711
		{
sl@0
  1712
		TRect strikethroughRect(startPen.iX, startPen.iY + strikeTop, aParam.iPen.iX, startPen.iY + strikeBottom);
sl@0
  1713
		FillRect(strikethroughRect, iPenColor, aClipRect);
sl@0
  1714
		}
sl@0
  1715
	}
sl@0
  1716
sl@0
  1717
sl@0
  1718
/**
sl@0
  1719
Fills the given rectangle with the specified colour (subject to the clip rect).
sl@0
  1720
This function is internal and used by the text drawing routines.
sl@0
  1721
sl@0
  1722
@param	aRect	The rectangle to fill.
sl@0
  1723
@param	aColor	The colour to fill it with.
sl@0
  1724
@param	aClipRect	The clipping rect.
sl@0
  1725
*/
sl@0
  1726
void CDirectGdiContext::FillRect(const TRect& aRect, const TRgb& aColor, const TRect& aClipRect)
sl@0
  1727
	{
sl@0
  1728
	TRect fillRect = aRect;
sl@0
  1729
	if (fillRect.Intersects(aClipRect))
sl@0
  1730
		{
sl@0
  1731
		fillRect.Intersection(aClipRect);
sl@0
  1732
		// Override the current settings temporarily
sl@0
  1733
		iEngine->SetBrushColor(aColor);
sl@0
  1734
		iEngine->SetBrushStyle(DirectGdi::ESolidBrush);
sl@0
  1735
		iEngine->SetPenStyle(DirectGdi::ENullPen);	// Fill box, don't outline it
sl@0
  1736
		fillRect.Move(-iOrigin);
sl@0
  1737
		iEngine->DrawRect(fillRect);
sl@0
  1738
		// Put things back
sl@0
  1739
		iEngine->SetPenStyle(iPenStyle);
sl@0
  1740
		iEngine->SetBrushStyle(iBrushStyle);
sl@0
  1741
		iEngine->SetBrushColor(iBrushColor);
sl@0
  1742
		}
sl@0
  1743
	}
sl@0
  1744
sl@0
  1745
sl@0
  1746
/**
sl@0
  1747
Draws text at the last print position and then rotates it into a vertical position.
sl@0
  1748
sl@0
  1749
@param	aText	The text string to be drawn.
sl@0
  1750
@param	aParam	Parameters used in drawing text.
sl@0
  1751
@param	aUp		If ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1752
sl@0
  1753
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1754
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush
sl@0
  1755
		style is neither ENullBrush nor ESolidBrush.
sl@0
  1756
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1757
*/
sl@0
  1758
EXPORT_C void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, TBool aUp)
sl@0
  1759
	{
sl@0
  1760
	GRAPHICS_TRACE("CDirectGdiContext::DrawTextVertical");
sl@0
  1761
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1762
	// This next check covers both bitmap and open fonts
sl@0
  1763
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  1764
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1765
	TRect clipRect2(0, 0, 0, 0);
sl@0
  1766
	TInt baselineOffset = 0;
sl@0
  1767
	TInt margin = 0;
sl@0
  1768
	CalculateClipRect2PlusBaselineOffsetAndMargin(aText, aParam, iLastPrintPosition, aUp, clipRect2, baselineOffset, margin);
sl@0
  1769
	DrawTextVertical(aText, aParam, NULL, &clipRect2, NULL, baselineOffset, -1, aUp, DirectGdi::ELeft, margin); //-1 signifies that text will not be clipped
sl@0
  1770
	}
sl@0
  1771
sl@0
  1772
sl@0
  1773
/**
sl@0
  1774
Draws text vertically from the specified position.
sl@0
  1775
sl@0
  1776
@param	aText		The text string to be drawn.
sl@0
  1777
@param	aParam		Parameters used in drawing text.
sl@0
  1778
@param	aPosition	A point specifying the position of the left end of the text.
sl@0
  1779
@param	aUp			If ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1780
sl@0
  1781
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1782
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush style is neither 
sl@0
  1783
		ENullBrush nor ESolidBrush.
sl@0
  1784
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1785
*/
sl@0
  1786
EXPORT_C void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TPoint& aPosition, TBool aUp)
sl@0
  1787
	{
sl@0
  1788
	GRAPHICS_TRACE("CDirectGdiContext::DrawTextVertical");
sl@0
  1789
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1790
	// This next check covers both bitmap and open fonts
sl@0
  1791
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  1792
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1793
	TRect clipRect2(0, 0, 0, 0);
sl@0
  1794
	TInt baselineOffset = 0;
sl@0
  1795
	TInt margin = 0;
sl@0
  1796
	CalculateClipRect2PlusBaselineOffsetAndMargin(aText, aParam, aPosition, aUp, clipRect2, baselineOffset, margin);
sl@0
  1797
	DrawTextVertical(aText, aParam, NULL, &clipRect2, NULL, baselineOffset, -1, aUp, DirectGdi::ELeft, margin);//-1 signifies that text will not be clipped
sl@0
  1798
	}
sl@0
  1799
sl@0
  1800
sl@0
  1801
/**
sl@0
  1802
Draws text clipped to the specified rectangle and then rotates it into a vertical position.
sl@0
  1803
sl@0
  1804
@param	aText		The text string to be drawn.
sl@0
  1805
@param	aParam		Parameters used in drawing text.
sl@0
  1806
@param	aClipRect	The clipping rectangle.
sl@0
  1807
@param	aUp			ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1808
sl@0
  1809
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1810
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush style is neither ENullBrush 
sl@0
  1811
		nor ESolidBrush.
sl@0
  1812
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1813
*/
sl@0
  1814
EXPORT_C void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect& aClipRect, TBool aUp)
sl@0
  1815
	{
sl@0
  1816
	GRAPHICS_TRACE("CDirectGdiContext::DrawTextVertical");
sl@0
  1817
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);	
sl@0
  1818
	// This next check covers both bitmap and open fonts
sl@0
  1819
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  1820
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1821
	TRect clipRect2(0, 0, 0, 0);
sl@0
  1822
	TInt baselineOffset = 0;
sl@0
  1823
	TInt margin = 0;
sl@0
  1824
	CalculateClipRect2PlusBaselineOffsetAndMargin(aText, aParam, iLastPrintPosition, aUp, clipRect2, baselineOffset, margin);
sl@0
  1825
	DrawTextVertical(aText, aParam, &aClipRect, &clipRect2, NULL, baselineOffset, -1, aUp, DirectGdi::ELeft, margin);
sl@0
  1826
	}
sl@0
  1827
sl@0
  1828
sl@0
  1829
/**
sl@0
  1830
Private internal function for calculating several parameters needed by these routines.
sl@0
  1831
sl@0
  1832
@param	aText		The text string to be drawn.
sl@0
  1833
@param	aParam		Parameters used in drawing text.
sl@0
  1834
@param	aPosition	A point specifying the position of the left end of the text.
sl@0
  1835
@param	aUp			ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1836
@param	aClipRect2		On return, contains clipping rectangle.
sl@0
  1837
@param	aBaselineOffset	On return, contains baseline offset.
sl@0
  1838
@param	aMargin			On return, contains margin.
sl@0
  1839
*/
sl@0
  1840
void CDirectGdiContext::CalculateClipRect2PlusBaselineOffsetAndMargin(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TPoint& aPosition, TBool aUp, TRect& aClipRect2, TInt& aBaselineOffset, TInt& aMargin)
sl@0
  1841
	{
sl@0
  1842
	TOpenFontMetrics metrics;
sl@0
  1843
	iFont.GetFontMetrics(metrics);
sl@0
  1844
	aBaselineOffset = metrics.MaxHeight();
sl@0
  1845
	TInt height = aBaselineOffset + metrics.MaxDepth();
sl@0
  1846
	// The next few lines do much the same as TextWidthInPixels but pass
sl@0
  1847
	// the text in visual order instead of logical order and also take
sl@0
  1848
	// full account of left and right side bearings on the text
sl@0
  1849
	CFont::TMeasureTextOutput output;
sl@0
  1850
	CFont::TMeasureTextInput input;
sl@0
  1851
	input.iFlags = CFont::TMeasureTextInput::EFVisualOrder;
sl@0
  1852
	if (aParam)
sl@0
  1853
		{
sl@0
  1854
		GRAPHICS_ASSERT_ALWAYS(aParam->iStart < aParam->iEnd ,EDirectGdiPanicBadParameter);
sl@0
  1855
		input.iStartInputChar = aParam->iStart;
sl@0
  1856
		input.iEndInputChar = Min(aText.Length(),aParam->iEnd);
sl@0
  1857
		}
sl@0
  1858
	TInt advance = iFont.MeasureText(aText, &input, &output);
sl@0
  1859
	TInt leftBearing = output.iBounds.iTl.iX;
sl@0
  1860
	TInt rightBearing = advance - output.iBounds.iBr.iX;
sl@0
  1861
	aMargin = 0;
sl@0
  1862
	if (aUp)
sl@0
  1863
		{
sl@0
  1864
		aClipRect2.iTl.iX = aPosition.iX - aBaselineOffset;
sl@0
  1865
		aClipRect2.iTl.iY = aPosition.iY - advance;
sl@0
  1866
		aClipRect2.iBr.iX = aPosition.iX + height - aBaselineOffset + 1;
sl@0
  1867
		aClipRect2.iBr.iY = aPosition.iY;
sl@0
  1868
		if (leftBearing < 0)
sl@0
  1869
			{
sl@0
  1870
			aClipRect2.iBr.iY -= leftBearing;
sl@0
  1871
			aMargin = -leftBearing;
sl@0
  1872
			}
sl@0
  1873
		if (rightBearing < 0)
sl@0
  1874
			{
sl@0
  1875
			aClipRect2.iTl.iY += rightBearing;
sl@0
  1876
			}
sl@0
  1877
		}
sl@0
  1878
	else
sl@0
  1879
		{
sl@0
  1880
		aClipRect2.iTl.iX = aPosition.iX + aBaselineOffset- height;
sl@0
  1881
		aClipRect2.iTl.iY = aPosition.iY;
sl@0
  1882
		aClipRect2.iBr.iX = aPosition.iX + aBaselineOffset + 1;
sl@0
  1883
		aClipRect2.iBr.iY = aPosition.iY + advance;
sl@0
  1884
		if (leftBearing < 0)
sl@0
  1885
			{
sl@0
  1886
			aClipRect2.iTl.iY += leftBearing;
sl@0
  1887
			aMargin = -leftBearing;
sl@0
  1888
			}
sl@0
  1889
		if (rightBearing < 0)
sl@0
  1890
			{
sl@0
  1891
			aClipRect2.iBr.iY -= rightBearing;
sl@0
  1892
			}
sl@0
  1893
		}
sl@0
  1894
	}
sl@0
  1895
sl@0
  1896
sl@0
  1897
/**
sl@0
  1898
Draws text vertically, clipped to a specified rectangle, using a baseline offset, alignment and margin.
sl@0
  1899
sl@0
  1900
@param	aText			The text string to be drawn.
sl@0
  1901
@param	aParam			Parameters used in drawing text.
sl@0
  1902
@param	aClipFillRect	The clipping rectangle (this rect will also be filled before text is plotted).
sl@0
  1903
@param	aBaselineOffset	Number of pixels to offset the baseline by.
sl@0
  1904
@param	aUp				ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1905
@param	aVert			Vertical alignment of the text relative to the specified rectangle.
sl@0
  1906
@param	aMargin			Offset of the text from the position within the rectangle, using the specified alignment.
sl@0
  1907
sl@0
  1908
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1909
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush style is neither ENullBrush 
sl@0
  1910
		nor ESolidBrush.
sl@0
  1911
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1912
*/
sl@0
  1913
EXPORT_C void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset,
sl@0
  1914
												  TBool aUp, DirectGdi::TTextAlign aVert, TInt aMargin)
sl@0
  1915
	{
sl@0
  1916
	GRAPHICS_TRACE("CDirectGdiContext::DrawTextVertical");
sl@0
  1917
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1918
	// This next check covers both bitmap and open fonts
sl@0
  1919
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  1920
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1921
	DrawTextVertical(aText, aParam, NULL, &aClipFillRect, &aClipFillRect, aBaselineOffset, -1, aUp, aVert, aMargin);
sl@0
  1922
	}
sl@0
  1923
sl@0
  1924
sl@0
  1925
/**
sl@0
  1926
Draws text vertically, clipped to a specified rectangle, using a baseline offset, alignment and margin.
sl@0
  1927
sl@0
  1928
@param	aText			The text string to be drawn.
sl@0
  1929
@param	aParam			Parameters used in drawing text.
sl@0
  1930
@param	aClipFillRect	The clipping rectangle (this rect will also be filled before text is plotted).
sl@0
  1931
@param	aBaselineOffset	Number of pixels to offset the baseline by.
sl@0
  1932
@param	aTextWidth		Number of pixels to clip the text to.
sl@0
  1933
@param	aUp				ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1934
@param	aVert			Vertical alignment of the text relative to the specified rectangle.
sl@0
  1935
@param	aMargin			Offset of the text from the position within the rectangle, using the specified alignment.
sl@0
  1936
sl@0
  1937
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  1938
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush style is neither ENullBrush 
sl@0
  1939
		nor ESolidBrush.
sl@0
  1940
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1941
*/
sl@0
  1942
EXPORT_C void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect& aClipFillRect, TInt aBaselineOffset,
sl@0
  1943
												  TInt aTextWidth, TBool aUp, DirectGdi::TTextAlign aVert, TInt aMargin)
sl@0
  1944
	{
sl@0
  1945
	GRAPHICS_TRACE("CDirectGdiContext::DrawTextVertical");
sl@0
  1946
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  1947
	// This next check covers both bitmap and open fonts
sl@0
  1948
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  1949
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  1950
	DrawTextVertical(aText, aParam, NULL, &aClipFillRect, &aClipFillRect, aBaselineOffset, aTextWidth, aUp, aVert, aMargin);
sl@0
  1951
	}
sl@0
  1952
sl@0
  1953
sl@0
  1954
/**
sl@0
  1955
The private general DrawTextVertical() routine that implements all the others.
sl@0
  1956
Two clipping rectangles received from different routines. The final rectangle will be calculated as intersection 
sl@0
  1957
of first and second clipping rectangle. If aClipRect2 is empty, the error state is set to KErrArgument.
sl@0
  1958
sl@0
  1959
@param	aText			The text string to be drawn.
sl@0
  1960
@param	aParam			Parameters used in drawing text.
sl@0
  1961
@param	aClipRect1		Pointer to first clipping rectangle.
sl@0
  1962
@param	aClipRect2		Pointer to second clipping rectangle. 
sl@0
  1963
@param	aFillRect		Pointer to rectangle to be filled before text plotting.
sl@0
  1964
@param	aBaselineOffset	Number of pixels to offset the baseline by.
sl@0
  1965
@param	aTextWidth		Number of pixels to clip the text to. If negative, the text will not be clipped
sl@0
  1966
@param	aUp				ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  1967
@param	aVert			Vertical alignment of the text relative to the specified rectangle.
sl@0
  1968
@param	aMargin			Offset of the text from the position within the rectangle, using the specified alignment.
sl@0
  1969
sl@0
  1970
@panic	DGDI 10, if the active font is an outline and/or shadow font and the brush style is neither ENullBrush 
sl@0
  1971
		nor ESolidBrush.
sl@0
  1972
@panic	DGDI 11, if a font has not been set prior to calling DrawText().
sl@0
  1973
@panic  DGDI 22, if aClipRect2 is NULL.
sl@0
  1974
*/
sl@0
  1975
void CDirectGdiContext::DrawTextVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, const TRect* aClipRect1, const TRect* aClipRect2, const TRect* aFillRect,
sl@0
  1976
		TInt aBaselineOffset, TInt aTextWidth, TBool aUp, DirectGdi::TTextAlign aVert, TInt aMargin)
sl@0
  1977
	{
sl@0
  1978
	GRAPHICS_ASSERT_ALWAYS(aClipRect2, EDirectGdiPanicBadParameter);
sl@0
  1979
sl@0
  1980
	TRect clipRect2 = *aClipRect2;
sl@0
  1981
	clipRect2.Move(iOrigin);
sl@0
  1982
sl@0
  1983
	TRect clipRect(clipRect2);
sl@0
  1984
	if (aClipRect1 != NULL)
sl@0
  1985
		{
sl@0
  1986
		if(aClipRect1->IsEmpty())
sl@0
  1987
			{
sl@0
  1988
			iDriver.SetError(KErrArgument);
sl@0
  1989
			return;
sl@0
  1990
			}
sl@0
  1991
		TRect clipRect1 = *aClipRect1;
sl@0
  1992
		clipRect1.Move(iOrigin);
sl@0
  1993
		clipRect.Intersection(clipRect1);
sl@0
  1994
		}
sl@0
  1995
	
sl@0
  1996
	if ((aFillRect != NULL) && (iBrushStyle != ENullBrush))
sl@0
  1997
		{
sl@0
  1998
		// fill the box if necessary
sl@0
  1999
		TRect fillBox = *aFillRect;
sl@0
  2000
		fillBox.Move(iOrigin);
sl@0
  2001
		if (fillBox.Intersects(clipRect))
sl@0
  2002
			{
sl@0
  2003
			fillBox.Intersection(clipRect);
sl@0
  2004
			iEngine->SetPenStyle(DirectGdi::ENullPen);	// Fill box, don't outline it
sl@0
  2005
			iEngine->DrawRect(*aFillRect);
sl@0
  2006
			iEngine->SetPenStyle(iPenStyle);		// Put the pen style back
sl@0
  2007
			}
sl@0
  2008
		}
sl@0
  2009
	if (!aText.Length())
sl@0
  2010
		{		
sl@0
  2011
		return;
sl@0
  2012
		}
sl@0
  2013
	if (aClipRect2->IsEmpty())
sl@0
  2014
		{
sl@0
  2015
		iDriver.SetError(KErrArgument);
sl@0
  2016
		return;
sl@0
  2017
		}
sl@0
  2018
	
sl@0
  2019
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  2020
	GRAPHICS_ASSERT_ALWAYS(bitmapFont != 0, EDirectGdiPanicNoFontSelected);
sl@0
  2021
sl@0
  2022
	CFont::TMeasureTextInput input;
sl@0
  2023
	//CFont::TMeasureTextOutput
sl@0
  2024
	if (aParam)
sl@0
  2025
		{
sl@0
  2026
		GRAPHICS_ASSERT_ALWAYS(aParam->iStart < aParam->iEnd ,EDirectGdiPanicBadParameter);
sl@0
  2027
		input.iStartInputChar = aParam->iStart;
sl@0
  2028
		input.iEndInputChar = Min(aText.Length(),aParam->iEnd);
sl@0
  2029
		}
sl@0
  2030
	TInt width = iFont.MeasureText(aText,&input);
sl@0
  2031
	TOpenFontMetrics metrics;
sl@0
  2032
	iFont.GetFontMetrics(metrics);
sl@0
  2033
	
sl@0
  2034
	if (aTextWidth < 0)
sl@0
  2035
		{
sl@0
  2036
		aTextWidth = width;
sl@0
  2037
		}
sl@0
  2038
	TPoint coords;
sl@0
  2039
	coords.iX = clipRect2.iTl.iX;
sl@0
  2040
	TInt directionalMultiplier = aUp ? -1 : 1;
sl@0
  2041
	coords.iY = aUp ? clipRect2.iBr.iY - 1 : clipRect2.iTl.iY;
sl@0
  2042
	//
sl@0
  2043
	// iX calculation, for example: ascent(a)=18 descent(d)=2 size=boxwidth=fontheight(h)=20 baseline=ascent
sl@0
  2044
	// pre: iX = 0
sl@0
  2045
	//
sl@0
  2046
	// hhhhhhhhhhhhhhhhhhhh
sl@0
  2047
	// 01234567890123456789
sl@0
  2048
	// aaaaaaaaaaaaaaaaaadd	aUp=ETrue
sl@0
  2049
	//                   ^
sl@0
  2050
	//                   iX = 18 (baseline)
sl@0
  2051
	//
sl@0
  2052
	// ddaaaaaaaaaaaaaaaaaa aUp=EFalse
sl@0
  2053
	//  ^
sl@0
  2054
	//  iX = 1 (instead of 2 ie 20-18-1 which is boxwidth-baseline-1)
sl@0
  2055
	//
sl@0
  2056
	coords.iX += aUp ? aBaselineOffset : clipRect2.Width() - aBaselineOffset - 1;
sl@0
  2057
	switch (aVert)
sl@0
  2058
		{
sl@0
  2059
	case DirectGdi::ELeft:
sl@0
  2060
		coords.iY += aMargin * directionalMultiplier;
sl@0
  2061
		break;
sl@0
  2062
	case DirectGdi::ECenter:
sl@0
  2063
		coords.iY += (((clipRect2.iBr.iY - clipRect2.iTl.iY - aTextWidth) >> 1) + aMargin) * directionalMultiplier;
sl@0
  2064
		break;
sl@0
  2065
	case DirectGdi::ERight:
sl@0
  2066
		coords.iY += (clipRect2.iBr.iY - clipRect2.iTl.iY - aTextWidth - aMargin) * directionalMultiplier;
sl@0
  2067
		break;
sl@0
  2068
	default:
sl@0
  2069
		iDriver.SetError(KErrArgument);
sl@0
  2070
		return;
sl@0
  2071
		}
sl@0
  2072
	iLastPrintPosition = coords;
sl@0
  2073
	coords.iX += bitmapFont->iAlgStyle.iBaselineOffsetInPixels * directionalMultiplier;
sl@0
  2074
	TInt prewidth = width + iCharJustExcess + iWordJustExcess;
sl@0
  2075
	iLastPrintPosition.iY -= aUp ? prewidth - 1 : -prewidth;
sl@0
  2076
	if (clipRect.IsEmpty() || !width)
sl@0
  2077
		{
sl@0
  2078
		if (iAutoUpdateJustification)
sl@0
  2079
			{
sl@0
  2080
			UpdateJustificationVertical(aText, aParam, aUp);
sl@0
  2081
			}
sl@0
  2082
		return;
sl@0
  2083
		}
sl@0
  2084
sl@0
  2085
	/*
sl@0
  2086
	Set up the parameter block for character positioning.
sl@0
  2087
	Draw left to right, because although the text is being drawn vertically,
sl@0
  2088
	it is done by rotating the baseline 90 degrees and drawing in the ordinary way, not by drawing
sl@0
  2089
	the characters in their normal orientation but in a vertical column.
sl@0
  2090
	*/
sl@0
  2091
	CFont::TPositionParam param;
sl@0
  2092
	param.iText.Set(aText);
sl@0
  2093
	param.iPen = coords;
sl@0
  2094
	TInt endDraw = aText.Length();
sl@0
  2095
	if (aParam)
sl@0
  2096
		{
sl@0
  2097
		param.iPosInText = aParam->iStart;
sl@0
  2098
		endDraw = Min(aText.Length(),aParam->iEnd);
sl@0
  2099
		}
sl@0
  2100
	else
sl@0
  2101
		{
sl@0
  2102
		param.iPosInText = 0;
sl@0
  2103
		}
sl@0
  2104
sl@0
  2105
	// Draw the text.
sl@0
  2106
	DoDrawTextVertical(param, aUp, endDraw, clipRect);
sl@0
  2107
	if(iAutoUpdateJustification)
sl@0
  2108
		{
sl@0
  2109
		UpdateJustificationVertical(aText, aParam, aUp);
sl@0
  2110
		}
sl@0
  2111
	}
sl@0
  2112
sl@0
  2113
sl@0
  2114
/**
sl@0
  2115
Draws vertical text within the clipping area
sl@0
  2116
sl@0
  2117
@param	aParam		Defines glyph code, ligature creation and diacritic placement 
sl@0
  2118
@param	aUp			ETrue, text is rotated 90 degrees anti-clockwise; EFalse, text is rotated 90 degrees clockwise.
sl@0
  2119
@param	aEnd		The end position within the text descriptor to draw.
sl@0
  2120
@param	aClipRect	The clipping rectangle.
sl@0
  2121
sl@0
  2122
@pre iFont is a valid CFont.
sl@0
  2123
sl@0
  2124
@panic	DGDI 13, if the active font is an outline and/or shadow font and the brush style is neither ENullBrush 
sl@0
  2125
		nor ESolidBrush.
sl@0
  2126
*/
sl@0
  2127
void CDirectGdiContext::DoDrawTextVertical(CFont::TPositionParam& aParam, TBool aUp, const TInt aEnd, TRect& aClipRect)
sl@0
  2128
	{
sl@0
  2129
	const CBitmapFont* bitmapFont = iFont.Address();
sl@0
  2130
	if ((bitmapFont->GlyphBitmapType() == EFourColourBlendGlyphBitmap) && !((iBrushStyle == DirectGdi::ENullBrush) || (iBrushStyle == DirectGdi::ESolidBrush)))
sl@0
  2131
		{
sl@0
  2132
		//For future compatibility it is better if brush style of ENullBrush or ESolidBrush is used 
sl@0
  2133
		//when drawing outline and shadow fonts.
sl@0
  2134
		GRAPHICS_PANIC_ALWAYS(EDirectGdiPanicInvalidBrushStyle);
sl@0
  2135
		}
sl@0
  2136
sl@0
  2137
	TPoint startPen = aParam.iPen;
sl@0
  2138
	TInt charClipping = aClipRect.iTl.iY;
sl@0
  2139
	TInt underlineTop = 0;
sl@0
  2140
	TInt underlineBottom = 0;
sl@0
  2141
sl@0
  2142
	//for linked fonts need an adjustment to the underline postion
sl@0
  2143
	TInt underlineStrikeoutOffset = BaselineCorrection();
sl@0
  2144
sl@0
  2145
	if (iUnderline == DirectGdi::EUnderlineOn)
sl@0
  2146
		{
sl@0
  2147
		GetUnderlineMetrics(underlineTop, underlineBottom);
sl@0
  2148
		underlineTop+=underlineStrikeoutOffset;
sl@0
  2149
		underlineBottom+=underlineStrikeoutOffset;
sl@0
  2150
		}
sl@0
  2151
	TInt strikeTop = 0;
sl@0
  2152
	TInt strikeBottom = 0;
sl@0
  2153
	if (iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  2154
		{
sl@0
  2155
		GetStrikethroughMetrics(strikeTop, strikeBottom);
sl@0
  2156
		strikeTop+=underlineStrikeoutOffset;
sl@0
  2157
		strikeBottom+=underlineStrikeoutOffset;
sl@0
  2158
		}
sl@0
  2159
sl@0
  2160
	const DirectGdi::TGraphicsRotation rotation = aUp ? DirectGdi::EGraphicsRotation270 : DirectGdi::EGraphicsRotation90;
sl@0
  2161
	iEngine->BeginDrawGlyph();
sl@0
  2162
	RShapeInfo shapeInfo;
sl@0
  2163
	while (aParam.iPosInText < aEnd)
sl@0
  2164
		{
sl@0
  2165
		TPoint startPen2 = aParam.iPen;
sl@0
  2166
		if (!iFont.GetCharacterPosition2(aParam, shapeInfo))
sl@0
  2167
			{
sl@0
  2168
			continue;
sl@0
  2169
			}
sl@0
  2170
		Rotate(aParam.iPen, startPen2, aUp);
sl@0
  2171
		TInt adjustment = 0;
sl@0
  2172
		if(iCharJustExcess && (iCharJustNum > 0)) // character clipping/justification
sl@0
  2173
			{
sl@0
  2174
			adjustment = CGraphicsContext::JustificationInPixels(iCharJustExcess, iCharJustNum);
sl@0
  2175
			if (adjustment < 0)
sl@0
  2176
				{
sl@0
  2177
				aClipRect.iTl.iY = aParam.iPen.iY + (aUp ? -adjustment : adjustment);
sl@0
  2178
				}
sl@0
  2179
			}
sl@0
  2180
sl@0
  2181
		CFont::TPositionParam::TOutput* output = aParam.iOutput;
sl@0
  2182
		for (TInt i = 0; i < aParam.iOutputGlyphs; i++, output++)
sl@0
  2183
			{
sl@0
  2184
			Rotate(output->iBounds.iTl, startPen2, aUp);
sl@0
  2185
sl@0
  2186
			//get the character metrics for the glyph type
sl@0
  2187
			TOpenFontCharMetrics characterParams;
sl@0
  2188
			const TUint8* bitmap;
sl@0
  2189
			TSize size;
sl@0
  2190
			//note may now be using a glyph code, and not a character
sl@0
  2191
			iFont.GetCharacterData(aParam.iOutput[i].iCode,characterParams,bitmap,size);
sl@0
  2192
			TGlyphBitmapType glyphType = characterParams.GlyphType();
sl@0
  2193
			
sl@0
  2194
			switch (glyphType)
sl@0
  2195
				{
sl@0
  2196
				case EAntiAliasedGlyphBitmap:
sl@0
  2197
				case EFourColourBlendGlyphBitmap:
sl@0
  2198
				case EDefaultGlyphBitmap:
sl@0
  2199
					iEngine->DrawGlyph(output->iBounds.iTl, output->iCode, output->iBitmap, glyphType, output->iBitmapSize, aClipRect, rotation);
sl@0
  2200
					break;
sl@0
  2201
sl@0
  2202
				default:
sl@0
  2203
					//if the outline or shadow is not specified for the character, then use the font setting
sl@0
  2204
					iEngine->DrawGlyph(output->iBounds.iTl, output->iCode, output->iBitmap, bitmapFont->GlyphBitmapType(), output->iBitmapSize, aClipRect, rotation);	 
sl@0
  2205
					break;
sl@0
  2206
				}			
sl@0
  2207
			}
sl@0
  2208
sl@0
  2209
		aClipRect.iTl.iY = charClipping;
sl@0
  2210
		if (adjustment)
sl@0
  2211
			{
sl@0
  2212
			aParam.iPen.iY += aUp ? -adjustment : adjustment;
sl@0
  2213
			}
sl@0
  2214
		if ((iWordJustExcess > 0) && (iWordJustNum > 0) && (aParam.iOutput[0].iCode == 0x0020)) // word justification
sl@0
  2215
			{
sl@0
  2216
			adjustment = CGraphicsContext::JustificationInPixels(iWordJustExcess, iWordJustNum);
sl@0
  2217
			aParam.iPen.iY += aUp ? -adjustment : adjustment;
sl@0
  2218
			}
sl@0
  2219
		}
sl@0
  2220
	iEngine->EndDrawGlyph();
sl@0
  2221
	if (shapeInfo.IsOpen())
sl@0
  2222
		{
sl@0
  2223
		shapeInfo.Close();
sl@0
  2224
		}
sl@0
  2225
sl@0
  2226
	if (iUnderline == DirectGdi::EUnderlineOn)
sl@0
  2227
		{
sl@0
  2228
		TRect underlineRect; // underline
sl@0
  2229
		if (aUp)
sl@0
  2230
			{
sl@0
  2231
			underlineRect.SetRect(startPen.iX + underlineTop, aParam.iPen.iY, startPen.iX + underlineBottom, startPen.iY + 1);
sl@0
  2232
			underlineRect.iTl.iY = underlineRect.iBr.iY - underlineRect.Height();
sl@0
  2233
			}
sl@0
  2234
		else
sl@0
  2235
			{
sl@0
  2236
			underlineRect.SetRect(startPen.iX - underlineBottom, startPen.iY, startPen.iX - underlineTop, aParam.iPen.iY);
sl@0
  2237
			underlineRect.iBr.iY = underlineRect.iTl.iY + underlineRect.Height();
sl@0
  2238
			underlineRect.iTl.iX++; // adjust for rect not including last line
sl@0
  2239
			underlineRect.iBr.iX++;
sl@0
  2240
			}
sl@0
  2241
		FillRect(underlineRect, iPenColor, aClipRect);
sl@0
  2242
		}
sl@0
  2243
sl@0
  2244
	if (iStrikethrough == DirectGdi::EStrikethroughOn)
sl@0
  2245
		{
sl@0
  2246
		TRect strikethroughRect; // strikethrough
sl@0
  2247
		if (aUp)
sl@0
  2248
			{
sl@0
  2249
			strikethroughRect.SetRect(startPen.iX + strikeTop, aParam.iPen.iY, startPen.iX + strikeBottom, startPen.iY + 1);
sl@0
  2250
			strikethroughRect.iTl.iY = strikethroughRect.iBr.iY - strikethroughRect.Height();
sl@0
  2251
			}
sl@0
  2252
		else
sl@0
  2253
			{
sl@0
  2254
			strikethroughRect.SetRect(startPen.iX - strikeBottom, startPen.iY, startPen.iX - strikeTop, aParam.iPen.iY);
sl@0
  2255
			strikethroughRect.iBr.iY = strikethroughRect.iTl.iY + strikethroughRect.Height();
sl@0
  2256
			strikethroughRect.iTl.iX++;
sl@0
  2257
			strikethroughRect.iBr.iX++;
sl@0
  2258
			}
sl@0
  2259
		FillRect(strikethroughRect, iPenColor, aClipRect);
sl@0
  2260
		}
sl@0
  2261
	}
sl@0
  2262
sl@0
  2263
sl@0
  2264
/**
sl@0
  2265
Transform a vector, defined by a point relative to an origin, from left-to-right to up or down.
sl@0
  2266
sl@0
  2267
@param aPoint A point relative to the origin aOrigin.
sl@0
  2268
@param aOrigin The origin to use when transforming the point aPoint.
sl@0
  2269
@param aUp If ETrue, then transform the point from left-right to up, otherwise transform from 
sl@0
  2270
left-right to down.
sl@0
  2271
*/
sl@0
  2272
void CDirectGdiContext::Rotate(TPoint& aPoint, const TPoint& aOrigin, TBool aUp)
sl@0
  2273
	{
sl@0
  2274
	TInt dx = aPoint.iX - aOrigin.iX;
sl@0
  2275
	TInt dy = aPoint.iY - aOrigin.iY;
sl@0
  2276
	if (aUp)
sl@0
  2277
		{
sl@0
  2278
		aPoint.iX = aOrigin.iX + dy;
sl@0
  2279
		aPoint.iY = aOrigin.iY - dx;
sl@0
  2280
		}
sl@0
  2281
	else
sl@0
  2282
		{
sl@0
  2283
		aPoint.iX = aOrigin.iX - dy;
sl@0
  2284
		aPoint.iY = aOrigin.iY + dx;
sl@0
  2285
		}
sl@0
  2286
	}
sl@0
  2287
sl@0
  2288
sl@0
  2289
/**
sl@0
  2290
Can be used to find out the top and bottom of an underline for the active font.
sl@0
  2291
This allows correct calculation of the area required in which to draw text with underline.
sl@0
  2292
sl@0
  2293
@param	aTop The top of the underline position.
sl@0
  2294
@param	aBottom The bottom of the underline position.
sl@0
  2295
*/
sl@0
  2296
void CDirectGdiContext::GetUnderlineMetrics(TInt& aTop, TInt& aBottom)
sl@0
  2297
	{
sl@0
  2298
	const TInt width = Max((iFont.HeightInPixels() / 10), 1);
sl@0
  2299
	aTop = 1 + (width >> 1);
sl@0
  2300
	aBottom = aTop + width;
sl@0
  2301
	}
sl@0
  2302
sl@0
  2303
sl@0
  2304
/**
sl@0
  2305
Get the top and bottom of a strikethrough line for the current font, relative to the baseline.
sl@0
  2306
sl@0
  2307
@param	aTop The top of the strikethrough position.
sl@0
  2308
@param	aBottom The bottom of the strikethrough position.
sl@0
  2309
*/
sl@0
  2310
void CDirectGdiContext::GetStrikethroughMetrics(TInt& aTop, TInt& aBottom)
sl@0
  2311
	{
sl@0
  2312
	aTop = -(iFont.AscentInPixels() * 5/12) - 1;
sl@0
  2313
	aBottom = aTop + Max((iFont.HeightInPixels() / 10), 1);
sl@0
  2314
	}
sl@0
  2315
sl@0
  2316
sl@0
  2317
/**
sl@0
  2318
Moves the internal drawing position relative to the co-ordinate origin, without drawing a line.
sl@0
  2319
A subsequent call to DrawLineTo() or DrawLineBy() will then use the new internal drawing position
sl@0
  2320
as the start point for the line drawn. 
sl@0
  2321
sl@0
  2322
The operations DrawLine(), DrawLineTo(), DrawLineBy() and DrawPolyline() also change the internal drawing 
sl@0
  2323
position to the last point of the drawn line(s). The internal drawing position is set to the co-ordinate
sl@0
  2324
origin if no drawing or moving operations have yet taken place.
sl@0
  2325
sl@0
  2326
@see	CDirectGdiContext::MoveBy(const TPoint&)
sl@0
  2327
sl@0
  2328
@param	aPoint The point to move the internal drawing position to.
sl@0
  2329
sl@0
  2330
@pre	The rendering target has been activated.
sl@0
  2331
@post	Request to move the internal drawing position to the specified point has been accepted. 
sl@0
  2332
		There is no guarantee that the request has been processed when the method returns.
sl@0
  2333
sl@0
  2334
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
  2335
*/
sl@0
  2336
EXPORT_C void CDirectGdiContext::MoveTo(const TPoint& aPoint)
sl@0
  2337
	{
sl@0
  2338
	GRAPHICS_TRACE2("CDirectGdiContext::MoveTo(%d,%d)", aPoint.iX, aPoint.iY);
sl@0
  2339
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  2340
	iEngine->MoveTo(aPoint);
sl@0
  2341
	}
sl@0
  2342
sl@0
  2343
sl@0
  2344
/**
sl@0
  2345
Moves the internal drawing position by a vector, relative to the current position, without drawing a line.
sl@0
  2346
A subsequent call to DrawLineTo() or DrawLineBy() will then use the new internal drawing position
sl@0
  2347
as the start point for the line drawn.
sl@0
  2348
sl@0
  2349
The operations DrawLine(), DrawLineTo(), DrawLineBy() and DrawPolyline() also change the internal drawing 
sl@0
  2350
position to the last point of the drawn line(s). The internal drawing position is set to the co-ordinate
sl@0
  2351
origin if no drawing or moving operations have yet taken place.
sl@0
  2352
sl@0
  2353
@see	CDirectGdiContext::MoveTo(const TPoint&)
sl@0
  2354
sl@0
  2355
@param	aVector	The vector to move the internal position by.
sl@0
  2356
sl@0
  2357
@pre	The rendering target has been activated.
sl@0
  2358
@post	Request to move the internal drawing position by a vector has been accepted.
sl@0
  2359
		There is no guarantee that the request has been processed when the method returns.
sl@0
  2360
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  2361
*/
sl@0
  2362
EXPORT_C void CDirectGdiContext::MoveBy(const TPoint& aVector)
sl@0
  2363
	{
sl@0
  2364
	GRAPHICS_TRACE2("CDirectGdiContext::MoveBy(%d,%d)", aVector.iX, aVector.iY);
sl@0
  2365
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  2366
	if (aVector != TPoint(0,0))
sl@0
  2367
		{
sl@0
  2368
		iEngine->MoveBy(aVector);
sl@0
  2369
		}
sl@0
  2370
	}
sl@0
  2371
sl@0
  2372
sl@0
  2373
/**
sl@0
  2374
Draws a point at given location using current pen colour and size. 
sl@0
  2375
If the pen size is greater than 1x1 pixel, a filled circle/ellipse with current pen 
sl@0
  2376
colour should be drawn with the given position as the centre.
sl@0
  2377
sl@0
  2378
@param	aPoint The position to plot.
sl@0
  2379
sl@0
  2380
@pre	The rendering target has been activated.
sl@0
  2381
@post	Request to draw a point or filled circle/ellipse has been accepted.
sl@0
  2382
		There is no guarantee that the request has been processed when the method returns.
sl@0
  2383
sl@0
  2384
@panic 	DGDI 7, if the rendering context has not been activated.
sl@0
  2385
sl@0
  2386
@see	CDirectGdiContext::SetPenSize(const TSize&)
sl@0
  2387
@see	CDirectGdiContext::SetPenColor(TRgb)
sl@0
  2388
@see	CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode)
sl@0
  2389
*/
sl@0
  2390
EXPORT_C void CDirectGdiContext::Plot(const TPoint& aPoint)
sl@0
  2391
	{
sl@0
  2392
	GRAPHICS_TRACE2("CDirectGdiContext::Plot(%d,%d)", aPoint.iX, aPoint.iY);
sl@0
  2393
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  2394
	if (iPenStyle == DirectGdi::ENullPen || iPenSize.iWidth == 0 || iPenSize.iHeight == 0)
sl@0
  2395
		{
sl@0
  2396
		return;
sl@0
  2397
		}	
sl@0
  2398
	iEngine->Plot(aPoint);
sl@0
  2399
	}
sl@0
  2400
sl@0
  2401
sl@0
  2402
/**
sl@0
  2403
Resets drawing state to its default settings. This operation does not unbind the current target. 
sl@0
  2404
@pre	None.
sl@0
  2405
@post	The drawing state is reset to default values. Subsequent drawing will use the default settings until they are changed to different values.
sl@0
  2406
*/
sl@0
  2407
EXPORT_C void CDirectGdiContext::Reset()
sl@0
  2408
	{
sl@0
  2409
	GRAPHICS_TRACE("CDirectGdiContext::Reset");
sl@0
  2410
	iEngine->Reset();
sl@0
  2411
sl@0
  2412
	// Explicit calls are made to the engine to apply the defaults. 
sl@0
  2413
	// Set() methods should generally not be used as they perform unnecessary checks, and may also 
sl@0
  2414
	// block the call to the engine if the value being set is the same as the constructor's default.	
sl@0
  2415
	// Clipping regions.
sl@0
  2416
	iClippingRegion.Clear();
sl@0
  2417
	iEngine->ResetClippingRegion();
sl@0
  2418
	// Origin.
sl@0
  2419
	iOrigin.SetXY(0,0);
sl@0
  2420
	iEngine->SetOrigin(iOrigin);
sl@0
  2421
	// Font.
sl@0
  2422
	iEngine->ResetFont();
sl@0
  2423
	iFont.Reset();
sl@0
  2424
	// Text.
sl@0
  2425
	iLastPrintPosition.SetXY(0,0);
sl@0
  2426
	iAutoUpdateJustification = ETrue;
sl@0
  2427
	SetCharJustification(0, 0);
sl@0
  2428
	SetWordJustification(0, 0);
sl@0
  2429
	SetStrikethroughStyle(DirectGdi::EStrikethroughOff);
sl@0
  2430
	SetUnderlineStyle(DirectGdi::EUnderlineOff);
sl@0
  2431
	// Pen colour.
sl@0
  2432
	iPenColor = KRgbBlack;
sl@0
  2433
	iEngine->SetPenColor(iPenColor);
sl@0
  2434
	// Pen size.
sl@0
  2435
	iPenSize = TSize(1,1);
sl@0
  2436
	iEngine->SetPenSize(iPenSize);
sl@0
  2437
	// Pen style.
sl@0
  2438
	iPenStyle = DirectGdi::ESolidPen;
sl@0
  2439
	iEngine->SetPenStyle(iPenStyle);
sl@0
  2440
	// Draw mode.
sl@0
  2441
	iDrawMode = DirectGdi::EDrawModePEN;
sl@0
  2442
	iEngine->SetDrawMode(iDrawMode);
sl@0
  2443
	// Text shadow colour.
sl@0
  2444
	iTextShadowColor = KRgbGray;
sl@0
  2445
	iEngine->SetTextShadowColor(iTextShadowColor);
sl@0
  2446
	// Brush colour.
sl@0
  2447
	iBrushColor = KRgbWhite;
sl@0
  2448
	iEngine->SetBrushColor(iBrushColor);
sl@0
  2449
	// Brush style.
sl@0
  2450
	iBrushStyle = DirectGdi::ENullBrush;
sl@0
  2451
	iEngine->SetBrushStyle(iBrushStyle);
sl@0
  2452
	// Brush pattern.
sl@0
  2453
	CleanUpBrushPattern();
sl@0
  2454
	iEngine->ResetBrushPattern();
sl@0
  2455
	iBrushPatternUsed = EFalse;
sl@0
  2456
	// Brush origin.
sl@0
  2457
	iBrushOrigin.SetXY(0,0);
sl@0
  2458
	iEngine->SetBrushOrigin(iBrushOrigin);
sl@0
  2459
	// Internal drawing position.
sl@0
  2460
	iEngine->MoveTo(TPoint(0,0));
sl@0
  2461
	}
sl@0
  2462
sl@0
  2463
sl@0
  2464
/**
sl@0
  2465
Sets the colour for clearing, filling the area of shapes and the background of text boxes.
sl@0
  2466
sl@0
  2467
The default brush colour is white. However, the default brush style is ENullBrush, so when drawing 
sl@0
  2468
to a target the default appears to be the target's background colour.
sl@0
  2469
sl@0
  2470
@see	CDirectGdiContext::Clear()
sl@0
  2471
@see	CDirectGdiContext::Clear(const TRect&)
sl@0
  2472
@see	CDirectGdiContext::DrawRect()
sl@0
  2473
@see	CDirectGdiContext::DrawRoundRect()
sl@0
  2474
@see	CDirectGdiContext::DrawPolygon()
sl@0
  2475
@see	CDirectGdiContext::DrawPie()
sl@0
  2476
sl@0
  2477
@param	aColor Brush colour.
sl@0
  2478
sl@0
  2479
@pre	None.
sl@0
  2480
@post	The new brush colour will be used on subsequent drawing operations if a brush style making 
sl@0
  2481
		use of the brush colour is used. The new brush colour remains in effect until another SetBrushColor() 
sl@0
  2482
		with a different parameter is called.
sl@0
  2483
*/
sl@0
  2484
EXPORT_C void CDirectGdiContext::SetBrushColor(const TRgb& aColor)
sl@0
  2485
	{
sl@0
  2486
	GRAPHICS_TRACE1("CDirectGdiContext::SetBrushColor(%d)", aColor.Internal());
sl@0
  2487
	if (aColor != iBrushColor)
sl@0
  2488
		{	
sl@0
  2489
		iBrushColor = aColor;
sl@0
  2490
		iEngine->SetBrushColor(iBrushColor);
sl@0
  2491
		}
sl@0
  2492
	}
sl@0
  2493
sl@0
  2494
sl@0
  2495
/**
sl@0
  2496
Sets the brush pattern origin which specifies the start of a pattern tile. 
sl@0
  2497
Shapes can be considered as a view port into a continuous pattern tile covering the entire 
sl@0
  2498
area of rendering target. The default origin is TPoint(0,0).
sl@0
  2499
sl@0
  2500
@see	CDirectGdiContext::SetBrushPattern()
sl@0
  2501
sl@0
  2502
@param	aOrigin	An origin point for the brush. The coordinates are relative 
sl@0
  2503
		to the rectangle to fill, i.e. specify TPoint(0,0) to align the pattern flush with 
sl@0
  2504
		the top and left hand sides of the rectangle.
sl@0
  2505
sl@0
  2506
@pre	None.
sl@0
  2507
@post	New brush origin will be used when filling an area with a pattern is used on 
sl@0
  2508
		subsequent drawing operations. It remains in effect until another SetBrushOrigin()
sl@0
  2509
		with a different parameter is called.
sl@0
  2510
*/
sl@0
  2511
EXPORT_C void CDirectGdiContext::SetBrushOrigin(const TPoint& aOrigin)
sl@0
  2512
	{
sl@0
  2513
	GRAPHICS_TRACE2("CDirectGdiContext::SetBrushOrigin(%d,%d)", aOrigin.iX, aOrigin.iY);
sl@0
  2514
	if (aOrigin != iBrushOrigin)
sl@0
  2515
		{
sl@0
  2516
		iBrushOrigin = aOrigin;
sl@0
  2517
		iEngine->SetBrushOrigin(iBrushOrigin);
sl@0
  2518
		}
sl@0
  2519
	}
sl@0
  2520
sl@0
  2521
sl@0
  2522
/**
sl@0
  2523
Sets the brush style used when filling the area of shapes and the background of text boxes.
sl@0
  2524
Use ENullBrush to draw the outline of a fillable shape on its own, without filling.
sl@0
  2525
sl@0
  2526
The error state is set to KErrArgument if aBrushStyle is an invalid brush style.
sl@0
  2527
sl@0
  2528
@see    DirectGdi::TBrushStyle
sl@0
  2529
sl@0
  2530
@param	aBrushStyle The brush style to set.
sl@0
  2531
sl@0
  2532
@pre	If aBrushStyle is EPatternedBrush, a pattern must have been set first using SetBrushPattern().
sl@0
  2533
@post	New brush style will be used for subsequent drawing operations, and remains in effect
sl@0
  2534
		until another SetBrushStyle() with a different parameter is called.
sl@0
  2535
@panic  DGDI 9, if aBrushStyle is EPatternedBrush but no brush pattern has successfully been set.
sl@0
  2536
*/
sl@0
  2537
EXPORT_C void CDirectGdiContext::SetBrushStyle(DirectGdi::TBrushStyle aBrushStyle)
sl@0
  2538
	{
sl@0
  2539
	GRAPHICS_TRACE1("CDirectGdiContext::SetBrushStyle(%d)", aBrushStyle);
sl@0
  2540
	if (aBrushStyle < DirectGdi::ENullBrush || aBrushStyle > DirectGdi::EDiamondCrossHatchBrush)
sl@0
  2541
		{
sl@0
  2542
		iDriver.SetError(KErrArgument);
sl@0
  2543
		return;
sl@0
  2544
		}
sl@0
  2545
	
sl@0
  2546
	if (aBrushStyle != iBrushStyle)
sl@0
  2547
		{
sl@0
  2548
		GRAPHICS_ASSERT_ALWAYS(aBrushStyle != DirectGdi::EPatternedBrush || iBrushPatternUsed, EDirectGdiPanicBrushPatternNotSet);
sl@0
  2549
		iBrushStyle = aBrushStyle;
sl@0
  2550
		iEngine->SetBrushStyle(iBrushStyle);
sl@0
  2551
		}
sl@0
  2552
	}
sl@0
  2553
sl@0
  2554
sl@0
  2555
/**
sl@0
  2556
Sets a clipping region which will be used to clip subsequent rendering operations on the current target.
sl@0
  2557
This operation is non-additive, any previous clipping region setting is replaced by the new one. A clipping
sl@0
  2558
region can contain one or more rectangles and is specified in absolute values in the target coordinate system.
sl@0
  2559
By default (when a target is activated for the first time) no clipping region is set and any drawing 
sl@0
  2560
operations will be clipped automatically to the full area of the rendering target.
sl@0
  2561
sl@0
  2562
In the event of a failure, the error state is set to KErrArgument if the given region is invalid or not 
sl@0
  2563
fully contained within the area of target, otherwise one of the system-wide error codes.
sl@0
  2564
sl@0
  2565
@see	CDirectGdiContext::ResetClippingRegion()
sl@0
  2566
sl@0
  2567
@param	aRegion	The new clipping region.
sl@0
  2568
sl@0
  2569
@pre	Region is not empty and is fully contained within the full area of the target.
sl@0
  2570
@post	Subsequent rendering operations will be clipped to the given region if there is no error 
sl@0
  2571
		while performing the operation, otherwise previous clipping region settings will be retained.
sl@0
  2572
*/
sl@0
  2573
EXPORT_C void CDirectGdiContext::SetClippingRegion(const TRegion& aRegion)
sl@0
  2574
	{
sl@0
  2575
	GRAPHICS_TRACE("CDirectGdiContext::SetClippingRegion");
sl@0
  2576
	if (aRegion.CheckError())
sl@0
  2577
		{
sl@0
  2578
		iDriver.SetError(KErrArgument);
sl@0
  2579
		return;
sl@0
  2580
		}
sl@0
  2581
	iClippingRegion.Copy(aRegion);
sl@0
  2582
	if (iClippingRegion.CheckError())
sl@0
  2583
		{
sl@0
  2584
		iDriver.SetError(KErrNoMemory);
sl@0
  2585
		return;
sl@0
  2586
		}
sl@0
  2587
	iEngine->SetClippingRegion(iClippingRegion);
sl@0
  2588
	}
sl@0
  2589
sl@0
  2590
sl@0
  2591
/**
sl@0
  2592
Sets the drawing mode which will affect the way pen and brush colour are used in rendering operations.
sl@0
  2593
The default drawing mode is EDrawModePEN.
sl@0
  2594
sl@0
  2595
The error state is set to KErrArgument if aDrawMode is an invalid draw mode.
sl@0
  2596
sl@0
  2597
@see	DirectGdi::TDrawMode
sl@0
  2598
sl@0
  2599
@param	aDrawMode The drawing mode.
sl@0
  2600
sl@0
  2601
@pre	None.
sl@0
  2602
@post	The new drawing mode will be applied to subsequent rendering operations, and remains in effect
sl@0
  2603
		until another SetDrawMode() with a different parameter is called.
sl@0
  2604
*/
sl@0
  2605
EXPORT_C void CDirectGdiContext::SetDrawMode(DirectGdi::TDrawMode aDrawMode)
sl@0
  2606
	{
sl@0
  2607
	GRAPHICS_TRACE1("CDirectGdiContext::SetDrawMode(%d)", aDrawMode);
sl@0
  2608
	if (aDrawMode != DirectGdi::EDrawModePEN && aDrawMode != DirectGdi::EDrawModeWriteAlpha)
sl@0
  2609
		{
sl@0
  2610
		iDriver.SetError(KErrArgument);
sl@0
  2611
		return;
sl@0
  2612
		}
sl@0
  2613
sl@0
  2614
	if (iDrawMode != aDrawMode)
sl@0
  2615
		{
sl@0
  2616
		iDrawMode = aDrawMode;
sl@0
  2617
		iEngine->SetDrawMode(iDrawMode);
sl@0
  2618
		}
sl@0
  2619
	}
sl@0
  2620
sl@0
  2621
sl@0
  2622
/**
sl@0
  2623
Sets the origin of the drawing engine coordinate system. By default this is TPoint(0,0) and
sl@0
  2624
coincides with the origin of the target coordinate system which is at the top-left corner of
sl@0
  2625
the full area of target. The X value increases from left to right, and Y value increases from
sl@0
  2626
top to bottom. Integer values are used to represent the position within the coordinate system. 
sl@0
  2627
sl@0
  2628
All drawing operations are done relative to the engine’s origin. However, the clipping region
sl@0
  2629
is always specified in absolute coordinate values (using the target coordinate system) and is
sl@0
  2630
not affected by changes to the drawing engine’s coordinate system origin.
sl@0
  2631
sl@0
  2632
@param	aPoint The new origin for the drawing engine’s coordinate system.
sl@0
  2633
sl@0
  2634
@pre	None.
sl@0
  2635
@post	The origin of the drawing engine’s coordinate system is moved to the given position.
sl@0
  2636
		All subsequent drawing operations will be done relative to the new origin. The new origin remains
sl@0
  2637
		in effect until SetOrigin() is called again with a different parameter.
sl@0
  2638
*/
sl@0
  2639
EXPORT_C void CDirectGdiContext::SetOrigin(const TPoint& aPoint)
sl@0
  2640
	{
sl@0
  2641
	GRAPHICS_TRACE2("CDirectGdiContext::SetOrigin(%d,%d)", aPoint.iX, aPoint.iY);
sl@0
  2642
	if (aPoint != iOrigin)
sl@0
  2643
		{	
sl@0
  2644
		iOrigin = aPoint;
sl@0
  2645
		iEngine->SetOrigin(iOrigin);
sl@0
  2646
		}
sl@0
  2647
	}
sl@0
  2648
sl@0
  2649
sl@0
  2650
/**
sl@0
  2651
Sets the colour that will be used for drawing lines, outlines of filled shapes and text. The 
sl@0
  2652
default pen colour is black. For outline and shadow fonts the alpha value of the pen colour will be 
sl@0
  2653
used for blending the font to the destination.
sl@0
  2654
sl@0
  2655
@see	CDirectGdiContext::Plot()
sl@0
  2656
@see	CDirectGdiContext::DrawLine()
sl@0
  2657
@see	CDirectGdiContext::DrawRoundRect()
sl@0
  2658
@see	CDirectGdiContext::DrawRect()
sl@0
  2659
@see	CDirectGdiContext::DrawPolyLine()
sl@0
  2660
@see	CDirectGdiContext::DrawPolyLineNoEndPoint()
sl@0
  2661
@see	CDirectGdiContext::DrawPolygon()
sl@0
  2662
@see	CDirectGdiContext::DrawPie()
sl@0
  2663
@see	CDirectGdiContext::DrawArc()
sl@0
  2664
@see	CDirectGdiContext::DrawText()
sl@0
  2665
sl@0
  2666
@param	aColor The pen colour.
sl@0
  2667
sl@0
  2668
@pre	None.
sl@0
  2669
@post	The new pen colour will be used for subsequent drawing of lines, outlines of filled shapes and text. 
sl@0
  2670
		The new pen colour remains in effect until another SetPenColor() with a different parameter is called.
sl@0
  2671
*/
sl@0
  2672
EXPORT_C void CDirectGdiContext::SetPenColor(const TRgb& aColor)
sl@0
  2673
	{
sl@0
  2674
	GRAPHICS_TRACE1("CDirectGdiContext::SetPenColor(%d)", aColor.Internal());
sl@0
  2675
	if (aColor != iPenColor)
sl@0
  2676
		{
sl@0
  2677
		iPenColor = aColor;
sl@0
  2678
		iEngine->SetPenColor(iPenColor);
sl@0
  2679
		}
sl@0
  2680
	}
sl@0
  2681
sl@0
  2682
sl@0
  2683
/**
sl@0
  2684
Sets the pen or line drawing style.
sl@0
  2685
sl@0
  2686
The pen style is used to draw lines and outlines of shapes. ENullPen can be used if border or 
sl@0
  2687
outlines are not required (when drawing a filled shape). The default pen style is ESolidPen.
sl@0
  2688
sl@0
  2689
The error state is set to KErrArgument if aPenStyle is an invalid pen style.
sl@0
  2690
sl@0
  2691
@see	CDirectGdiContext::Plot()
sl@0
  2692
@see	CDirectGdiContext::DrawLine()
sl@0
  2693
@see	CDirectGdiContext::DrawRoundRect()
sl@0
  2694
@see	CDirectGdiContext::DrawRect()
sl@0
  2695
@see	CDirectGdiContext::DrawPolyLine()
sl@0
  2696
@see	CDirectGdiContext::DrawPolyLineNoEndPoint()
sl@0
  2697
@see	CDirectGdiContext::DrawPolygon()
sl@0
  2698
@see	CDirectGdiContext::DrawPie()
sl@0
  2699
@see	CDirectGdiContext::DrawArc()
sl@0
  2700
@see	DirectGdi::TPenStyle
sl@0
  2701
sl@0
  2702
@param	aPenStyle The pen style.
sl@0
  2703
sl@0
  2704
@pre	None.
sl@0
  2705
@post	The new pen style will be applied for subsequent drawing lines and outlines of filled shapes.
sl@0
  2706
		The new pen style remains in effect until another SetPenStyle() with a different parameter is called.
sl@0
  2707
*/
sl@0
  2708
EXPORT_C void CDirectGdiContext::SetPenStyle(DirectGdi::TPenStyle aPenStyle)
sl@0
  2709
	{
sl@0
  2710
	GRAPHICS_TRACE1("CDirectGdiContext::SetPenStyle(%d)", aPenStyle);
sl@0
  2711
	if (aPenStyle < DirectGdi::ENullPen || aPenStyle > DirectGdi::EDotDotDashPen)
sl@0
  2712
		{
sl@0
  2713
		iDriver.SetError(KErrArgument);
sl@0
  2714
		return;
sl@0
  2715
		}
sl@0
  2716
sl@0
  2717
	if (aPenStyle != iPenStyle)
sl@0
  2718
		{
sl@0
  2719
		iPenStyle = aPenStyle;
sl@0
  2720
		iEngine->SetPenStyle(iPenStyle);
sl@0
  2721
		}
sl@0
  2722
	}
sl@0
  2723
sl@0
  2724
sl@0
  2725
/**
sl@0
  2726
Sets the pen size for drawing lines or the outlines of a filled shape. The default pen size is 1.
sl@0
  2727
Lines with pen size greater than 1 are drawn with rounded ends that extend beyond the end points
sl@0
  2728
and are always drawn using EDrawModePEN for compatibility reasons.
sl@0
  2729
sl@0
  2730
The error state is set to KErrArgument if the specified width or height is negative.
sl@0
  2731
sl@0
  2732
@see	CDirectGdiContext::Plot()
sl@0
  2733
@see	CDirectGdiContext::DrawLine()
sl@0
  2734
@see	CDirectGdiContext::DrawRoundRect()
sl@0
  2735
@see	CDirectGdiContext::DrawRect()
sl@0
  2736
@see	CDirectGdiContext::DrawPolyLine()
sl@0
  2737
@see	CDirectGdiContext::DrawPolyLineNoEndPoint()
sl@0
  2738
@see	CDirectGdiContext::DrawPolygon()
sl@0
  2739
@see	CDirectGdiContext::DrawPie()
sl@0
  2740
@see	CDirectGdiContext::DrawArc()
sl@0
  2741
sl@0
  2742
@param	aSize The pen size.
sl@0
  2743
sl@0
  2744
@pre	None.
sl@0
  2745
@post	The new pen size is used for subsequent drawing lines and outlines of filled shapes. The new 
sl@0
  2746
		pen size remains in effect until another SetPenSize() with a different parameter is called.
sl@0
  2747
*/
sl@0
  2748
EXPORT_C void CDirectGdiContext::SetPenSize(const TSize& aSize)
sl@0
  2749
	{
sl@0
  2750
	GRAPHICS_TRACE2("CDirectGdiContext::SetPenSize(%d,%d)", aSize.iWidth, aSize.iHeight);
sl@0
  2751
	if ((aSize.iWidth < 0) || (aSize.iHeight < 0))
sl@0
  2752
		{
sl@0
  2753
		iDriver.SetError(KErrArgument);
sl@0
  2754
		return;
sl@0
  2755
		}
sl@0
  2756
	
sl@0
  2757
	if (aSize != iPenSize)
sl@0
  2758
		{
sl@0
  2759
		iPenSize = aSize;
sl@0
  2760
		iEngine->SetPenSize(iPenSize);
sl@0
  2761
		}
sl@0
  2762
	}
sl@0
  2763
sl@0
  2764
sl@0
  2765
/**
sl@0
  2766
Sets the colour that will be used for drawing the shadow for shadowed text.
sl@0
  2767
sl@0
  2768
@param	aColor	The shadow colour.
sl@0
  2769
sl@0
  2770
@pre	None.
sl@0
  2771
@post	The new colour will be used for subsequent drawing of text which has a type EFourColourBlendGlyphBitmap. 
sl@0
  2772
		The shadow component of the text will be filled with this colour.
sl@0
  2773
		The new pen colour remains in effect until another SetTextShadowColor() with a different parameter is called.
sl@0
  2774
*/
sl@0
  2775
EXPORT_C void CDirectGdiContext::SetTextShadowColor(const TRgb& aColor)
sl@0
  2776
	{
sl@0
  2777
	GRAPHICS_TRACE1("CDirectGdiContext::SetTextShadowColor(%d)", aColor.Internal());
sl@0
  2778
	if (aColor != iTextShadowColor)
sl@0
  2779
		{
sl@0
  2780
		iTextShadowColor = aColor;
sl@0
  2781
		iEngine->SetTextShadowColor(aColor);
sl@0
  2782
		}
sl@0
  2783
	}
sl@0
  2784
sl@0
  2785
sl@0
  2786
/**
sl@0
  2787
Sets the character justification.
sl@0
  2788
The function provides a concrete implementation of the pure virtual function CGraphicsContext::SetCharJustification().
sl@0
  2789
The function behaviour is the same as documented (in detail) in that class.
sl@0
  2790
sl@0
  2791
@param	aExcessWidth	The excess width (in pixels) to be distributed between the specified number of characters. 
sl@0
  2792
@param	aNumChars		The number of characters involved.
sl@0
  2793
sl@0
  2794
@see	CGraphicsContext::SetCharJustification()
sl@0
  2795
*/
sl@0
  2796
EXPORT_C void CDirectGdiContext::SetCharJustification(TInt aExcessWidth, TInt aNumChars)
sl@0
  2797
	{
sl@0
  2798
	GRAPHICS_TRACE2("CDirectGdiContext::SetCharJustification(%d,%d)", aExcessWidth, aNumChars);
sl@0
  2799
	if (aExcessWidth == 0 || aNumChars <= 0)
sl@0
  2800
		{
sl@0
  2801
		iCharJustExcess = 0;
sl@0
  2802
		iCharJustNum = 0;
sl@0
  2803
		}
sl@0
  2804
	else
sl@0
  2805
		{
sl@0
  2806
		iCharJustExcess = aExcessWidth;
sl@0
  2807
		iCharJustNum = aNumChars;
sl@0
  2808
		}
sl@0
  2809
	}
sl@0
  2810
sl@0
  2811
sl@0
  2812
/**
sl@0
  2813
Sets the word justification.
sl@0
  2814
The function provides a concrete implementation of the pure virtual function CGraphicsContext::SetWordJustification().
sl@0
  2815
The function behaviour is the same as documented (in detail) in that class.
sl@0
  2816
sl@0
  2817
@param	aExcessWidth	The width (in pixels) to be distributed between the specified number of spaces.
sl@0
  2818
						It may be positive, in which case the text is stretched, or negative, in which case it is shrunk. 
sl@0
  2819
@param	aNumGaps		The number of word spaces (characters with the code U+0020) over which the change in width is distributed.
sl@0
  2820
sl@0
  2821
@see CGraphicsContext::SetWordJustification()
sl@0
  2822
*/
sl@0
  2823
EXPORT_C void CDirectGdiContext::SetWordJustification(TInt aExcessWidth, TInt aNumGaps)
sl@0
  2824
	{
sl@0
  2825
	GRAPHICS_TRACE2("CDirectGdiContext::SetWordJustification(%d,%d)", aExcessWidth, aNumGaps);
sl@0
  2826
	if (aExcessWidth <= 0 || aNumGaps <= 0)
sl@0
  2827
		{
sl@0
  2828
		iWordJustExcess = 0;
sl@0
  2829
		iWordJustNum = 0;
sl@0
  2830
		}
sl@0
  2831
	else
sl@0
  2832
		{
sl@0
  2833
		iWordJustExcess = aExcessWidth;
sl@0
  2834
		iWordJustNum = aNumGaps;
sl@0
  2835
		}
sl@0
  2836
	}
sl@0
  2837
sl@0
  2838
sl@0
  2839
/**
sl@0
  2840
Sets the underline style for all subsequently drawn text.
sl@0
  2841
The function provides a concrete implementation of the pure virtual function CGraphicsContext::SetUnderlineStyle().
sl@0
  2842
The function behaviour is the same as documented in that class.
sl@0
  2843
sl@0
  2844
@param	aUnderlineStyle	The underline style to be used.
sl@0
  2845
sl@0
  2846
@see	CGraphicsContext::SetUnderlineStyle()
sl@0
  2847
*/
sl@0
  2848
EXPORT_C void CDirectGdiContext::SetUnderlineStyle(DirectGdi::TFontUnderline aUnderlineStyle)
sl@0
  2849
	{
sl@0
  2850
	GRAPHICS_TRACE1("CDirectGdiContext::SetWordJustification(%d)", aUnderlineStyle);
sl@0
  2851
	iUnderline = aUnderlineStyle;
sl@0
  2852
	}
sl@0
  2853
sl@0
  2854
sl@0
  2855
/**
sl@0
  2856
Sets the strikethrough style for all subsequently drawn text.
sl@0
  2857
The function provides a concrete implementation of the pure virtual function CGraphicsContext::SetStrikethroughStyle().
sl@0
  2858
The function behaviour is the same as documented in that class.
sl@0
  2859
sl@0
  2860
@param	aStrikethroughStyle	The strikethrough style to be used.
sl@0
  2861
sl@0
  2862
@see	CGraphicsContext::SetStrikethroughStyle()
sl@0
  2863
*/
sl@0
  2864
EXPORT_C void CDirectGdiContext::SetStrikethroughStyle(DirectGdi::TFontStrikethrough aStrikethroughStyle)
sl@0
  2865
	{
sl@0
  2866
	GRAPHICS_TRACE1("CDirectGdiContext::SetStrikethroughStyle(%d)", aStrikethroughStyle);
sl@0
  2867
	iStrikethrough = aStrikethroughStyle;
sl@0
  2868
	}
sl@0
  2869
sl@0
  2870
sl@0
  2871
/**
sl@0
  2872
Sets the bitmap to be used as the brush pattern when EPatternedBrush is selected.
sl@0
  2873
The DirectGDI generic layer owns the bitmap and will keep the bitmap until ResetBrushPattern() is called.
sl@0
  2874
sl@0
  2875
The client may modify the content of the bitmap used as the brush pattern. If this is done after 
sl@0
  2876
issuing drawing commands there is no guarantee which bitmap content will be used as brush pattern.
sl@0
  2877
Clients must call Finish() on the driver before modifying the bitmap content if they want a guaranteed 
sl@0
  2878
result that the previously issued drawing commands will be drawn using the old bitmap brush pattern.
sl@0
  2879
sl@0
  2880
In the event of a failure, the error state is set to KErrCouldNotConnect if no connection to the font 
sl@0
  2881
and bitmap server could be made, KErrBadHandle if the handle of the bitmap is null, KErrUnknown if 
sl@0
  2882
no bitmap could be found with the specified handle number, otherwise one of the system-wide error codes.
sl@0
  2883
sl@0
  2884
@see	CDirectGdiContext::SetBrushStyle()
sl@0
  2885
@see	CDirectGdiContext::SetBrushOrigin()
sl@0
  2886
@see	CDirectGdiContext::ResetBrushPattern()
sl@0
  2887
sl@0
  2888
@param	aBitmap	Bitmap that will be used as the brush pattern.
sl@0
  2889
sl@0
  2890
@pre	Bitmap is fully constructed.
sl@0
  2891
@post	Bitmap will be used as the brush pattern for subsequent drawing operations when EPatternedBrush
sl@0
  2892
		is selected. It remains in effect until ResetBrushPattern() is called.
sl@0
  2893
*/
sl@0
  2894
EXPORT_C void CDirectGdiContext::SetBrushPattern(const CFbsBitmap& aBitmap)
sl@0
  2895
	{
sl@0
  2896
	GRAPHICS_TRACE1("CDirectGdiContext::SetBrushPattern(%d)", aBitmap.Handle());
sl@0
  2897
	SetBrushPattern(aBitmap.Handle());
sl@0
  2898
	}
sl@0
  2899
sl@0
  2900
sl@0
  2901
/**
sl@0
  2902
Sets the bitmap to be used as the brush pattern when EPatternedBrush is selected.
sl@0
  2903
The DirectGDI generic layer owns the bitmap and will keep the bitmap until ResetBrushPattern() is called.
sl@0
  2904
If the client modifies the content of the bitmap used as the brush pattern after issuing any drawing 
sl@0
  2905
commands that uses that brush pattern, the method does not guarantee whether the old bitmap 
sl@0
  2906
content or the new one will be used as brush pattern. Clients must call Finish() on the driver 
sl@0
  2907
before modifying the bitmap content if they want a guaranteed result that the previously issued 
sl@0
  2908
drawing commands will be drawn using the old bitmap brush pattern.
sl@0
  2909
sl@0
  2910
In the event of a failure, the error state is set to KErrCouldNotConnect if no connection to the font 
sl@0
  2911
and bitmap server could be made, KErrBadHandle if the handle is null, KErrUnknown if no bitmap could 
sl@0
  2912
be found with the specified handle number, otherwise one of the system-wide error codes.
sl@0
  2913
sl@0
  2914
@param	aFbsBitmapHandle Bitmap handle that will be used as the brush pattern.
sl@0
  2915
sl@0
  2916
@pre 	Bitmap belonging to the handle is fully constructed.
sl@0
  2917
@post 	Bitmap will be used as the brush pattern for subsequent drawing operations when EPatternedBrush
sl@0
  2918
		is selected. It remains in effect until ResetBrushPattern() is called.
sl@0
  2919
@panic	DGDI 8, if aFbsBitmapHandle is 0.
sl@0
  2920
*/
sl@0
  2921
EXPORT_C void CDirectGdiContext::SetBrushPattern(TInt aFbsBitmapHandle)
sl@0
  2922
	{
sl@0
  2923
	GRAPHICS_TRACE1("CDirectGdiContext::SetBrushPattern(%d)", aFbsBitmapHandle);
sl@0
  2924
	if (aFbsBitmapHandle == KNullHandle)
sl@0
  2925
		{
sl@0
  2926
		iDriver.SetError(KErrBadHandle);
sl@0
  2927
		return;
sl@0
  2928
		}
sl@0
  2929
sl@0
  2930
	// Check we're not already using the passed brush pattern
sl@0
  2931
	if (iBrushPattern.Handle() == aFbsBitmapHandle)
sl@0
  2932
		{
sl@0
  2933
		return;
sl@0
  2934
		}
sl@0
  2935
sl@0
  2936
	// Delete any previously saved brush pattern
sl@0
  2937
	CleanUpBrushPattern();
sl@0
  2938
sl@0
  2939
	TInt result = iBrushPattern.Duplicate(aFbsBitmapHandle);
sl@0
  2940
	if (result == KErrNone)
sl@0
  2941
		{
sl@0
  2942
		result = iEngine->SetBrushPattern(iBrushPattern);
sl@0
  2943
		}
sl@0
  2944
	
sl@0
  2945
	if (result == KErrNone)
sl@0
  2946
		{
sl@0
  2947
		iBrushPatternUsed = ETrue;
sl@0
  2948
		}
sl@0
  2949
	else
sl@0
  2950
		{
sl@0
  2951
		iDriver.SetError(result);
sl@0
  2952
		}
sl@0
  2953
sl@0
  2954
	return;
sl@0
  2955
	}
sl@0
  2956
sl@0
  2957
sl@0
  2958
/**
sl@0
  2959
Selects the font to be used for text drawing.
sl@0
  2960
Notes:
sl@0
  2961
When the font is no longer required, use ResetFont() to free up the memory used. 
sl@0
  2962
If SetFont() is used again without using ResetFont() then the previous font is reset 
sl@0
  2963
automatically. If no font has been selected, and an attempt is made to draw text with 
sl@0
  2964
DrawText(), then a panic occurs.
sl@0
  2965
sl@0
  2966
@see	CDirectGdiContext::ResetFont()
sl@0
  2967
@see	CDirectGdiContext::DrawText()
sl@0
  2968
sl@0
  2969
@param	aFont The font to be used.
sl@0
  2970
sl@0
  2971
@panic	DGDI 12, if aFont has an invalid handle or is not a CFbsFont, or the font cannot be duplicated.
sl@0
  2972
*/
sl@0
  2973
EXPORT_C void CDirectGdiContext::SetFont(const CFont* aFont)
sl@0
  2974
	{
sl@0
  2975
	GRAPHICS_TRACE("CDirectGdiContext::SetFont");
sl@0
  2976
	// Note: We pass a ptr in, rather than a reference, because otherwise the caller would almost always have to do complex casting 
sl@0
  2977
	GRAPHICS_ASSERT_ALWAYS(aFont->TypeUid() == KCFbsFontUid, EDirectGdiPanicInvalidFont);
sl@0
  2978
	const CDirectGdiFont* font = reinterpret_cast<const CDirectGdiFont*>(aFont);
sl@0
  2979
	GRAPHICS_ASSERT_ALWAYS(font->Handle(), EDirectGdiPanicInvalidFont);
sl@0
  2980
sl@0
  2981
	if (iFont.Handle() == font->Handle())
sl@0
  2982
		{
sl@0
  2983
		return;
sl@0
  2984
		}
sl@0
  2985
	ResetFont();
sl@0
  2986
	TInt err = iFont.Duplicate(font->Handle());
sl@0
  2987
	GRAPHICS_ASSERT_ALWAYS(err == KErrNone, EDirectGdiPanicInvalidFont); // This may seem extreme but it is what BitGdi did
sl@0
  2988
	iEngine->SetFont(iFont.Address()->UniqueFontId());
sl@0
  2989
	}
sl@0
  2990
sl@0
  2991
sl@0
  2992
/**
sl@0
  2993
Copies the content of a rectangular area on the target to another location.
sl@0
  2994
The source rect will be intersected with the target’s full extent.
sl@0
  2995
sl@0
  2996
@param	aOffset	Offset from the top left corner of the rectangle to be copied to the top left corner of the copy.
sl@0
  2997
@param	aRect Area to be copied.
sl@0
  2998
sl@0
  2999
@pre	The rendering target has been activated.
sl@0
  3000
@post	Request to copy an area has been accepted. There is no guarantee that the
sl@0
  3001
		request has been processed when this method returns.
sl@0
  3002
sl@0
  3003
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3004
*/
sl@0
  3005
EXPORT_C void CDirectGdiContext::CopyRect(const TPoint& aOffset, const TRect& aRect)
sl@0
  3006
	{
sl@0
  3007
	GRAPHICS_TRACE("CDirectGdiContext::CopyRect");
sl@0
  3008
	if (aRect.IsEmpty() || aOffset == TPoint(0,0))
sl@0
  3009
		{
sl@0
  3010
		return;
sl@0
  3011
		}
sl@0
  3012
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3013
	iEngine->CopyRect(aOffset, aRect);
sl@0
  3014
	}
sl@0
  3015
sl@0
  3016
/** 
sl@0
  3017
Copies all settings from the specified DirectGDI context.
sl@0
  3018
sl@0
  3019
@param aGc The DirectGDI context whose settings are to be copied. 
sl@0
  3020
*/
sl@0
  3021
EXPORT_C void CDirectGdiContext::CopySettings(const CDirectGdiContext& aGc)
sl@0
  3022
	{
sl@0
  3023
	GRAPHICS_TRACE("CDirectGdiContext::CopySettings");
sl@0
  3024
	SetOrigin(aGc.iOrigin);
sl@0
  3025
	SetFont(&(aGc.iFont));
sl@0
  3026
	SetCharJustification(aGc.iCharJustExcess, aGc.iCharJustNum);
sl@0
  3027
	SetWordJustification(aGc.iWordJustExcess, aGc.iWordJustNum);
sl@0
  3028
	iLastPrintPosition = aGc.iLastPrintPosition;
sl@0
  3029
	SetStrikethroughStyle(aGc.iStrikethrough);
sl@0
  3030
	SetUnderlineStyle(aGc.iUnderline);
sl@0
  3031
	SetPenColor(aGc.iPenColor);
sl@0
  3032
	SetPenSize(aGc.iPenSize);
sl@0
  3033
	SetPenStyle(aGc.iPenStyle);
sl@0
  3034
	SetDrawMode(aGc.iDrawMode);
sl@0
  3035
	SetTextShadowColor(aGc.iTextShadowColor);
sl@0
  3036
	SetBrushColor(aGc.iBrushColor);
sl@0
  3037
	SetBrushStyle(aGc.iBrushStyle);
sl@0
  3038
	if(aGc.iBrushPattern.Handle())
sl@0
  3039
		{
sl@0
  3040
		SetBrushPattern(aGc.iBrushPattern.Handle());
sl@0
  3041
		}
sl@0
  3042
	iBrushPatternUsed = aGc.iBrushPatternUsed;
sl@0
  3043
	SetBrushOrigin(aGc.iBrushOrigin);
sl@0
  3044
	}
sl@0
  3045
sl@0
  3046
/**
sl@0
  3047
Updates the justification settings.
sl@0
  3048
This function assumes that NoJustifyAutoUpdate() has not been used.
sl@0
  3049
sl@0
  3050
@param	aText	The text for which justification is to be adjusted.
sl@0
  3051
@param	aParam	Parameters used in drawing text.
sl@0
  3052
sl@0
  3053
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3054
@panic	DGDI 13, if NoJustifyAutoUpdate() had been called prior to this.
sl@0
  3055
*/
sl@0
  3056
EXPORT_C void CDirectGdiContext::UpdateJustification(const TDesC& aText, const DirectGdi::TTextParameters* aParam)
sl@0
  3057
	{
sl@0
  3058
	GRAPHICS_TRACE("CDirectGdiContext::UpdateJustification");
sl@0
  3059
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3060
	GRAPHICS_ASSERT_ALWAYS(iAutoUpdateJustification, EDirectGdiPanicAutoUpdateJustificationUsed);
sl@0
  3061
	if (((iCharJustNum < 1) || (iCharJustExcess == 0)) && ((iWordJustNum < 1) || (iWordJustExcess < 1)))
sl@0
  3062
		{
sl@0
  3063
		return;
sl@0
  3064
		}
sl@0
  3065
sl@0
  3066
	TInt length = aText.Length();
sl@0
  3067
	CFont::TPositionParam param;
sl@0
  3068
	param.iText.Set(aText);	// Set the start of the string
sl@0
  3069
	if (aParam)
sl@0
  3070
		{
sl@0
  3071
		length = aParam->iEnd;
sl@0
  3072
		param.iPosInText = aParam->iStart;
sl@0
  3073
		}
sl@0
  3074
	TInt excess = 0;
sl@0
  3075
	TInt glyphs = 0;
sl@0
  3076
	RShapeInfo shapeInfo;
sl@0
  3077
	for (TInt count = 0; count < length; count++)
sl@0
  3078
		{
sl@0
  3079
		if ((iCharJustNum > 0) && (iCharJustExcess != 0))
sl@0
  3080
			{
sl@0
  3081
			excess += CGraphicsContext::JustificationInPixels(iCharJustExcess, iCharJustNum);
sl@0
  3082
			}
sl@0
  3083
		if ((iWordJustNum > 0) && (iWordJustExcess > 0) && (aText[count] == ' '))
sl@0
  3084
			{
sl@0
  3085
			excess += CGraphicsContext::JustificationInPixels(iWordJustExcess, iWordJustNum);
sl@0
  3086
			}
sl@0
  3087
		if (iCharJustNum < (glyphs + length - count)) // there's at least 1 combined glyph to come
sl@0
  3088
			{
sl@0
  3089
			// otherwise we can skip this slow bit and just increment
sl@0
  3090
			if (iFont.GetCharacterPosition2(param, shapeInfo))
sl@0
  3091
				{
sl@0
  3092
				count = param.iPosInText - 1;   // -1 'cos it gets incremented anyway
sl@0
  3093
				}
sl@0
  3094
			}
sl@0
  3095
		glyphs++;
sl@0
  3096
		}
sl@0
  3097
	if (shapeInfo.IsOpen())
sl@0
  3098
		{
sl@0
  3099
		shapeInfo.Close();
sl@0
  3100
		}
sl@0
  3101
	iLastPrintPosition.iX += excess;
sl@0
  3102
	}
sl@0
  3103
sl@0
  3104
sl@0
  3105
/**
sl@0
  3106
Updates the justification for vertical text.
sl@0
  3107
This function assumes that NoJustifyAutoUpdate() has not been used.
sl@0
  3108
sl@0
  3109
@param	aText	The text for which justification is to be adjusted.
sl@0
  3110
@param	aParam	Parameters used in drawing text.
sl@0
  3111
@param	aUp		ETrue, if text is to be justified upwards; EFalse, if text is to be justified downwards.
sl@0
  3112
sl@0
  3113
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3114
@panic	DGDI 13, if NoJustifyAutoUpdate() had been called prior to this.
sl@0
  3115
*/
sl@0
  3116
EXPORT_C void CDirectGdiContext::UpdateJustificationVertical(const TDesC& aText, const DirectGdi::TTextParameters* aParam, TBool aUp)
sl@0
  3117
	{
sl@0
  3118
	GRAPHICS_TRACE("CDirectGdiContext::UpdateJustificationVertical");
sl@0
  3119
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3120
	GRAPHICS_ASSERT_ALWAYS(iAutoUpdateJustification, EDirectGdiPanicAutoUpdateJustificationUsed);
sl@0
  3121
sl@0
  3122
	if (((iCharJustNum < 1) || (iCharJustExcess == 0)) && ((iWordJustNum < 1) || (iWordJustExcess < 1)))
sl@0
  3123
		{
sl@0
  3124
		return;
sl@0
  3125
		}
sl@0
  3126
sl@0
  3127
	TInt length = aText.Length();
sl@0
  3128
	CFont::TPositionParam param;
sl@0
  3129
	param.iText.Set(aText);	// Set the start of the string
sl@0
  3130
	if (aParam)
sl@0
  3131
		{
sl@0
  3132
		length = aParam->iEnd;
sl@0
  3133
		param.iPosInText = aParam->iStart;
sl@0
  3134
		}
sl@0
  3135
	TInt excess = 0;
sl@0
  3136
	TInt glyphs = 0;
sl@0
  3137
	RShapeInfo shapeInfo;
sl@0
  3138
	for (TInt count = 0; count < length; count++)
sl@0
  3139
		{
sl@0
  3140
		if ((iCharJustNum > 0) && (iCharJustExcess != 0))
sl@0
  3141
			{
sl@0
  3142
			excess += CGraphicsContext::JustificationInPixels(iCharJustExcess, iCharJustNum);
sl@0
  3143
			}
sl@0
  3144
		if ((iWordJustNum > 0) && (iWordJustExcess > 0) && (aText[count] == ' '))
sl@0
  3145
			{
sl@0
  3146
			excess += CGraphicsContext::JustificationInPixels(iWordJustExcess, iWordJustNum);
sl@0
  3147
			}
sl@0
  3148
		if (iCharJustNum < (glyphs + length - count)) // there's at least 1 combined glyph to come
sl@0
  3149
			{
sl@0
  3150
			// otherwise we can skip this slow bit and just increment
sl@0
  3151
			if (iFont.GetCharacterPosition2(param, shapeInfo))
sl@0
  3152
				{
sl@0
  3153
				count = param.iPosInText - 1;   // -1 because it gets incremented anyway
sl@0
  3154
				}
sl@0
  3155
			}
sl@0
  3156
		glyphs++;
sl@0
  3157
		}
sl@0
  3158
		if (shapeInfo.IsOpen())
sl@0
  3159
			{
sl@0
  3160
			shapeInfo.Close();
sl@0
  3161
			}
sl@0
  3162
sl@0
  3163
		if (aUp)
sl@0
  3164
			{
sl@0
  3165
			iLastPrintPosition.iY -= excess;
sl@0
  3166
			}
sl@0
  3167
		else
sl@0
  3168
			{
sl@0
  3169
			iLastPrintPosition.iY += excess;
sl@0
  3170
			}
sl@0
  3171
	}
sl@0
  3172
sl@0
  3173
sl@0
  3174
/**
sl@0
  3175
Selects a font for text drawing but does not take a copy. 
sl@0
  3176
The original must not be destroyed until SetFont(), SetFontNoDuplicate(), ResetFont() 
sl@0
  3177
or the destructor is called.
sl@0
  3178
sl@0
  3179
@param	aFont A pointer to the font to be used.
sl@0
  3180
@panic	DGDI 12, if aFont has no handle or is not a CFbsFont.
sl@0
  3181
*/
sl@0
  3182
EXPORT_C void CDirectGdiContext::SetFontNoDuplicate(const CDirectGdiFont* aFont)
sl@0
  3183
	{
sl@0
  3184
	GRAPHICS_TRACE("CDirectGdiContext::SetFontNoDuplicate");
sl@0
  3185
	// Note: We pass a ptr in, rather than a reference, because otherwise the caller would almost always have to do complex casting 
sl@0
  3186
	GRAPHICS_ASSERT_ALWAYS(aFont->TypeUid() == KCFbsFontUid, EDirectGdiPanicInvalidFont);
sl@0
  3187
	GRAPHICS_ASSERT_ALWAYS(aFont->Handle(), EDirectGdiPanicInvalidFont);
sl@0
  3188
sl@0
  3189
	if (iFont.Handle() == aFont->Handle())
sl@0
  3190
		{
sl@0
  3191
		return;
sl@0
  3192
		}
sl@0
  3193
	
sl@0
  3194
	ResetFont();
sl@0
  3195
	iFont = *aFont;
sl@0
  3196
	iEngine->SetFont(iFont.Address()->UniqueFontId());
sl@0
  3197
	}
sl@0
  3198
sl@0
  3199
sl@0
  3200
/**
sl@0
  3201
Checks to see if a brush pattern is currently set.
sl@0
  3202
sl@0
  3203
@return	ETrue is a brush pattern is currently set, EFalse if no brush pattern is currently set.
sl@0
  3204
*/
sl@0
  3205
EXPORT_C TBool CDirectGdiContext::HasBrushPattern() const
sl@0
  3206
	{
sl@0
  3207
	GRAPHICS_TRACE("CDirectGdiContext::HasBrushPattern");
sl@0
  3208
	return iBrushPatternUsed;
sl@0
  3209
	}
sl@0
  3210
sl@0
  3211
sl@0
  3212
/**
sl@0
  3213
Tests whether a font is used.
sl@0
  3214
sl@0
  3215
@return	ETrue, if a font is being used; EFalse, otherwise.
sl@0
  3216
*/
sl@0
  3217
EXPORT_C TBool CDirectGdiContext::HasFont() const
sl@0
  3218
	{
sl@0
  3219
	GRAPHICS_TRACE("CDirectGdiContext::HasFont");
sl@0
  3220
	TBool result = EFalse;
sl@0
  3221
	if (iFont.Handle() != KNullHandle)
sl@0
  3222
		result = ETrue;
sl@0
  3223
	return result;
sl@0
  3224
	}
sl@0
  3225
sl@0
  3226
sl@0
  3227
/**
sl@0
  3228
Externalises the context and the drawing engine object to the write stream.
sl@0
  3229
It is important that the font and brush bitmap of the GC is maintained between
sl@0
  3230
calls to ExternalizeL() and InternalizeL().  The font handle and brush bitmap handle
sl@0
  3231
is externalised, not the underlying data.  This is done for performance reasons.
sl@0
  3232
sl@0
  3233
@param	aWriteStream Write stream.
sl@0
  3234
sl@0
  3235
@pre	None.
sl@0
  3236
@post	The context and drawing engine object states are written to the write stream.
sl@0
  3237
sl@0
  3238
@see	MDirectGdiEngine::InternalizeL
sl@0
  3239
@leave	If there was an error writing to the write stream.
sl@0
  3240
*/
sl@0
  3241
EXPORT_C void CDirectGdiContext::ExternalizeL(RWriteStream& aWriteStream)
sl@0
  3242
	{	
sl@0
  3243
	GRAPHICS_TRACE("CDirectGdiContext::ExternalizeL");
sl@0
  3244
	aWriteStream << KDirectGDIContext_VerNo;
sl@0
  3245
	iEngine->ExternalizeL(aWriteStream);
sl@0
  3246
sl@0
  3247
	aWriteStream << iOrigin;
sl@0
  3248
	aWriteStream.WriteInt32L(iFont.Handle());
sl@0
  3249
	aWriteStream.WriteInt32L(iCharJustExcess);
sl@0
  3250
	aWriteStream.WriteInt32L(iCharJustNum);
sl@0
  3251
	aWriteStream.WriteInt32L(iWordJustExcess);
sl@0
  3252
	aWriteStream.WriteInt32L(iWordJustNum);
sl@0
  3253
	aWriteStream << iLastPrintPosition;
sl@0
  3254
	aWriteStream.WriteUint8L(iStrikethrough); 
sl@0
  3255
	aWriteStream.WriteUint8L(iUnderline);
sl@0
  3256
	aWriteStream << iPenColor;
sl@0
  3257
	aWriteStream.WriteUint32L(iPenSize.iWidth);
sl@0
  3258
	aWriteStream.WriteUint32L(iPenSize.iHeight);
sl@0
  3259
	aWriteStream.WriteUint8L(iPenStyle);
sl@0
  3260
	aWriteStream.WriteUint8L(iDrawMode);
sl@0
  3261
	aWriteStream << iTextShadowColor;
sl@0
  3262
	aWriteStream << iBrushColor;
sl@0
  3263
	aWriteStream.WriteInt32L(iBrushPattern.Handle());
sl@0
  3264
	aWriteStream.WriteUint8L(iBrushStyle);
sl@0
  3265
	aWriteStream.WriteUint8L(iBrushPatternUsed);
sl@0
  3266
	aWriteStream << iBrushOrigin;
sl@0
  3267
	aWriteStream.WriteUint8L(iAutoUpdateJustification);
sl@0
  3268
	}
sl@0
  3269
sl@0
  3270
sl@0
  3271
/**
sl@0
  3272
Internalises the context and the drawing engine object from the read stream.
sl@0
  3273
It is important that the font and brush bitmap of the GC is maintained between
sl@0
  3274
calls to ExternalizeL() and InternalizeL().  The font handle and brush bitmap handle
sl@0
  3275
is externalised, not the underlying data.  This is done for performance reasons.
sl@0
  3276
sl@0
  3277
@param	aReadStream	Read stream.
sl@0
  3278
sl@0
  3279
@pre	The font has not been released since the last call of CDirectGdiContext::ExternalizeL on the stream
sl@0
  3280
@pre	The handle of the brush pattern bitmap has not been closed since the call to CDirectGdiContext::ExternalizeL on the stream.
sl@0
  3281
@post	The context and drawing engine object states are updated with the values from the read stream.
sl@0
  3282
sl@0
  3283
@see	MDirectGdiEngine::ExternalizeL
sl@0
  3284
@leave	If there was an error reading from the read stream.
sl@0
  3285
*/
sl@0
  3286
EXPORT_C void CDirectGdiContext::InternalizeL(RReadStream& aReadStream)
sl@0
  3287
	{
sl@0
  3288
	GRAPHICS_TRACE("CDirectGdiContext::InternalizeL");
sl@0
  3289
	TUint16 archiveVerNo = 0;
sl@0
  3290
	aReadStream >> archiveVerNo;
sl@0
  3291
	iEngine->InternalizeL(aReadStream);
sl@0
  3292
	
sl@0
  3293
	TPoint origin;
sl@0
  3294
	aReadStream >> origin;
sl@0
  3295
	SetOrigin(origin);
sl@0
  3296
	ResetFont();
sl@0
  3297
	TInt fontHandle = aReadStream.ReadInt32L();
sl@0
  3298
	if(fontHandle)
sl@0
  3299
		{
sl@0
  3300
		TInt res = iFont.Duplicate(fontHandle);
sl@0
  3301
		if(res == KErrNone)
sl@0
  3302
			{
sl@0
  3303
			iEngine->SetFont(iFont.Address()->UniqueFontId());
sl@0
  3304
			}
sl@0
  3305
		else
sl@0
  3306
			{
sl@0
  3307
			iDriver.SetError(res);
sl@0
  3308
			}
sl@0
  3309
		}
sl@0
  3310
	iCharJustExcess = aReadStream.ReadUint32L();
sl@0
  3311
	iCharJustNum = aReadStream.ReadUint32L();
sl@0
  3312
	iWordJustExcess = aReadStream.ReadUint32L();
sl@0
  3313
	iWordJustNum = aReadStream.ReadUint32L();
sl@0
  3314
	aReadStream >> iLastPrintPosition;
sl@0
  3315
	iStrikethrough = (DirectGdi::TFontStrikethrough)aReadStream.ReadUint8L(); 
sl@0
  3316
	iUnderline = (DirectGdi::TFontUnderline)aReadStream.ReadUint8L();
sl@0
  3317
	TRgb penColor;
sl@0
  3318
	aReadStream >> penColor;
sl@0
  3319
	SetPenColor(penColor);
sl@0
  3320
	TSize penSize;
sl@0
  3321
	penSize.iWidth = aReadStream.ReadUint32L();
sl@0
  3322
	penSize.iHeight = aReadStream.ReadUint32L();
sl@0
  3323
	SetPenSize(penSize);
sl@0
  3324
	DirectGdi::TPenStyle penStyle = (DirectGdi::TPenStyle)aReadStream.ReadUint8L();
sl@0
  3325
	SetPenStyle(penStyle);
sl@0
  3326
	DirectGdi::TDrawMode drawMode = (DirectGdi::TDrawMode)aReadStream.ReadUint8L();
sl@0
  3327
	SetDrawMode(drawMode);
sl@0
  3328
	TRgb textShadowColor;
sl@0
  3329
	aReadStream >> textShadowColor;
sl@0
  3330
	SetTextShadowColor(textShadowColor);
sl@0
  3331
	TRgb brushColor;
sl@0
  3332
	aReadStream >> brushColor;
sl@0
  3333
	SetBrushColor(brushColor);
sl@0
  3334
	TInt patternHandle = aReadStream.ReadInt32L();
sl@0
  3335
	if (patternHandle)
sl@0
  3336
		{
sl@0
  3337
		// Brush pattern must be set before style, otherwise there'll be a panic!
sl@0
  3338
		SetBrushPattern(patternHandle);
sl@0
  3339
		}
sl@0
  3340
	DirectGdi::TBrushStyle brushStyle;
sl@0
  3341
	brushStyle = (DirectGdi::TBrushStyle)aReadStream.ReadInt8L();
sl@0
  3342
	SetBrushStyle(brushStyle);
sl@0
  3343
	iBrushPatternUsed = (TBool)aReadStream.ReadUint8L();
sl@0
  3344
	TPoint brushOrigin;
sl@0
  3345
	aReadStream >> brushOrigin;
sl@0
  3346
	SetBrushOrigin(brushOrigin);
sl@0
  3347
	iAutoUpdateJustification = (TBool)aReadStream.ReadUint8L();
sl@0
  3348
	}
sl@0
  3349
sl@0
  3350
sl@0
  3351
/**
sl@0
  3352
Retrieves the currently set brush colour.
sl@0
  3353
sl@0
  3354
@return	The current brush colour.
sl@0
  3355
*/
sl@0
  3356
EXPORT_C TRgb CDirectGdiContext::BrushColor() const
sl@0
  3357
	{	
sl@0
  3358
	return iBrushColor;
sl@0
  3359
	}
sl@0
  3360
sl@0
  3361
sl@0
  3362
/**
sl@0
  3363
Retrieves the currently set pen colour.
sl@0
  3364
sl@0
  3365
@return	The current pen colour.
sl@0
  3366
*/
sl@0
  3367
EXPORT_C TRgb CDirectGdiContext::PenColor() const
sl@0
  3368
	{
sl@0
  3369
	return iPenColor;
sl@0
  3370
	}
sl@0
  3371
sl@0
  3372
/**
sl@0
  3373
Retrieves the currently set text shadow colour.
sl@0
  3374
sl@0
  3375
@return	The current text shadow colour.
sl@0
  3376
*/
sl@0
  3377
EXPORT_C TRgb CDirectGdiContext::TextShadowColor() const
sl@0
  3378
	{
sl@0
  3379
	return iTextShadowColor;
sl@0
  3380
	}
sl@0
  3381
sl@0
  3382
/**
sl@0
  3383
Draws an image based resource which may be generated using non-native rendering API such as OpenGL ES 
sl@0
  3384
or OpenVG. The resource will be drawn at the specified position in its original size with orientation 
sl@0
  3385
according to the specified rotation parameter. The current clipping region applies. The resource can be
sl@0
  3386
drawn rotated using the DirectGdi::TGraphicsRotation enum which defines possible rotation values in 
sl@0
  3387
clockwise degrees.
sl@0
  3388
sl@0
  3389
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
  3390
sl@0
  3391
@param	aPos		The position of the top-left corner of the resource.
sl@0
  3392
@param	aSource		The resource to be drawn.
sl@0
  3393
@param	aRotation	The rotation to be applied to the resource before it is drawn. The default value is DirectGdi::EGraphicsRotationNone.
sl@0
  3394
sl@0
  3395
@pre	Drawing context has been activated on a rendering target. The resource has been fully constructed.
sl@0
  3396
@post	Request to draw resource has been accepted. There is no guarantee that the request has been completed 
sl@0
  3397
		when this method returns.
sl@0
  3398
sl@0
  3399
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3400
*/
sl@0
  3401
EXPORT_C void CDirectGdiContext::DrawResource(
sl@0
  3402
		const TPoint& aPos,
sl@0
  3403
		const RDirectGdiDrawableSource& aSource,
sl@0
  3404
		DirectGdi::TGraphicsRotation aRotation)
sl@0
  3405
	{
sl@0
  3406
	GRAPHICS_TRACE("CDirectGdiContext::DrawResource");
sl@0
  3407
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3408
	
sl@0
  3409
	if (aSource.Handle() != KNullHandle)		
sl@0
  3410
		{
sl@0
  3411
		iEngine->DrawResource(aPos, aSource, aRotation);
sl@0
  3412
		}
sl@0
  3413
	else
sl@0
  3414
		{
sl@0
  3415
		iDriver.SetError(KErrBadHandle);
sl@0
  3416
		}
sl@0
  3417
	}
sl@0
  3418
sl@0
  3419
/**
sl@0
  3420
Draws an image based resource. The resource will be rendered to the given destination rectangle on 
sl@0
  3421
rendering target in its original dimensions with orientation according to the specified rotation parameter. 
sl@0
  3422
Drawing will be clipped to the given destination rectangle. The current clipping region applies. 
sl@0
  3423
sl@0
  3424
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
  3425
sl@0
  3426
@param	aDestRect	Destination rectangle to which the resource will be rendered.
sl@0
  3427
@param	aSource		The resource to be drawn.
sl@0
  3428
@param	aRotation	Rotation to be applied to the resource before it is drawn. Default value is DirectGdi::EGraphicsRotationNone.
sl@0
  3429
sl@0
  3430
@pre	Drawing context has been activated on a rendering target. The resource has been fully constructed.
sl@0
  3431
@post	Request to draw resource has been accepted. There is no guarantee that the request has been completed 
sl@0
  3432
		when this method returns.
sl@0
  3433
sl@0
  3434
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3435
*/
sl@0
  3436
EXPORT_C void CDirectGdiContext::DrawResource(const TRect& aDestRect,
sl@0
  3437
											const RDirectGdiDrawableSource& aSource,
sl@0
  3438
											DirectGdi::TGraphicsRotation aRotation)
sl@0
  3439
	{
sl@0
  3440
	GRAPHICS_TRACE("CDirectGdiContext::DrawResource");
sl@0
  3441
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3442
sl@0
  3443
	if (aSource.Handle() != KNullHandle)		
sl@0
  3444
		{	
sl@0
  3445
		if ((aDestRect.Width() > 0) && (aDestRect.Height() > 0))
sl@0
  3446
			{
sl@0
  3447
			iEngine->DrawResource(aDestRect, aSource, aRotation);
sl@0
  3448
			}
sl@0
  3449
		}
sl@0
  3450
	else
sl@0
  3451
		{
sl@0
  3452
		iDriver.SetError(KErrBadHandle);
sl@0
  3453
		}
sl@0
  3454
	}
sl@0
  3455
sl@0
  3456
sl@0
  3457
/**
sl@0
  3458
Draws an image based resource. The resource is rendered into the given destination rectangle.
sl@0
  3459
Scaling (stretching or compression) applies if the destination rectangle is different from the
sl@0
  3460
source rectangle. The resource orientation is set based on the specified rotation parameter
sl@0
  3461
before scaling and drawing operations are performed.
sl@0
  3462
sl@0
  3463
If the user modifies the content of the resource after issuing a DrawResource() command (from the
sl@0
  3464
same thread), the adaptation must make sure that the user’s operations are serialised within
sl@0
  3465
that thread, for example, DrawResource() is processed before the modify operations. The adaptation
sl@0
  3466
does not guarantee the result if the resource modification is performed from threads other than
sl@0
  3467
the one that issued the DrawResource() command. To achieve a guaranteed result in that case, users
sl@0
  3468
must perform synchronisation between any threads that operate on the resource and issue Finish()
sl@0
  3469
on the driver whenever necessary. When using other renderers or mappings, synchronisation is needed 
sl@0
  3470
even when this is from within the same thread.
sl@0
  3471
sl@0
  3472
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
  3473
sl@0
  3474
@param	aDestRect	The destination rectangle to which the resource will be rendered.
sl@0
  3475
@param	aSource		The resource to draw.
sl@0
  3476
@param	aSrcRect	The source rectangle specifying the area/sub-area of the resource to be rendered.
sl@0
  3477
@param	aRotation	Rotation to be applied to the resource before it is drawn
sl@0
  3478
sl@0
  3479
@pre	The rendering target has been activated. The resource has been fully constructed.
sl@0
  3480
@post	Request to draw an image based resource has been accepted. There is no guarantee that the
sl@0
  3481
		request has been completed when this method returns.
sl@0
  3482
sl@0
  3483
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3484
*/
sl@0
  3485
EXPORT_C void CDirectGdiContext::DrawResource(
sl@0
  3486
		const TRect& aDestRect,
sl@0
  3487
		const RDirectGdiDrawableSource& aSource,
sl@0
  3488
		const TRect& aSrcRect,
sl@0
  3489
		DirectGdi::TGraphicsRotation aRotation)
sl@0
  3490
	{
sl@0
  3491
	GRAPHICS_TRACE("CDirectGdiContext::DrawResource");
sl@0
  3492
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);
sl@0
  3493
	
sl@0
  3494
	if (aSource.Handle() != KNullHandle)		
sl@0
  3495
		{
sl@0
  3496
		if ((aDestRect.Width() > 0) && (aDestRect.Height() > 0)
sl@0
  3497
			&& (aSrcRect.Width() > 0) && (aSrcRect.Height() > 0))
sl@0
  3498
			{
sl@0
  3499
			iEngine->DrawResource(aDestRect, aSource, aSrcRect, aRotation);
sl@0
  3500
			}
sl@0
  3501
		}
sl@0
  3502
	else
sl@0
  3503
		{
sl@0
  3504
		iDriver.SetError(KErrBadHandle);
sl@0
  3505
		}
sl@0
  3506
	}
sl@0
  3507
sl@0
  3508
sl@0
  3509
/**
sl@0
  3510
Draws a non-image based resource. The resource will be rendered into the given destination rectangle.
sl@0
  3511
The current clipping region applies. The adaptation is free to interpret the parameters and may define
sl@0
  3512
their own rules on how to handle the rendering of a non-image based resource.
sl@0
  3513
sl@0
  3514
In the event of a failure, the error state is set to one of the system-wide error codes.
sl@0
  3515
sl@0
  3516
@param	aDestRect	The destination rectangle to which the resource will be rendered.
sl@0
  3517
@param	aSource		The resource.
sl@0
  3518
@param	aParam		Parameters specifying how to draw the resource. 
sl@0
  3519
sl@0
  3520
@pre	The rendering target has been activated. The resource has been fully constructed.
sl@0
  3521
@post	Request to draw a non-image based resource has been accepted. 
sl@0
  3522
		There is no guarantee that the request has been completed when this method returns.
sl@0
  3523
sl@0
  3524
@panic	DGDI 7, if the rendering context has not been activated.
sl@0
  3525
*/
sl@0
  3526
EXPORT_C void CDirectGdiContext::DrawResource(
sl@0
  3527
		const TRect& aDestRect,
sl@0
  3528
		const RDirectGdiDrawableSource& aSource,
sl@0
  3529
		const TDesC8& aParam)
sl@0
  3530
	{
sl@0
  3531
	GRAPHICS_TRACE("CDirectGdiContext::DrawResource");
sl@0
  3532
	GRAPHICS_ASSERT_ALWAYS(iActivated, EDirectGdiPanicContextNotActivated);	
sl@0
  3533
	
sl@0
  3534
	if (aSource.Handle() != KNullHandle)		
sl@0
  3535
		{
sl@0
  3536
		if ((aDestRect.Width() > 0) && (aDestRect.Height() > 0))
sl@0
  3537
			{
sl@0
  3538
			iEngine->DrawResource(aDestRect, aSource, aParam);
sl@0
  3539
			}
sl@0
  3540
		}
sl@0
  3541
	else
sl@0
  3542
		{
sl@0
  3543
		iDriver.SetError(KErrBadHandle);
sl@0
  3544
		}
sl@0
  3545
	}
sl@0
  3546
sl@0
  3547
/**
sl@0
  3548
Retrieves a pointer to an instance of the appropriate extension interface implementation.
sl@0
  3549
sl@0
  3550
@param aInterfaceId Interface identifier of the interface to be retrieved.	
sl@0
  3551
@param aInterface On return, holds the specified interface, or NULL if the interface cannot be found.
sl@0
  3552
sl@0
  3553
@pre    None.
sl@0
  3554
@post   None.
sl@0
  3555
sl@0
  3556
@return KErrNone If the interface is supported, KErrNotSupported otherwise.
sl@0
  3557
 */
sl@0
  3558
EXPORT_C TInt CDirectGdiContext::GetInterface(TUid aInterfaceId, TAny*& aInterface)
sl@0
  3559
	{
sl@0
  3560
	GRAPHICS_TRACE("CDirectGdiContext::GetInterface");
sl@0
  3561
	return iEngine->GetInterface(aInterfaceId, aInterface);
sl@0
  3562
	}
sl@0
  3563
sl@0
  3564
/**
sl@0
  3565
Release the brush pattern's handle, and mark it as no longer used.
sl@0
  3566
*/
sl@0
  3567
void CDirectGdiContext::CleanUpBrushPattern()
sl@0
  3568
	{
sl@0
  3569
	iBrushPattern.Reset();
sl@0
  3570
	iBrushPatternUsed = EFalse;	
sl@0
  3571
	}
sl@0
  3572
sl@0
  3573
/** 
sl@0
  3574
@internalTechnology
sl@0
  3575
sl@0
  3576
Returns the baseline correction associated with this font.
sl@0
  3577
This value is used to alter the underline/strikethrough position applied to linked fonts.
sl@0
  3578
sl@0
  3579
@return The baseline correction value set by the rasterizer; or 0 if not set
sl@0
  3580
*/	
sl@0
  3581
TInt CDirectGdiContext::BaselineCorrection()
sl@0
  3582
	{
sl@0
  3583
	TOpenFontMetrics metrics;
sl@0
  3584
	if (iFont.GetFontMetrics(metrics))
sl@0
  3585
		return metrics.BaselineCorrection();
sl@0
  3586
	else
sl@0
  3587
		return 0;
sl@0
  3588
	}