os/graphics/windowing/windowserver/nga/CLIENT/RGC.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1994-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
// Shells for window server graphics class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <graphics/wsdrawresource.h>
sl@0
    20
#include "../SERVER/w32cmd.h"
sl@0
    21
#include "CLIENT.H"
sl@0
    22
#include "w32comm.h"
sl@0
    23
#include "graphicsresourcewrapper.h"
sl@0
    24
#include <graphics/gdi/gdiconsts.h>
sl@0
    25
#include <graphics/gdi/gdistructs.h>
sl@0
    26
#include "graphics/windowserverconstants.h"
sl@0
    27
sl@0
    28
#define KDefaultShadowColor KRgbGray
sl@0
    29
enum {EPolygonMaxHeaderSize=sizeof(TWsCmdHeader)+sizeof(TWsGcCmdSegmentedDrawPolygonData)};
sl@0
    30
sl@0
    31
//
sl@0
    32
// class CWindowGc::CPimpl
sl@0
    33
//
sl@0
    34
sl@0
    35
NONSHARABLE_STRUCT(CWindowGc::CPimpl): public CBase, public MWsDrawResource
sl@0
    36
/** @internalComponent @released */
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
	enum TStateType
sl@0
    40
	    {
sl@0
    41
	    EStateBrushColor           = 1<<0,
sl@0
    42
	    EStateBrushStyle           = 1<<1,
sl@0
    43
	    EStatePenColor             = 1<<2,
sl@0
    44
	    EStatePenStyle             = 1<<3,
sl@0
    45
	    EStatePenSize              = 1<<4,           
sl@0
    46
	    EStateDrawMode             = 1<<5,
sl@0
    47
	    EStateClippingRect         = 1<<6,
sl@0
    48
        EStateUnderlineStyle       = 1<<7,
sl@0
    49
        EStateStrikethroughStyle   = 1<<8,
sl@0
    50
        EStateWordJustification    = 1<<9,
sl@0
    51
        EStateCharJustification    = 1<<10,
sl@0
    52
	    };
sl@0
    53
sl@0
    54
	CPimpl(CWindowGc& aGc);
sl@0
    55
	void WriteAnyPendingStateChanges();
sl@0
    56
	void ResetPendingState();
sl@0
    57
	void StorePendingStateChange(TStateType aState, const TAny* aValue);
sl@0
    58
	TUint32 GetState() const {return iPendingState;}
sl@0
    59
	void CancelPendingClippingRect();
sl@0
    60
	~CPimpl();
sl@0
    61
public: //from MWsDrawResource
sl@0
    62
	void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
sl@0
    63
		{
sl@0
    64
		iGc.DrawResource(aPos, aSource, aRotation);
sl@0
    65
		}
sl@0
    66
	void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
sl@0
    67
		{
sl@0
    68
		iGc.DrawResource(aDestRect, aSource, aRotation);
sl@0
    69
		}
sl@0
    70
	void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone)
sl@0
    71
		{
sl@0
    72
		iGc.DrawResource(aDestRect, aSource, aSrcRect, aRotation);
sl@0
    73
		}
sl@0
    74
	void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
sl@0
    75
		{
sl@0
    76
		iGc.DrawResource(aDestRect, aSource, aParam);
sl@0
    77
		}
sl@0
    78
public:
sl@0
    79
	CWindowGc& iGc;
sl@0
    80
	CFbsFont* iFont;
sl@0
    81
	TRgb iShadowColor;
sl@0
    82
    TBool iForceWrite;
sl@0
    83
    TBool iClippingRectSet;
sl@0
    84
        
sl@0
    85
private:
sl@0
    86
    TUint32 iPendingState;
sl@0
    87
sl@0
    88
    // Pending state - used to store requested state changes not yet written to wserv
sl@0
    89
    TRgb iPendingBrushColor;
sl@0
    90
	TBrushStyle iPendingBrushStyle;
sl@0
    91
    TRgb iPendingPenColor;
sl@0
    92
    TPenStyle iPendingPenStyle;
sl@0
    93
    TSize iPendingPenSize;
sl@0
    94
    TDrawMode iPendingDrawMode;
sl@0
    95
    TRect iPendingClippingRect;
sl@0
    96
    TFontUnderline iPendingUnderlineStyle;
sl@0
    97
    TFontStrikethrough iPendingStrikethroughStyle;
sl@0
    98
    TWsGcCmdSetJustification iPendingWordJustification;
sl@0
    99
    TWsGcCmdSetJustification iPendingCharJustification;
sl@0
   100
sl@0
   101
    // Current state - values that have actually been written to wserv
sl@0
   102
    TRgb iCurrentBrushColor;
sl@0
   103
	TBrushStyle iCurrentBrushStyle;
sl@0
   104
    TRgb iCurrentPenColor;
sl@0
   105
    TPenStyle iCurrentPenStyle;
sl@0
   106
    TSize iCurrentPenSize;
sl@0
   107
    TDrawMode iCurrentDrawMode;
sl@0
   108
    TFontUnderline iCurrentUnderlineStyle;
sl@0
   109
    TFontStrikethrough iCurrentStrikethroughStyle;
sl@0
   110
    TWsGcCmdSetJustification iCurrentWordJustification;
sl@0
   111
    TWsGcCmdSetJustification iCurrentCharJustification;
sl@0
   112
	};
sl@0
   113
sl@0
   114
CWindowGc::CPimpl::CPimpl(CWindowGc& aGc)
sl@0
   115
	: iGc(aGc), iFont(NULL), iShadowColor(KDefaultShadowColor)
sl@0
   116
	{
sl@0
   117
	ResetPendingState();
sl@0
   118
	}
sl@0
   119
sl@0
   120
CWindowGc::CPimpl::~CPimpl()
sl@0
   121
	{
sl@0
   122
	iFont = NULL;
sl@0
   123
	}
sl@0
   124
sl@0
   125
void CWindowGc::CPimpl::CancelPendingClippingRect()
sl@0
   126
    {
sl@0
   127
    iPendingState &= ~EStateClippingRect;
sl@0
   128
    }
sl@0
   129
sl@0
   130
void CWindowGc::CPimpl::WriteAnyPendingStateChanges()
sl@0
   131
    {
sl@0
   132
    if (iPendingState == 0)
sl@0
   133
        return;
sl@0
   134
    
sl@0
   135
    if (iPendingState & EStateDrawMode)
sl@0
   136
        {
sl@0
   137
        if (iPendingDrawMode != iCurrentDrawMode)
sl@0
   138
            {
sl@0
   139
            iGc.WriteInt(iPendingDrawMode,EWsGcOpSetDrawMode);
sl@0
   140
            iCurrentDrawMode = iPendingDrawMode;
sl@0
   141
            }
sl@0
   142
        }
sl@0
   143
    
sl@0
   144
    if (iPendingState & EStateBrushStyle)
sl@0
   145
        {
sl@0
   146
        if (iPendingBrushStyle != iCurrentBrushStyle)
sl@0
   147
            {
sl@0
   148
            iGc.WriteInt(iPendingBrushStyle,EWsGcOpSetBrushStyle);
sl@0
   149
            iCurrentBrushStyle = iPendingBrushStyle;
sl@0
   150
            }
sl@0
   151
        }
sl@0
   152
sl@0
   153
    if (iPendingState & EStateBrushColor)
sl@0
   154
        {
sl@0
   155
        // Brush colour optimisation more conservative (than for other state changes) because server-side code modifies it without client's knowledge
sl@0
   156
        if (iPendingBrushColor != iCurrentBrushColor || iForceWrite)
sl@0
   157
            {
sl@0
   158
            iGc.WriteInt(iPendingBrushColor.Internal(),EWsGcOpSetBrushColor);
sl@0
   159
            iCurrentBrushColor = iPendingBrushColor;
sl@0
   160
            iForceWrite = EFalse;
sl@0
   161
            }
sl@0
   162
        }
sl@0
   163
sl@0
   164
    if (iPendingState & EStatePenStyle)
sl@0
   165
        {
sl@0
   166
        if (iPendingPenStyle != iCurrentPenStyle)
sl@0
   167
            {
sl@0
   168
            iGc.WriteInt(iPendingPenStyle,EWsGcOpSetPenStyle);
sl@0
   169
            iCurrentPenStyle = iPendingPenStyle;   
sl@0
   170
            }
sl@0
   171
        }
sl@0
   172
        
sl@0
   173
    if (iPendingState & EStatePenColor)
sl@0
   174
        {
sl@0
   175
        if (iPendingPenColor != iCurrentPenColor)
sl@0
   176
            {
sl@0
   177
            iGc.WriteInt(iPendingPenColor.Internal(),EWsGcOpSetPenColor);
sl@0
   178
            iCurrentPenColor = iPendingPenColor;            
sl@0
   179
            }
sl@0
   180
        }
sl@0
   181
    
sl@0
   182
    if (iPendingState & EStateClippingRect)
sl@0
   183
        {
sl@0
   184
        iGc.WriteRect(iPendingClippingRect,EWsGcOpSetClippingRect);
sl@0
   185
        iClippingRectSet = ETrue;
sl@0
   186
        }
sl@0
   187
sl@0
   188
    if (iPendingState & EStateUnderlineStyle)
sl@0
   189
        {
sl@0
   190
        if (iPendingUnderlineStyle != iCurrentUnderlineStyle)
sl@0
   191
            {
sl@0
   192
            iGc.WriteInt(iPendingUnderlineStyle,EWsGcOpSetUnderlineStyle);
sl@0
   193
            iCurrentUnderlineStyle = iPendingUnderlineStyle;            
sl@0
   194
            }
sl@0
   195
        }
sl@0
   196
    
sl@0
   197
    if (iPendingState & EStateStrikethroughStyle)
sl@0
   198
        {
sl@0
   199
        if (iPendingStrikethroughStyle != iCurrentStrikethroughStyle)
sl@0
   200
            {
sl@0
   201
            iGc.WriteInt(iPendingStrikethroughStyle,EWsGcOpSetStrikethroughStyle);
sl@0
   202
            iCurrentStrikethroughStyle = iPendingStrikethroughStyle;
sl@0
   203
            }
sl@0
   204
        }
sl@0
   205
    
sl@0
   206
    if (iPendingState & EStatePenSize)
sl@0
   207
        {
sl@0
   208
        if (iPendingPenSize != iCurrentPenSize)
sl@0
   209
            {
sl@0
   210
            iGc.WriteSize(iPendingPenSize,EWsGcOpSetPenSize);
sl@0
   211
            iCurrentPenSize = iPendingPenSize;
sl@0
   212
            }
sl@0
   213
        }    
sl@0
   214
sl@0
   215
    if (iPendingState & EStateWordJustification)
sl@0
   216
        {
sl@0
   217
        if (iPendingWordJustification.excessWidth != iCurrentWordJustification.excessWidth
sl@0
   218
            || iPendingWordJustification.numGaps != iCurrentWordJustification.numGaps)
sl@0
   219
            {
sl@0
   220
            iGc.Write(&iPendingWordJustification,sizeof(iPendingWordJustification),EWsGcOpSetWordJustification);
sl@0
   221
            iCurrentWordJustification = iPendingWordJustification;
sl@0
   222
            }
sl@0
   223
        }    
sl@0
   224
sl@0
   225
    if (iPendingState & EStateCharJustification)
sl@0
   226
        {
sl@0
   227
        if (iPendingCharJustification.excessWidth != iCurrentCharJustification.excessWidth
sl@0
   228
            || iPendingCharJustification.numGaps != iCurrentCharJustification.numGaps)
sl@0
   229
            {
sl@0
   230
            iGc.Write(&iPendingCharJustification,sizeof(iPendingCharJustification),EWsGcOpSetCharJustification);
sl@0
   231
            iCurrentCharJustification = iPendingCharJustification;
sl@0
   232
            }
sl@0
   233
        }    
sl@0
   234
    
sl@0
   235
    iPendingState = 0;
sl@0
   236
    }
sl@0
   237
sl@0
   238
void CWindowGc::CPimpl::ResetPendingState()
sl@0
   239
    {
sl@0
   240
    // This function should only be called from CWindowGc::Reset()
sl@0
   241
    iForceWrite = EFalse;
sl@0
   242
    iPendingState = 0;
sl@0
   243
sl@0
   244
    iClippingRectSet = EFalse;
sl@0
   245
sl@0
   246
    // The following default values are the same as those used by CFbsBitGc::Reset()
sl@0
   247
    iPendingBrushColor = KRgbWhite;
sl@0
   248
    iPendingBrushStyle = CGraphicsContext::ENullBrush;
sl@0
   249
    iPendingPenColor = KRgbBlack;
sl@0
   250
    iPendingPenStyle = CGraphicsContext::ESolidPen;
sl@0
   251
    iPendingPenSize = TSize(1,1);
sl@0
   252
    iPendingDrawMode = CGraphicsContext::EDrawModePEN;
sl@0
   253
    iPendingUnderlineStyle = EUnderlineOff;    
sl@0
   254
    iPendingStrikethroughStyle = EStrikethroughOff;
sl@0
   255
    iPendingWordJustification.excessWidth = 0;
sl@0
   256
    iPendingWordJustification.numGaps = 0;
sl@0
   257
    iPendingCharJustification.excessWidth = 0;
sl@0
   258
    iPendingCharJustification.numGaps = 0;
sl@0
   259
        
sl@0
   260
    iCurrentBrushColor = iPendingBrushColor;
sl@0
   261
    iCurrentBrushStyle = iPendingBrushStyle;
sl@0
   262
    iCurrentPenColor = iPendingPenColor;
sl@0
   263
    iCurrentPenStyle = iPendingPenStyle;
sl@0
   264
    iCurrentPenSize = iPendingPenSize;    
sl@0
   265
    iCurrentDrawMode = iPendingDrawMode;
sl@0
   266
    iCurrentUnderlineStyle = iPendingUnderlineStyle;
sl@0
   267
    iCurrentStrikethroughStyle = iPendingStrikethroughStyle;
sl@0
   268
    iCurrentWordJustification.excessWidth = iPendingWordJustification.excessWidth;
sl@0
   269
    iCurrentWordJustification.numGaps = iPendingWordJustification.numGaps;
sl@0
   270
    iCurrentCharJustification.excessWidth = iPendingCharJustification.excessWidth;
sl@0
   271
    iCurrentCharJustification.numGaps = iPendingCharJustification.numGaps;
sl@0
   272
    }
sl@0
   273
    
sl@0
   274
void CWindowGc::CPimpl::StorePendingStateChange(TStateType aState, const TAny* aValue)
sl@0
   275
    {
sl@0
   276
    switch (aState)
sl@0
   277
        {
sl@0
   278
        case EStateBrushColor:
sl@0
   279
            iPendingState |= EStateBrushColor;
sl@0
   280
            iPendingBrushColor = *((TRgb*)(aValue));
sl@0
   281
            break;
sl@0
   282
        case EStateBrushStyle:
sl@0
   283
            iPendingState|=EStateBrushStyle;
sl@0
   284
            iPendingBrushStyle = *((TBrushStyle*)(aValue));
sl@0
   285
            break;
sl@0
   286
        case EStatePenColor:
sl@0
   287
            iPendingState|=EStatePenColor;
sl@0
   288
            iPendingPenColor = *((TRgb*)(aValue));
sl@0
   289
            break;
sl@0
   290
        case EStatePenStyle:
sl@0
   291
            iPendingState|=EStatePenStyle;
sl@0
   292
            iPendingPenStyle = *((TPenStyle*)(aValue));
sl@0
   293
            break;
sl@0
   294
        case EStateDrawMode:
sl@0
   295
            iPendingState|=EStateDrawMode;
sl@0
   296
            iPendingDrawMode = *((TDrawMode*)(aValue));
sl@0
   297
            break;
sl@0
   298
        case EStateClippingRect:
sl@0
   299
            iPendingState|=EStateClippingRect;
sl@0
   300
            iPendingClippingRect = *((TRect*)(aValue));
sl@0
   301
            break;
sl@0
   302
        case EStateUnderlineStyle:
sl@0
   303
            iPendingState|=EStateUnderlineStyle;
sl@0
   304
            iPendingUnderlineStyle = *((TFontUnderline*)(aValue));
sl@0
   305
            break;
sl@0
   306
        case EStateStrikethroughStyle:
sl@0
   307
            iPendingState|=EStateStrikethroughStyle;
sl@0
   308
            iPendingStrikethroughStyle= *((TFontStrikethrough*)(aValue));
sl@0
   309
            break;
sl@0
   310
        case EStatePenSize:
sl@0
   311
            iPendingState|=EStatePenSize;
sl@0
   312
            iPendingPenSize = *((TSize*)(aValue));
sl@0
   313
            break;
sl@0
   314
        case EStateWordJustification:
sl@0
   315
            iPendingState|=EStateWordJustification;
sl@0
   316
            iPendingWordJustification = *((TWsGcCmdSetJustification*)(aValue));
sl@0
   317
            break;
sl@0
   318
        case EStateCharJustification:
sl@0
   319
            iPendingState|=EStateCharJustification;
sl@0
   320
            iPendingCharJustification = *((TWsGcCmdSetJustification*)(aValue));
sl@0
   321
            break;
sl@0
   322
        default:
sl@0
   323
            break;
sl@0
   324
        }
sl@0
   325
    }
sl@0
   326
sl@0
   327
//
sl@0
   328
// class CWindowGc
sl@0
   329
//
sl@0
   330
sl@0
   331
EXPORT_C CWindowGc::CWindowGc(CWsScreenDevice *aDevice) : MWsClientClass(aDevice->iBuffer), iPimpl(NULL), iDevice(aDevice)
sl@0
   332
/** Constructor which creates, but does not initialise a graphics context. 
sl@0
   333
sl@0
   334
@param aDevice Any screen device owned by the same session. Its life time 
sl@0
   335
should be at least as long as the gc itself. 
sl@0
   336
@see CWsScreenDevice::CreateContext() */
sl@0
   337
	{}
sl@0
   338
sl@0
   339
EXPORT_C CWindowGc::~CWindowGc()
sl@0
   340
/** Destructor. */
sl@0
   341
	{
sl@0
   342
	if (iBuffer && iWsHandle)
sl@0
   343
		Write(EWsGcOpFree);
sl@0
   344
	delete iPimpl;
sl@0
   345
	}
sl@0
   346
sl@0
   347
void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC &aBuf,TInt opcode,TInt opcodePtr) const
sl@0
   348
	{
sl@0
   349
	if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)))
sl@0
   350
		{
sl@0
   351
		WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr);
sl@0
   352
		}
sl@0
   353
	else
sl@0
   354
		{
sl@0
   355
		Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode);
sl@0
   356
		}
sl@0
   357
	}
sl@0
   358
	
sl@0
   359
void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC8 &aBuf,TInt opcode,TInt opcodePtr) const
sl@0
   360
	{
sl@0
   361
	if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)))
sl@0
   362
		{
sl@0
   363
		WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr);
sl@0
   364
		}
sl@0
   365
	else
sl@0
   366
		{
sl@0
   367
		Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode);
sl@0
   368
		}
sl@0
   369
	}	
sl@0
   370
	
sl@0
   371
EXPORT_C TInt CWindowGc::Construct()
sl@0
   372
/** Completes construction. 
sl@0
   373
sl@0
   374
@return KErrNone if successful, otherwise a leave error. 
sl@0
   375
@panic TW32Panic 17 in debug builds if called on an already constructed object.
sl@0
   376
This function always causes a flush of the window server buffer. */
sl@0
   377
	{
sl@0
   378
	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
sl@0
   379
	iPimpl = new CPimpl(*this);
sl@0
   380
	if (!iPimpl)
sl@0
   381
		return KErrNoMemory;
sl@0
   382
	TInt ret;
sl@0
   383
	if ((ret=iBuffer->WriteReplyWs(EWsClOpCreateGc))<0)
sl@0
   384
		return(ret);
sl@0
   385
	iWsHandle=ret;
sl@0
   386
	return(KErrNone);
sl@0
   387
	}
sl@0
   388
sl@0
   389
EXPORT_C void CWindowGc::Activate(RDrawableWindow &aDevice)
sl@0
   390
/** Activates the context for a given window and updates iDevice with the pointer to the screen device of the screen on which aDevice is found.  
sl@0
   391
sl@0
   392
When drawing is complete, the code using the context should call Deactivate(). 
sl@0
   393
Draw methods invoked after an Activate() will affect the window specified. 
sl@0
   394
A graphics context can only be active for one window at a time. A panic occurs 
sl@0
   395
if a draw function is called before calling this function, or if Activate() 
sl@0
   396
is called twice without an intervening Deactivate().
sl@0
   397
sl@0
   398
@param aWindow The window for which the graphics context is to be activated. */
sl@0
   399
	{
sl@0
   400
	TUint devicePointer = WriteReplyInt(aDevice.WsHandle(),EWsGcOpActivate);
sl@0
   401
	iDevice = (CWsScreenDevice*)devicePointer;
sl@0
   402
	iPimpl->iForceWrite = ETrue; // needed because brush colour set to window background colour in CWsGc::Activate
sl@0
   403
	}
sl@0
   404
sl@0
   405
EXPORT_C void CWindowGc::Deactivate()
sl@0
   406
/** Frees the graphics context to be used with another window. 
sl@0
   407
sl@0
   408
This method should be called when the application has completed drawing to 
sl@0
   409
the window. */
sl@0
   410
	{
sl@0
   411
	iPimpl->ResetPendingState(); // needed because server-side state is reset on deactivation
sl@0
   412
	Write(EWsGcOpDeactivate);
sl@0
   413
	iPimpl->iFont=NULL;
sl@0
   414
	iPimpl->iShadowColor = KDefaultShadowColor;
sl@0
   415
	}
sl@0
   416
sl@0
   417
//====================Functions from GDI.H===============================
sl@0
   418
sl@0
   419
EXPORT_C CGraphicsDevice* CWindowGc::Device() const
sl@0
   420
/** Returns a pointer to the device, more specifically a CWsScreenDevice, for the screen that the WindowGc was last activated on.
sl@0
   421
If the WindowGc has not been activated at all, it then returns the device that was passed to its constructor.
sl@0
   422
sl@0
   423
The user should be careful when calling this function since it can return the screen device of any screen in the system.
sl@0
   424
Hence, the return value of this function will be useful only if the user is aware of how the WindowGc was used before this function is called.
sl@0
   425
@return A pointer to the device for the screen that the WindowGc was last activated on or the device passed at construction*/
sl@0
   426
	{
sl@0
   427
	return(iDevice);
sl@0
   428
	}
sl@0
   429
sl@0
   430
EXPORT_C void CWindowGc::SetOrigin(const TPoint &aPoint)
sl@0
   431
/** Sets the position of the co-ordinate origin. 
sl@0
   432
sl@0
   433
All subsequent drawing operations are then done relative to this origin. The 
sl@0
   434
default origin is (0,0), the top left corner of the window.
sl@0
   435
sl@0
   436
@param aPoint A point for the origin, default (0,0). 
sl@0
   437
@see CGraphicsContext::SetOrigin() */
sl@0
   438
	{
sl@0
   439
	if ( iPimpl->GetState() & CPimpl::EStateClippingRect )
sl@0
   440
	    {
sl@0
   441
	    iPimpl->WriteAnyPendingStateChanges();
sl@0
   442
	    }
sl@0
   443
	WritePoint(aPoint,EWsGcOpSetOrigin);
sl@0
   444
	}
sl@0
   445
sl@0
   446
EXPORT_C void CWindowGc::SetClippingRect(const TRect& aRect)
sl@0
   447
/** Sets a clipping rectangle.
sl@0
   448
sl@0
   449
Graphics drawn to the window are clipped, so that only items which fall within 
sl@0
   450
the rectangle are displayed. 
sl@0
   451
sl@0
   452
Note that clipping is additive. If a clipping region has been set using SetClippingRegion() 
sl@0
   453
then clipping will be to the intersection of that region and this rectangle.
sl@0
   454
sl@0
   455
@param aRect The clipping rectangle in window co-ordinates. Note that this rectangle is 
sl@0
   456
tranformed by the current drawing co-ordinate origin before it is used. 
sl@0
   457
The co-ordinate origin is set using SetOrigin().
sl@0
   458
 
sl@0
   459
@see SetClippingRegion() */
sl@0
   460
	{
sl@0
   461
    TRect rect(aRect);
sl@0
   462
    iPimpl->StorePendingStateChange(CPimpl::EStateClippingRect, &rect);
sl@0
   463
	}
sl@0
   464
sl@0
   465
EXPORT_C void CWindowGc::CancelClippingRect()
sl@0
   466
/** Cancels the clipping rectangle. 
sl@0
   467
sl@0
   468
@see SetClippingRect() */
sl@0
   469
	{
sl@0
   470
	if (iPimpl->GetState() & CPimpl::EStateClippingRect)
sl@0
   471
	    {
sl@0
   472
	    iPimpl->CancelPendingClippingRect();
sl@0
   473
	    }
sl@0
   474
	
sl@0
   475
	if (iPimpl->iClippingRectSet)
sl@0
   476
	    {
sl@0
   477
        Write(EWsGcOpCancelClippingRect);
sl@0
   478
	    }
sl@0
   479
sl@0
   480
	iPimpl->iClippingRectSet = EFalse;
sl@0
   481
	}
sl@0
   482
sl@0
   483
EXPORT_C TInt CWindowGc::SetClippingRegion(const TRegion &aRegion)
sl@0
   484
/** Sets the clipping region.
sl@0
   485
sl@0
   486
Drawing is always clipped to the visible area of a window. The region specified 
sl@0
   487
by this function is in addition to that area.
sl@0
   488
sl@0
   489
This function always causes a flush of the window server buffer.
sl@0
   490
sl@0
   491
@param aRegion The new clipping region in window co-ordinates 
sl@0
   492
as used in SetClippingRect(). The clipping region is transformed by the current 
sl@0
   493
drawing origin before use.
sl@0
   494
sl@0
   495
@return KErrNone if successful, KErrNoMemory if there is insufficient memory 
sl@0
   496
to create the region on the server side, otherwise another error code. 
sl@0
   497
sl@0
   498
@see SetClippingRect() */
sl@0
   499
	{
sl@0
   500
	const TInt regionCount=aRegion.Count();
sl@0
   501
	TPtrC8 ptrRect(reinterpret_cast<const TUint8*>(aRegion.RectangleList()),regionCount*sizeof(TRect));
sl@0
   502
	return(WriteReplyByProvidingRemoteReadAccess(&regionCount,sizeof(regionCount),&ptrRect,EWsGcOpSetClippingRegion));
sl@0
   503
	}
sl@0
   504
sl@0
   505
EXPORT_C void CWindowGc::CancelClippingRegion()
sl@0
   506
/** Cancels the current clipping region. */
sl@0
   507
	{
sl@0
   508
	Write(EWsGcOpCancelClippingRegion);
sl@0
   509
	}
sl@0
   510
sl@0
   511
EXPORT_C void CWindowGc::SetDrawMode(TDrawMode aDrawingMode)
sl@0
   512
/** Sets the drawing mode. 
sl@0
   513
sl@0
   514
This affects the colour that is actually drawn, because it defines the way 
sl@0
   515
that the current screen colour logically combines with the current pen colour 
sl@0
   516
and brush colour. 
sl@0
   517
sl@0
   518
There are 13 drawing modes (see CGraphicsContext::TDrawMode enum), each giving 
sl@0
   519
different logical combinations of pen, brush and screen colours. Each mode 
sl@0
   520
is produced by ORing together different combinations of seven drawing mode 
sl@0
   521
components (see CGraphicsContext::TDrawModeComponents enum).
sl@0
   522
sl@0
   523
The three most important modes are TDrawMode::EDrawModePEN, TDrawMode::EDrawModeNOTSCREEN 
sl@0
   524
and TDrawMode::EDrawModeXOR. The default drawing mode is TDrawMode::EDrawModePEN.
sl@0
   525
sl@0
   526
The drawing mode is over-ridden for line and shape drawing functions when 
sl@0
   527
a wide pen line has been selected. It is forced to TDrawMode::EDrawModePEN. 
sl@0
   528
This is to prevent undesired effects at line joins (vertexes).
sl@0
   529
sl@0
   530
Notes:
sl@0
   531
sl@0
   532
TDrawMode::EDrawModeAND gives a "colour filter" effect. For example:
sl@0
   533
sl@0
   534
ANDing with white gives the original colour 
sl@0
   535
sl@0
   536
ANDing with black gives black 
sl@0
   537
sl@0
   538
TDrawMode::EDrawModeOR gives a "colour boost" effect. For example:
sl@0
   539
sl@0
   540
ORing with black gives the original colour 
sl@0
   541
sl@0
   542
ORing with white gives white 
sl@0
   543
sl@0
   544
TDrawMode::EDrawModeXOR gives an "Exclusive OR" effect. For example:
sl@0
   545
sl@0
   546
white XOR black gives white 
sl@0
   547
sl@0
   548
white XOR white gives black 
sl@0
   549
sl@0
   550
black XOR black gives black
sl@0
   551
sl@0
   552
@param aDrawingMode A drawing mode. 
sl@0
   553
@see CGraphicsContext::SetDrawMode() */
sl@0
   554
	{
sl@0
   555
    iPimpl->StorePendingStateChange(CPimpl::EStateDrawMode, &aDrawingMode);
sl@0
   556
	}
sl@0
   557
sl@0
   558
EXPORT_C void CWindowGc::UseFont(const CFont *aFont)
sl@0
   559
/** Sets this context's font.
sl@0
   560
sl@0
   561
The font is used for text drawing. If the font is already in the font and 
sl@0
   562
bitmap server's memory the GDI will share that copy.
sl@0
   563
sl@0
   564
Note that this function must be called prior to drawing text or the calling 
sl@0
   565
thread will panic.
sl@0
   566
sl@0
   567
@param aFont A device font. 
sl@0
   568
@see CGraphicsContext::UseFont() */
sl@0
   569
	{
sl@0
   570
	if (iPimpl->iFont!=(CFbsFont *)aFont)
sl@0
   571
		{
sl@0
   572
		iPimpl->iFont=(CFbsFont *)aFont;
sl@0
   573
		WriteInt(iPimpl->iFont->Handle(),EWsGcOpUseFont);
sl@0
   574
		}
sl@0
   575
	}
sl@0
   576
sl@0
   577
EXPORT_C void CWindowGc::DiscardFont()
sl@0
   578
/** Discards a font. 
sl@0
   579
sl@0
   580
This frees up the memory used (if the font is not being shared with some other 
sl@0
   581
process).
sl@0
   582
sl@0
   583
Note that if no font is in use when this function is called, then there is no effect.
sl@0
   584
sl@0
   585
@see CGraphicsContext::DiscardFont() */
sl@0
   586
	{
sl@0
   587
	Write(EWsGcOpDiscardFont);
sl@0
   588
	iPimpl->iFont=NULL;
sl@0
   589
	}
sl@0
   590
sl@0
   591
EXPORT_C void CWindowGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
sl@0
   592
/** Sets the underline style for all subsequently drawn text.
sl@0
   593
sl@0
   594
@param aUnderlineStyle The underline style: either on or off.
sl@0
   595
@see CGraphicsContext::SetUnderlineStyle() */
sl@0
   596
	{
sl@0
   597
    iPimpl->StorePendingStateChange(CPimpl::EStateUnderlineStyle, &aUnderlineStyle);	
sl@0
   598
	}
sl@0
   599
sl@0
   600
EXPORT_C void CWindowGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
sl@0
   601
/** Sets the strikethrough style for all subsequently drawn text.
sl@0
   602
sl@0
   603
@param aStrikethroughStyle The strikethrough style: either on or off. 
sl@0
   604
@see CGraphicsContext::SetStrikethroughStyle() */
sl@0
   605
	{
sl@0
   606
	iPimpl->StorePendingStateChange(CPimpl::EStateStrikethroughStyle, &aStrikethroughStyle);
sl@0
   607
	}
sl@0
   608
sl@0
   609
void CWindowGc::SetJustification(TInt aExcessWidth,TInt aNumGaps, TInt aOpcode)
sl@0
   610
	{
sl@0
   611
	TWsGcCmdSetJustification justification;
sl@0
   612
sl@0
   613
	justification.excessWidth=aExcessWidth;
sl@0
   614
	justification.numGaps=aNumGaps;
sl@0
   615
sl@0
   616
	if (aOpcode == EWsGcOpSetWordJustification)
sl@0
   617
	    {
sl@0
   618
        iPimpl->StorePendingStateChange(CPimpl::EStateWordJustification, &justification);
sl@0
   619
	    }
sl@0
   620
	else if (aOpcode == EWsGcOpSetCharJustification)
sl@0
   621
	    {
sl@0
   622
        iPimpl->StorePendingStateChange(CPimpl::EStateCharJustification, &justification);
sl@0
   623
	    }
sl@0
   624
	}
sl@0
   625
sl@0
   626
EXPORT_C void CWindowGc::SetWordJustification(TInt aExcessWidth,TInt aNumGaps)
sl@0
   627
/** Sets word justification.
sl@0
   628
sl@0
   629
This function is particularly useful for doing WYSIWYG underlining or strikethrough, 
sl@0
   630
as it ensures that the lines extend correctly into the gaps between words. It is not 
sl@0
   631
intended for regular use by developers.
sl@0
   632
sl@0
   633
@param aExcessWidth The excess width (in pixels) to be distributed between 
sl@0
   634
the specified number of gaps (starting immediately) 
sl@0
   635
@param aNumGaps The number of gaps between words 
sl@0
   636
@see CGraphicsContext::SetWordJustification() */
sl@0
   637
	{
sl@0
   638
	SetJustification(aExcessWidth, aNumGaps, EWsGcOpSetWordJustification);
sl@0
   639
	}
sl@0
   640
sl@0
   641
EXPORT_C void CWindowGc::SetCharJustification(TInt aExcessWidth,TInt aNumChars)
sl@0
   642
/** Sets the character justification.
sl@0
   643
sl@0
   644
This function is used primarily to get accurate WYSIWYG, and is not intended 
sl@0
   645
for regular use by developers.
sl@0
   646
sl@0
   647
The text line that is to be justified has a certain number of characters (this 
sl@0
   648
includes the spaces between the words). It also has a distance (in pixels) 
sl@0
   649
between the end of the last word and the actual end of the line (right hand 
sl@0
   650
margin, usually). These excess width pixels are distributed amongst all the 
sl@0
   651
characters, increasing the gaps between them, to achieve full justification 
sl@0
   652
of the text line.
sl@0
   653
sl@0
   654
This function is particularly useful for WYSIWYG underlining or strikethrough, 
sl@0
   655
as it ensures that the lines extend into the gaps between characters.
sl@0
   656
sl@0
   657
See CGraphicsContext::SetCharJustification() for more information.
sl@0
   658
sl@0
   659
@param aExcessWidth The excess width (in pixels) to be distributed between 
sl@0
   660
the specified number of characters. 
sl@0
   661
@param aNumChars The number of characters involved 
sl@0
   662
@see CGraphicsContext::SetCharJustification() */
sl@0
   663
	{
sl@0
   664
	SetJustification(aExcessWidth, aNumChars, EWsGcOpSetCharJustification);
sl@0
   665
	}
sl@0
   666
sl@0
   667
EXPORT_C void CWindowGc::SetPenColor(const TRgb &aColor)
sl@0
   668
/** Sets the pen colour.
sl@0
   669
sl@0
   670
The effective pen colour depends on the drawing mode (see SetDrawMode()).
sl@0
   671
sl@0
   672
The default pen colour is black.
sl@0
   673
sl@0
   674
@param aColor The RGB colour for the pen. 
sl@0
   675
@see CGraphicsContext::SetPenColor() */
sl@0
   676
	{
sl@0
   677
	TRgb color = aColor;
sl@0
   678
    iPimpl->StorePendingStateChange(CPimpl::EStatePenColor, &color);
sl@0
   679
	}
sl@0
   680
sl@0
   681
EXPORT_C void CWindowGc::SetPenStyle(TPenStyle aPenStyle)
sl@0
   682
/** Sets the line drawing style for the pen. 
sl@0
   683
sl@0
   684
The pen is used when drawing lines and for the outline of filled shapes. There 
sl@0
   685
are 6 pen styles (see CGraphicsContext::TPenStyle enum). If no pen style is 
sl@0
   686
set, the default is TPenStyle::ESolidPen.
sl@0
   687
sl@0
   688
To use a pen style, its full context must be given, e.g. for a null pen: CGraphicsContext::TPenStyle::ENullPen.
sl@0
   689
sl@0
   690
@param aPenStyle A pen style. 
sl@0
   691
@see CGraphicsContext::SetPenStyle() */
sl@0
   692
	{
sl@0
   693
	iPimpl->StorePendingStateChange(CPimpl::EStatePenStyle, &aPenStyle);
sl@0
   694
	}
sl@0
   695
sl@0
   696
EXPORT_C void CWindowGc::SetPenSize(const TSize& aSize)
sl@0
   697
/** Sets the line drawing size for the pen.
sl@0
   698
sl@0
   699
Lines of size greater than one pixel are drawn with rounded ends that extend 
sl@0
   700
beyond the end points, (as if the line is drawn using a circular pen tip of 
sl@0
   701
the specified size). Rounded ends of lines drawn with a wide pen are always 
sl@0
   702
drawn in TDrawMode::EDrawModePEN mode, overriding whatever mode has been set 
sl@0
   703
using SetDrawMode().
sl@0
   704
sl@0
   705
@param aSize A line size, the default being 1 pixel. 
sl@0
   706
@see CGraphicsContext::SetPenSize() */
sl@0
   707
	{
sl@0
   708
	TSize size(aSize);
sl@0
   709
	iPimpl->StorePendingStateChange(CPimpl::EStatePenSize, &size);
sl@0
   710
	}
sl@0
   711
sl@0
   712
EXPORT_C void CWindowGc::SetBrushColor(const TRgb &aColor)
sl@0
   713
/** Sets the brush colour. 
sl@0
   714
sl@0
   715
The effective brush colour depends on the drawing mode (see SetDrawMode()). 
sl@0
   716
If no brush colour has been set, it defaults to white. However the default 
sl@0
   717
brush style is null, so when drawing to a window, the default appears to be 
sl@0
   718
the window's background colour.
sl@0
   719
sl@0
   720
@param aColor The RGB colour for the brush. 
sl@0
   721
@see CGraphicsContext::SetBrushColor() */
sl@0
   722
	{
sl@0
   723
	TRgb color = aColor;
sl@0
   724
    iPimpl->StorePendingStateChange(CPimpl::EStateBrushColor, &color);
sl@0
   725
	}
sl@0
   726
sl@0
   727
EXPORT_C void CWindowGc::SetBrushStyle(TBrushStyle aBrushStyle)
sl@0
   728
/** Sets the line drawing style for the brush.
sl@0
   729
sl@0
   730
The GDI provides ten brush styles, including six built-in hatching patterns 
sl@0
   731
(see CGraphicsContext::TBrushStyle).
sl@0
   732
sl@0
   733
Use TBrushStyle::ENullBrush to draw the outline of a fillable shape on its 
sl@0
   734
own, without filling.
sl@0
   735
sl@0
   736
If the TBrushStyle::EPatternedBrush style is set, but no bitmap pattern has 
sl@0
   737
been selected using UseBrushPattern(), then the brush defaults to TBrushStyle::ENullBrush.
sl@0
   738
sl@0
   739
Hatching lines are done in the current brush colour, set using SetBrushColor(). 
sl@0
   740
Hatching can be overlaid on other graphics. The hatching pattern starts at 
sl@0
   741
the brush origin, set using SetBrushOrigin().
sl@0
   742
sl@0
   743
@param aBrushStyle The brush style. 
sl@0
   744
@see CGraphicsContext::SetBrushStyle() */
sl@0
   745
	{
sl@0
   746
	iPimpl->StorePendingStateChange(CPimpl::EStateBrushStyle, &aBrushStyle);
sl@0
   747
	}
sl@0
   748
EXPORT_C void CWindowGc::SetBrushOrigin(const TPoint &aOrigin)
sl@0
   749
/** Sets the brush pattern origin. 
sl@0
   750
sl@0
   751
This specifies the position of the pixel in the top left corner of a reference 
sl@0
   752
pattern tile, (in absolute device co-ordinates). Other copies of the pattern 
sl@0
   753
tile are then drawn around the reference one. Thus the brush origin can be 
sl@0
   754
set as the top left corner of a shape.
sl@0
   755
sl@0
   756
The brush pattern may be a built-in style (see SetBrushStyle()), or a bitmap. 
sl@0
   757
To use a bitmap, the brush must have a pattern set (see UseBrushPattern()) 
sl@0
   758
and the brush style must be set to TBrushStyle::EPatternedBrush.
sl@0
   759
sl@0
   760
Notes:
sl@0
   761
sl@0
   762
If SetBrushOrigin() is not used, then the origin defaults to (0,0).
sl@0
   763
sl@0
   764
This brush origin remains in effect for all fillable shapes drawn subsequently, 
sl@0
   765
until a new brush origin is set. Shapes can thus be considered as windows 
sl@0
   766
onto a continuous pattern field (covering the whole clipping region of a screen 
sl@0
   767
device, or the whole device area of a printer).
sl@0
   768
sl@0
   769
@param aOrigin The origin point for the brush. 
sl@0
   770
@see CGraphicsContext::SetBrushOrigin() */
sl@0
   771
	{
sl@0
   772
	WritePoint(aOrigin,EWsGcOpSetBrushOrigin);
sl@0
   773
	}
sl@0
   774
sl@0
   775
EXPORT_C void CWindowGc::UseBrushPattern(const CFbsBitmap *aDevice)
sl@0
   776
/** Sets the brush pattern to the specified bitmap. 
sl@0
   777
sl@0
   778
For the brush to actually use the bitmap, TBrushStyle::EPatternedBrush must 
sl@0
   779
be used to set the brush style (see SetBrushStyle()). When the brush pattern 
sl@0
   780
is no longer required, use DiscardBrushPattern() to free up the memory used, 
sl@0
   781
(if the bitmap is not being shared). If UseBrushPattern() is used again without 
sl@0
   782
using DiscardBrushPattern() then the previous pattern is discarded automatically.
sl@0
   783
sl@0
   784
Notes:
sl@0
   785
sl@0
   786
When loading a bitmap, the GDI checks to see if the bitmap is already in memory. 
sl@0
   787
If the bitmap is already there, then that copy is shared.
sl@0
   788
sl@0
   789
The brush does not need to have a pattern set at all. There are several built-in 
sl@0
   790
hatching patterns, which can be selected using SetBrushStyle().
sl@0
   791
sl@0
   792
@param aDevice A bitmap pattern for the brush 
sl@0
   793
@see CGraphicsContext::UseBrushPattern() */
sl@0
   794
	{
sl@0
   795
	WriteInt(aDevice->Handle(),EWsGcOpUseBrushPattern);
sl@0
   796
	AddToBitmapArray(aDevice->Handle());
sl@0
   797
	}
sl@0
   798
sl@0
   799
EXPORT_C void CWindowGc::DiscardBrushPattern()
sl@0
   800
/** Discards a non-built-in brush pattern. 
sl@0
   801
sl@0
   802
This frees up the memory used for the bitmap, if it is not being shared by 
sl@0
   803
another process.
sl@0
   804
sl@0
   805
If no brush pattern has been set when this function is called, it has no effect.
sl@0
   806
sl@0
   807
@see CGraphicsContext::DiscardBrushPattern() */
sl@0
   808
	{
sl@0
   809
	Write(EWsGcOpDiscardBrushPattern);
sl@0
   810
	}
sl@0
   811
sl@0
   812
EXPORT_C void CWindowGc::Plot(const TPoint &aPoint)
sl@0
   813
/** Draws a single point. 
sl@0
   814
sl@0
   815
The point is drawn with the current pen settings using the current drawing 
sl@0
   816
mode.
sl@0
   817
sl@0
   818
Note: if the pen size is greater than one pixel, a filled circle of the current 
sl@0
   819
pen colour is drawn, with the pen size as the diameter and the plotted point 
sl@0
   820
as the centre. If the pen size is an even number of pixels, the extra pixels 
sl@0
   821
are drawn below and to the right of the centre. See SetPenSize().
sl@0
   822
sl@0
   823
@param aPoint The point to be drawn. 
sl@0
   824
@see CGraphicsContext::Plot() */
sl@0
   825
	{
sl@0
   826
	iPimpl->WriteAnyPendingStateChanges();
sl@0
   827
	WritePoint(aPoint,EWsGcOpPlot);
sl@0
   828
	}
sl@0
   829
sl@0
   830
EXPORT_C void CWindowGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2)
sl@0
   831
/** Draws a straight line between two points.
sl@0
   832
sl@0
   833
@param aPoint1 The point at the start of the line. 
sl@0
   834
@param aPoint2 The point at the end of the line. 
sl@0
   835
@see CGraphicsContext::DrawLine() */
sl@0
   836
	{
sl@0
   837
	iPimpl->WriteAnyPendingStateChanges();
sl@0
   838
	TWsGcCmdDrawLine drawLine(aPoint1,aPoint2);
sl@0
   839
	Write(&drawLine,sizeof(drawLine),EWsGcOpDrawLine);
sl@0
   840
	}
sl@0
   841
sl@0
   842
EXPORT_C void CWindowGc::MoveTo(const TPoint &aPoint)
sl@0
   843
/** Moves the internal drawing position relative to the co-ordinate origin, without 
sl@0
   844
drawing a line.
sl@0
   845
sl@0
   846
A subsequent call to DrawLineTo() or DrawLineBy() will then use the new internal 
sl@0
   847
drawing position as the start point for the line drawn.
sl@0
   848
sl@0
   849
Notes:
sl@0
   850
sl@0
   851
The operations DrawLine(), DrawLineTo(), DrawLineBy() and DrawPolyline() also 
sl@0
   852
change the internal drawing position to the last point of the drawn line(s).
sl@0
   853
sl@0
   854
The internal drawing position is set to the co-ordinate origin if no drawing 
sl@0
   855
or moving operations have yet taken place.
sl@0
   856
sl@0
   857
@param aPoint The point to move the internal drawing position to. 
sl@0
   858
@see CGraphicsContext::MoveTo()
sl@0
   859
@see CGraphicsContext::MoveBy() */
sl@0
   860
	{
sl@0
   861
	WritePoint(aPoint,EWsGcOpMoveTo);
sl@0
   862
	}
sl@0
   863
sl@0
   864
EXPORT_C void CWindowGc::MoveBy(const TPoint &aPoint)
sl@0
   865
/** Moves the internal drawing position by a vector, without drawing a line.
sl@0
   866
sl@0
   867
The internal drawing position is moved relative to its current co-ordinates.
sl@0
   868
sl@0
   869
@param aPoint The vector to move the internal drawing position by. 
sl@0
   870
@see CGraphicsContext::MoveBy()
sl@0
   871
@see CGraphicsContext::MoveTo() */
sl@0
   872
	{
sl@0
   873
	WritePoint(aPoint,EWsGcOpMoveBy);
sl@0
   874
	}
sl@0
   875
sl@0
   876
EXPORT_C void CWindowGc::DrawLineTo(const TPoint &aPoint)
sl@0
   877
/** Draws a straight line from the current internal drawing position to a point.
sl@0
   878
sl@0
   879
@param aPoint The point at the end of the line. 
sl@0
   880
@see CGraphicsContext::DrawLineTo() */
sl@0
   881
	{
sl@0
   882
	iPimpl->WriteAnyPendingStateChanges();
sl@0
   883
	WritePoint(aPoint,EWsGcOpDrawTo);
sl@0
   884
	}
sl@0
   885
sl@0
   886
EXPORT_C void CWindowGc::DrawLineBy(const TPoint &aPoint)
sl@0
   887
/** Draws a straight line relative to the current internal drawing position, using 
sl@0
   888
a vector.
sl@0
   889
sl@0
   890
The start point of the line is the current internal drawing position. The 
sl@0
   891
vector aVector is added to the internal drawing position to give the end point 
sl@0
   892
of the line
sl@0
   893
sl@0
   894
@param aPoint The vector to add to the current internal drawing position, 
sl@0
   895
giving the end point of the line. 
sl@0
   896
@see CGraphicsContext::DrawLineBy() */
sl@0
   897
	{
sl@0
   898
	iPimpl->WriteAnyPendingStateChanges();
sl@0
   899
	WritePoint(aPoint,EWsGcOpDrawBy);
sl@0
   900
	}
sl@0
   901
sl@0
   902
void CWindowGc::doDrawPolyLine(const CArrayFix<TPoint> *aPointArray, const TPoint* aPointList,TInt aNumPoints)
sl@0
   903
	{
sl@0
   904
	TWsGcOpcodes opcode=EWsGcOpDrawPolyLine;
sl@0
   905
	TWsGcCmdDrawPolyLine polyLine;
sl@0
   906
	TInt maxBufLen=(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(polyLine))/sizeof(TPoint);
sl@0
   907
	TInt sent=0;
sl@0
   908
	while(sent<aNumPoints)
sl@0
   909
		{
sl@0
   910
		TInt availableLen;
sl@0
   911
		const TPoint *ptr;
sl@0
   912
		if (aPointArray)
sl@0
   913
			{
sl@0
   914
			ptr=&(*aPointArray)[sent];
sl@0
   915
			availableLen=aPointArray->End(sent)-ptr;
sl@0
   916
			}
sl@0
   917
		else
sl@0
   918
			{
sl@0
   919
			ptr=aPointList+sent;
sl@0
   920
			availableLen=aNumPoints-sent;
sl@0
   921
			}
sl@0
   922
		polyLine.numPoints=Min(availableLen,maxBufLen);
sl@0
   923
		sent+=polyLine.numPoints;
sl@0
   924
		polyLine.more=(sent!=aNumPoints);
sl@0
   925
		Write(&polyLine,sizeof(polyLine),ptr,polyLine.numPoints*sizeof(TPoint),opcode);
sl@0
   926
		polyLine.last=ptr[polyLine.numPoints-1];
sl@0
   927
		opcode=EWsGcOpDrawPolyLineContinued;
sl@0
   928
		} 
sl@0
   929
	}
sl@0
   930
sl@0
   931
EXPORT_C void CWindowGc::DrawPolyLine(const TPoint* aPointList,TInt aNumPoints)
sl@0
   932
/** Draws a polyline using points in a list. 
sl@0
   933
sl@0
   934
A polyline is a series of concatenated straight lines joining a set of points.
sl@0
   935
sl@0
   936
@param aPointList Pointer to a list of points on the polyline. 
sl@0
   937
@param aNumPoints The number of points in the point list. 
sl@0
   938
@see CGraphicsContext::DrawPolyLine() */
sl@0
   939
	{
sl@0
   940
	iPimpl->WriteAnyPendingStateChanges();
sl@0
   941
	doDrawPolyLine(NULL,aPointList,aNumPoints);
sl@0
   942
	}
sl@0
   943
sl@0
   944
EXPORT_C void CWindowGc::DrawPolyLine(const CArrayFix<TPoint> *aPointArray)
sl@0
   945
/** Draws a polyline using points in an array. 
sl@0
   946
sl@0
   947
A polyline is a series of concatenated straight lines joining a set of points.
sl@0
   948
sl@0
   949
@param aPointArray An array containing the points on the polyline. 
sl@0
   950
@see CGraphicsContext::DrawPolyLine() */
sl@0
   951
	{
sl@0
   952
   	iPimpl->WriteAnyPendingStateChanges();
sl@0
   953
	doDrawPolyLine(aPointArray,NULL,aPointArray->Count());
sl@0
   954
	}
sl@0
   955
sl@0
   956
TInt CWindowGc::doDrawPolygon(const CArrayFix<TPoint> *aPointArray,const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule)
sl@0
   957
	{
sl@0
   958
	if (aNumPoints<=0)
sl@0
   959
		return(KErrNone);
sl@0
   960
	TWsGcCmdSegmentedDrawPolygonData polyData;
sl@0
   961
	polyData.index=0;
sl@0
   962
	TInt maxBufLen=(iBuffer->BufferSize()-EPolygonMaxHeaderSize)/sizeof(TPoint);
sl@0
   963
	FOREVER
sl@0
   964
		{
sl@0
   965
		const TPoint *ptr;
sl@0
   966
		TInt availableLen;
sl@0
   967
		if (aPointArray)
sl@0
   968
			{
sl@0
   969
			ptr=&(*aPointArray)[polyData.index];
sl@0
   970
			availableLen=aPointArray->End(polyData.index)-ptr;
sl@0
   971
			}
sl@0
   972
		else
sl@0
   973
			{
sl@0
   974
			ptr=aPointList+polyData.index;
sl@0
   975
			availableLen=aNumPoints-polyData.index;
sl@0
   976
			}
sl@0
   977
		polyData.numPoints=Min(availableLen,maxBufLen);
sl@0
   978
		if (polyData.index==0)	// First time around
sl@0
   979
			{
sl@0
   980
			if (polyData.numPoints==aNumPoints)	// Can it be done in one go?
sl@0
   981
				{
sl@0
   982
				TWsGcCmdDrawPolygon drawPolygon;
sl@0
   983
				drawPolygon.numPoints=aNumPoints;
sl@0
   984
				drawPolygon.fillRule=aFillRule;
sl@0
   985
				Write(&drawPolygon,sizeof(drawPolygon),ptr,aNumPoints*sizeof(TPoint),EWsGcOpDrawPolygon);
sl@0
   986
				break;
sl@0
   987
				}
sl@0
   988
			TWsGcCmdStartSegmentedDrawPolygon start;
sl@0
   989
			start.totalNumPoints=aNumPoints;
sl@0
   990
			TInt err=WriteReply(&start,sizeof(start),EWsGcOpStartSegmentedDrawPolygon);
sl@0
   991
			if (err!=KErrNone)
sl@0
   992
				return(err);
sl@0
   993
			}
sl@0
   994
		Write(&polyData,sizeof(polyData),ptr,polyData.numPoints*sizeof(TPoint),EWsGcOpSegmentedDrawPolygonData);
sl@0
   995
		polyData.index+=polyData.numPoints;
sl@0
   996
		if (polyData.index==aNumPoints)
sl@0
   997
			{
sl@0
   998
			TWsGcCmdDrawSegmentedPolygon draw;
sl@0
   999
			draw.fillRule=aFillRule;
sl@0
  1000
			Write(&draw,sizeof(draw),EWsGcOpDrawSegmentedPolygon);
sl@0
  1001
			break;
sl@0
  1002
			}
sl@0
  1003
		}
sl@0
  1004
	return(KErrNone);
sl@0
  1005
	}
sl@0
  1006
sl@0
  1007
EXPORT_C TInt CWindowGc::DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule)
sl@0
  1008
/** Draws and fills a polygon using points defined in a list.
sl@0
  1009
sl@0
  1010
The first TPoint in the list defines the start of the first side of the polygon. 
sl@0
  1011
The second TPoint defines the second vertex (the end point of the first side 
sl@0
  1012
and the start point of the second side) and so on. The final side of the polygon 
sl@0
  1013
is drawn using the last TPoint from the array or list, and the line drawn 
sl@0
  1014
to the start point of the first side.
sl@0
  1015
sl@0
  1016
Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate 
sl@0
  1017
(the default), or TFillRule::EWinding. To explain the difference between these 
sl@0
  1018
rules, the concept of a winding number needs to be introduced. The area outside 
sl@0
  1019
any of the loops of the polygon has a winding number of zero, and is never 
sl@0
  1020
filled. An inside a loop which is bounded by an area with winding number 0 
sl@0
  1021
has a winding number of 1. If an area is within a loop that is bounded by 
sl@0
  1022
an area with winding number 1, e.g. a loop within a loop, has a winding number 
sl@0
  1023
of 2, and so on.
sl@0
  1024
sl@0
  1025
The filling of a polygon proceeds according to this algorithm:
sl@0
  1026
sl@0
  1027
If aFillRule is TFillRule::EAlternate (default) and it has an odd winding 
sl@0
  1028
number, then fill the surrounding area.
sl@0
  1029
sl@0
  1030
If aFillRule is TFillRule::EWinding and it has a winding number greater than 
sl@0
  1031
zero, then fill the surrounding area.
sl@0
  1032
sl@0
  1033
This function always causes a flush of the window server buffer.
sl@0
  1034
sl@0
  1035
@param aPointList Pointer to a list of points, specifying the vertices of 
sl@0
  1036
the polygon. 
sl@0
  1037
@param aNumPoints The number of points in the vertex list 
sl@0
  1038
@param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding. 
sl@0
  1039
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
  1040
codes. 
sl@0
  1041
@see CGraphicsContext::DrawPolygon() */
sl@0
  1042
	{
sl@0
  1043
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1044
	return(doDrawPolygon(NULL,aPointList,aNumPoints,aFillRule));
sl@0
  1045
	}
sl@0
  1046
sl@0
  1047
EXPORT_C TInt CWindowGc::DrawPolygon(const CArrayFix<TPoint> *aPointArray,TFillRule aFillRule)
sl@0
  1048
/** Draws and fills a polygon using points defined in an array.
sl@0
  1049
sl@0
  1050
The first TPoint in the array defines the start of the first side of the polygon. 
sl@0
  1051
The second TPoint defines the second vertex (the end point of the first side 
sl@0
  1052
and the start point of the second side) and so on. The final side of the polygon 
sl@0
  1053
is drawn using the last TPoint from the array or list, and the line drawn 
sl@0
  1054
to the start point of the first side.
sl@0
  1055
sl@0
  1056
Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate 
sl@0
  1057
(the default), or TFillRule::EWinding. To explain the difference between these 
sl@0
  1058
rules, the concept of a winding number needs to be introduced. The area outside 
sl@0
  1059
any of the loops of the polygon has a winding number of zero, and is never 
sl@0
  1060
filled. An inside a loop which is bounded by an area with winding number 0 
sl@0
  1061
has a winding number of 1. If an area is within a loop that is bounded by 
sl@0
  1062
an area with winding number 1, e.g. a loop within a loop, has a winding number 
sl@0
  1063
of 2, and so on.
sl@0
  1064
sl@0
  1065
The filling of a polygon proceeds according to this algorithm:
sl@0
  1066
sl@0
  1067
If aFillRule is TFillRule::EAlternate (default) and it has an odd winding 
sl@0
  1068
number, then fill the surrounding area.
sl@0
  1069
sl@0
  1070
If aFillRule is TFillRule::EWinding and it has a winding number greater than 
sl@0
  1071
zero, then fill the surrounding area.
sl@0
  1072
sl@0
  1073
This function always causes a flush of the window server buffer.
sl@0
  1074
sl@0
  1075
@param aPointArray An array of points, specifying the vertices of the polygon. 
sl@0
  1076
@param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding. 
sl@0
  1077
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
  1078
codes. 
sl@0
  1079
@see CGraphicsContext::DrawPolygon() */
sl@0
  1080
	{
sl@0
  1081
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1082
	return(doDrawPolygon(aPointArray,NULL,aPointArray->Count(),aFillRule));
sl@0
  1083
	}
sl@0
  1084
sl@0
  1085
void CWindowGc::DrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd, TInt aOpcode)
sl@0
  1086
	{
sl@0
  1087
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1088
	TWsGcCmdDrawArcOrPie cmd(aRect,aStart,aEnd);
sl@0
  1089
	Write(&cmd,sizeof(cmd),aOpcode);
sl@0
  1090
	}
sl@0
  1091
sl@0
  1092
EXPORT_C void CWindowGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
sl@0
  1093
/** Draws an arc (a portion of an ellipse).
sl@0
  1094
sl@0
  1095
The point aStart is used to define one end of a line from the geometric centre 
sl@0
  1096
of the ellipse. The point of intersection between this line and the ellipse 
sl@0
  1097
defines the start point of the arc. The point aEnd is used to define one end 
sl@0
  1098
of a second line from the geometric centre of the ellipse. The point of intersection 
sl@0
  1099
between this line and the ellipse defines the end point of the arc. The pixels 
sl@0
  1100
at both the start point and the end point are drawn.
sl@0
  1101
sl@0
  1102
The arc itself is the segment of the ellipse in an anti-clockwise direction 
sl@0
  1103
from the start point to the end point.
sl@0
  1104
sl@0
  1105
Notes
sl@0
  1106
sl@0
  1107
A rectangle is used in the construction of the ellipse of which the arc is 
sl@0
  1108
a segment. This rectangle is passed as an argument of type TRect.
sl@0
  1109
sl@0
  1110
A wide line arc is drawn with the pixels distributed either side of a true 
sl@0
  1111
ellipse, in such a way that the outer edge of the line would touch the edge 
sl@0
  1112
of the construction rectangle. In other words, the ellipse used to construct 
sl@0
  1113
it is slightly smaller than that for a single pixel line size.
sl@0
  1114
sl@0
  1115
If aStart or aEnd are the ellipse centre then the line that defines the start/end 
sl@0
  1116
of the arc defaults to one extending vertically above the centre point.
sl@0
  1117
sl@0
  1118
If aStart and aEnd are the same point, or points on the same line through 
sl@0
  1119
the ellipse centre then a complete unfilled ellipse is drawn.
sl@0
  1120
sl@0
  1121
Line drawing is subject to pen colour, width and style and draw mode
sl@0
  1122
sl@0
  1123
@param aRect The rectangle in which to draw the ellipse (of which the arc is 
sl@0
  1124
a segment).
sl@0
  1125
@param aStart A point to define the start of the arc.
sl@0
  1126
@param aEnd A point to define the end of the arc.
sl@0
  1127
@see CGraphicsContext::DrawArc() */
sl@0
  1128
	{
sl@0
  1129
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1130
	DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawArc);
sl@0
  1131
	}
sl@0
  1132
sl@0
  1133
EXPORT_C void CWindowGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
sl@0
  1134
/** Draws and fills a pie-shaped slice of an ellipse.
sl@0
  1135
sl@0
  1136
Outlines are subject to the current pen colour, width, style and draw mode. 
sl@0
  1137
Set the pen to ENullPen for no outline. The fill is subject to brush style 
sl@0
  1138
(colour, hash or pattern), the origin and the current drawing mode. Set the 
sl@0
  1139
brush to ENullBrush for no fill.
sl@0
  1140
sl@0
  1141
The point aStart is used to define one end of a line to the centre of the 
sl@0
  1142
ellipse. The point of intersection between this line and the ellipse defines 
sl@0
  1143
the start point of the arc bounding the pie slice. The point aEnd is used 
sl@0
  1144
to define one end of a second line to the centre of the ellipse. The point 
sl@0
  1145
of intersection between this line and the ellipse defines the end point of 
sl@0
  1146
the arc bounding the pie slice. The pixels at the end point are not drawn.
sl@0
  1147
sl@0
  1148
The pie slice itself is the area bounded by: the arc of the ellipse in an 
sl@0
  1149
anticlockwise direction from the start point to the end point; the straight 
sl@0
  1150
line from the start point from the geometric centre of the ellipse; the 
sl@0
  1151
straight line from the end point from the geometric centre of the ellipse.
sl@0
  1152
sl@0
  1153
The line drawn by the pen goes inside the rectangle given by the aRect argument.
sl@0
  1154
sl@0
  1155
Notes:
sl@0
  1156
sl@0
  1157
A rectangle is used in the construction of the pie slice. This rectangle is 
sl@0
  1158
passed as an argument of type TRect. The curved edge of the pie slice is an 
sl@0
  1159
arc of an ellipse constructed within the rectangle.
sl@0
  1160
sl@0
  1161
A wide line edged pie slice has the arc drawn with the pixels distributed 
sl@0
  1162
either side of a true ellipse. This is done in such a way that the outer edge 
sl@0
  1163
of the line would touch the edge of the construction rectangle. In other words, 
sl@0
  1164
the ellipse used to construct it is slightly smaller than that for a single 
sl@0
  1165
pixel line size.
sl@0
  1166
sl@0
  1167
If aStart or aEnd are the ellipse centre then the line that defines the start/end 
sl@0
  1168
of the arc defaults to one extending vertically above the centre point.
sl@0
  1169
sl@0
  1170
If aStart and aEnd are the same point, or points on the same line through 
sl@0
  1171
the ellipse centre then a complete filled ellipse is drawn. A line is also 
sl@0
  1172
drawn from the edge to the ellipse centre.
sl@0
  1173
sl@0
  1174
@param aRect A rectangle in which to draw the ellipse bounding the pie slice 
sl@0
  1175
@param aStart A point to define the start of the pie slice 
sl@0
  1176
@param aEnd A point to define the end of the pie slice 
sl@0
  1177
@see CGraphicsContext::DrawPie() */
sl@0
  1178
	{
sl@0
  1179
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1180
	DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawPie);
sl@0
  1181
	}
sl@0
  1182
sl@0
  1183
EXPORT_C void CWindowGc::DrawEllipse(const TRect &aRect)
sl@0
  1184
/** Draws and fills an ellipse.
sl@0
  1185
sl@0
  1186
The ellipse is drawn inside the rectangle defined by the aRect argument. Any 
sl@0
  1187
TRect that has odd pixel dimensions, has the bottom right corner trimmed to 
sl@0
  1188
give even pixel dimensions before the ellipse is constructed.
sl@0
  1189
sl@0
  1190
The column and row of pixels containing the bottom right co-ordinate of the 
sl@0
  1191
aRect argument are not part of the rectangle.
sl@0
  1192
sl@0
  1193
Note: a wide outline ellipse is drawn with the pixels distributed either side of 
sl@0
  1194
a true ellipse, in such a way that the outer edge of the line touches the 
sl@0
  1195
edge of the construction rectangle. In other words, the ellipse used to construct 
sl@0
  1196
it is smaller than that for a single pixel line size.
sl@0
  1197
sl@0
  1198
@param aRect The rectangle in which to draw the ellipse 
sl@0
  1199
@see CGraphicsContext::DrawEllipse() */
sl@0
  1200
	{
sl@0
  1201
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1202
	WriteRect(aRect,EWsGcOpDrawEllipse);
sl@0
  1203
	}
sl@0
  1204
sl@0
  1205
EXPORT_C void CWindowGc::DrawRect(const TRect &aRect)
sl@0
  1206
/** Draws and fills a rectangle. 
sl@0
  1207
sl@0
  1208
The rectangle's border is drawn with the pen, and it is filled using the brush.
sl@0
  1209
sl@0
  1210
@param aRect The rectangle to be drawn. 
sl@0
  1211
@see CGraphicsContext::DrawRect() */
sl@0
  1212
	{
sl@0
  1213
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1214
	WriteRect(aRect,EWsGcOpDrawRect);
sl@0
  1215
	}
sl@0
  1216
sl@0
  1217
EXPORT_C void CWindowGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse)
sl@0
  1218
/** Draws and fills a rectangle with rounded corners.
sl@0
  1219
sl@0
  1220
The rounded corners are each constructed as an arc of an ellipse. The dimensions 
sl@0
  1221
of each corner (corner size and corner height) are given by aEllipse. See 
sl@0
  1222
DrawArc() for a description of arc construction.
sl@0
  1223
sl@0
  1224
The line drawn by the pen (if any) goes inside the rectangle given by the 
sl@0
  1225
TRect argument.
sl@0
  1226
sl@0
  1227
Notes:
sl@0
  1228
sl@0
  1229
Dotted and dashed pen styles cannot be used for the outline of a rounded rectangle.
sl@0
  1230
sl@0
  1231
If either corner size dimension is greater than half the corresponding rectangle 
sl@0
  1232
length, the corner size dimension is reduced to half the rectangle size.
sl@0
  1233
sl@0
  1234
@param aRect The rectangle to be drawn. 
sl@0
  1235
@param aEllipse The dimensions of each corner. 
sl@0
  1236
@see CGraphicsContext::DrawRoundRect() */
sl@0
  1237
	{
sl@0
  1238
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1239
	TWsGcCmdDrawRoundRect drawRoundRect(aRect,aEllipse);
sl@0
  1240
	Write(&drawRoundRect,sizeof(drawRoundRect),EWsGcOpDrawRoundRect);
sl@0
  1241
	}
sl@0
  1242
sl@0
  1243
EXPORT_C void CWindowGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice)
sl@0
  1244
/** Draws a bitmap at a specified point. 
sl@0
  1245
sl@0
  1246
The function does a compress/stretch based on its internally stored size in 
sl@0
  1247
twips. Note that if the twips value of the bitmap is not set then nothing 
sl@0
  1248
is drawn (this is the default situation).
sl@0
  1249
sl@0
  1250
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1251
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1252
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1253
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1254
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1255
sl@0
  1256
Note: this member function uses the bitmap's size in twips and does a stretch/compress 
sl@0
  1257
blit using a linear DDA.
sl@0
  1258
sl@0
  1259
@param aTopLeft The point where the top left pixel of the bitmap is to be 
sl@0
  1260
drawn 
sl@0
  1261
@param aDevice The source bitmap. 
sl@0
  1262
@see CGraphicsContext::DrawBitmap() */
sl@0
  1263
	{
sl@0
  1264
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1265
	TWsGcCmdDrawBitmap drawBitmap(aTopLeft,aDevice->Handle());
sl@0
  1266
	Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap);
sl@0
  1267
	AddToBitmapArray(aDevice->Handle());
sl@0
  1268
	}
sl@0
  1269
sl@0
  1270
EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice)
sl@0
  1271
/** Draws a bitmap in a rectangle.
sl@0
  1272
sl@0
  1273
The bitmap is compressed/stretched to fit the specified rectangle. Note that 
sl@0
  1274
if the twips value of the bitmap is not set then nothing is drawn (this is 
sl@0
  1275
the default situation).
sl@0
  1276
sl@0
  1277
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1278
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1279
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1280
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1281
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1282
sl@0
  1283
Notes: this member function uses the bitmap's size in pixels and does a stretch/compress 
sl@0
  1284
blit using a linear DDA.
sl@0
  1285
sl@0
  1286
@param aDestRect The rectangle within which the bitmap is to be drawn. 
sl@0
  1287
@param aDevice The source bitmap. 
sl@0
  1288
@see CGraphicsContext::DrawBitmap() */
sl@0
  1289
	{
sl@0
  1290
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1291
	TWsGcCmdDrawBitmap2 drawBitmap(aDestRect,aDevice->Handle());
sl@0
  1292
	Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap2);
sl@0
  1293
	AddToBitmapArray(aDevice->Handle());
sl@0
  1294
	}
sl@0
  1295
sl@0
  1296
EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect)
sl@0
  1297
/** Draws a specified rectangle from a bitmap into another rectangle.
sl@0
  1298
sl@0
  1299
The function compresses/stretches the specified rectangle from the bitmap 
sl@0
  1300
to fit the destination rectangle. Note that if the twips value of the bitmap 
sl@0
  1301
is not set then nothing is drawn (this is the default situation).
sl@0
  1302
sl@0
  1303
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1304
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1305
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1306
stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
sl@0
  1307
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1308
sl@0
  1309
Note: this member function uses rectangle sizes in pixels and does a stretch/compress 
sl@0
  1310
blit using a linear DDA.
sl@0
  1311
sl@0
  1312
@param aDestRect The rectangle within which the bitmap is to be drawn. 
sl@0
  1313
@param aDevice A source bitmap. 
sl@0
  1314
@param aSourceRect The rectangle in the source bitmap that is copied to the 
sl@0
  1315
destination rectangle. 
sl@0
  1316
@see CGraphicsContext::DrawBitmap() */
sl@0
  1317
	{
sl@0
  1318
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1319
	TWsGcCmdDrawBitmap3 drawBitmap(aDestRect,aDevice->Handle(),aSourceRect);
sl@0
  1320
	Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap3);
sl@0
  1321
	AddToBitmapArray(aDevice->Handle());
sl@0
  1322
	}
sl@0
  1323
sl@0
  1324
/** Draws a specified rectangle from a bitmap and its mask into another rectangle.
sl@0
  1325
sl@0
  1326
The function compresses/stretches the specified rectangle from the bitmap 
sl@0
  1327
to fit the destination rectangle. 
sl@0
  1328
The mask bitmap can be used as either a positive or negative mask. Masked 
sl@0
  1329
pixels are not mapped to the destination rectangle.
sl@0
  1330
sl@0
  1331
A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black 
sl@0
  1332
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1333
being transferred to the destination rectangle. With aInvertMask=ETrue, white 
sl@0
  1334
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1335
being transferred to the destination rectangle.
sl@0
  1336
sl@0
  1337
If mask bitmap's display mode is EColor256, the function does AplhaBlending
sl@0
  1338
and ignores aInvertMask parameter.
sl@0
  1339
sl@0
  1340
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1341
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1342
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1343
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1344
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1345
sl@0
  1346
Note: this member function uses rectangle sizes in pixels and does a stretch/compress 
sl@0
  1347
blit using a linear DDA.
sl@0
  1348
sl@0
  1349
@param aDestRect The rectangle within which the masked bitmap is to be drawn. 
sl@0
  1350
@param aBitmap A source bitmap. 
sl@0
  1351
@param aSourceRect The rectangle in the source bitmap that is copied to the 
sl@0
  1352
destination rectangle.
sl@0
  1353
@param aMaskBitmap A mask bitmap. 
sl@0
  1354
@param aInvertMask If false, a source pixel that is masked by a black pixel 
sl@0
  1355
is not transferred to the destination rectangle. If true, then a source pixel 
sl@0
  1356
that is masked by a white pixel is not transferred to the destination rectangle. */
sl@0
  1357
EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
sl@0
  1358
	{
sl@0
  1359
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1360
	TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask);
sl@0
  1361
	Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmapMasked);
sl@0
  1362
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1363
	AddToBitmapArray(aMaskBitmap->Handle());
sl@0
  1364
	}
sl@0
  1365
sl@0
  1366
EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask)
sl@0
  1367
/** Draws a specified rectangle from a wserv bitmap and its mask into 
sl@0
  1368
another rectangle.
sl@0
  1369
sl@0
  1370
The function compresses/stretches the specified rectangle from the bitmap 
sl@0
  1371
to fit the destination rectangle. 
sl@0
  1372
The mask bitmap can be used as either a positive or negative mask. Masked 
sl@0
  1373
pixels are not mapped to the destination rectangle.
sl@0
  1374
sl@0
  1375
A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black 
sl@0
  1376
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1377
being transferred to the destination rectangle. With aInvertMask=ETrue, white 
sl@0
  1378
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1379
being transferred to the destination rectangle.
sl@0
  1380
sl@0
  1381
If mask bitmap's display mode is EColor256, the function does AplhaBlending
sl@0
  1382
and ignores aInvertMask parameter.
sl@0
  1383
sl@0
  1384
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1385
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1386
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1387
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1388
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1389
sl@0
  1390
Note: this member function uses rectangle sizes in pixels and does a stretch/compress 
sl@0
  1391
blit using a linear DDA.
sl@0
  1392
sl@0
  1393
@param aDestRect The rectangle within which the masked bitmap is to be drawn. 
sl@0
  1394
@param aBitmap A source wserv bitmap. 
sl@0
  1395
@param aSourceRect The rectangle in the source bitmap that is copied to the 
sl@0
  1396
destination rectangle.
sl@0
  1397
@param aMaskBitmap A mask wserv bitmap. 
sl@0
  1398
@param aInvertMask If false, a source pixel that is masked by a black pixel 
sl@0
  1399
is not transferred to the destination rectangle. If true, then a source pixel 
sl@0
  1400
that is masked by a white pixel is not transferred to the destination rectangle. */
sl@0
  1401
	{
sl@0
  1402
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1403
	TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask);
sl@0
  1404
	Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpWsDrawBitmapMasked);
sl@0
  1405
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1406
	AddToBitmapArray(aMaskBitmap->Handle());
sl@0
  1407
	}
sl@0
  1408
EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf, const TPoint &aPos)
sl@0
  1409
/** Draws horizontal text with no surrounding box. 
sl@0
  1410
sl@0
  1411
The appearance of the text is subject to the drawing mode, the font, pen colour, 
sl@0
  1412
word justification and character justification. 
sl@0
  1413
sl@0
  1414
A panic occurs if this function is called when there is no font: see UseFont().
sl@0
  1415
sl@0
  1416
@param aBuf The string to write. 
sl@0
  1417
@param aPos The point specifying the position of the baseline at the left 
sl@0
  1418
end of the text.
sl@0
  1419
@see CGraphicsContext::DrawText() */
sl@0
  1420
	{
sl@0
  1421
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1422
	TWsGcCmdDrawText printText(aPos,aBuf.Length());
sl@0
  1423
    __ASSERT_ALWAYS(((aBuf.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected));    
sl@0
  1424
	WriteTextCommand(&printText,sizeof(printText),aBuf,EWsGcOpDrawText,EWsGcOpDrawTextPtr);
sl@0
  1425
	}
sl@0
  1426
sl@0
  1427
EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg)
sl@0
  1428
/** Draws horizontal text within a cleared box.
sl@0
  1429
sl@0
  1430
The appearance of the text is subject to the drawing mode, the font, pen colour, 
sl@0
  1431
word justification and character justification. It is also subject to the 
sl@0
  1432
background brush (set brush to ENullBrush for no effect on background).
sl@0
  1433
sl@0
  1434
A panic occurs if this function is called when there is no font: see UseFont().
sl@0
  1435
sl@0
  1436
Note: the text is clipped to the box. You must ensure that the specified string 
sl@0
  1437
is not too large.
sl@0
  1438
sl@0
  1439
@param aBuf The text to write.
sl@0
  1440
@param aBox The box to draw the text in. 
sl@0
  1441
@param aBaselineOffset An offset from the top of the box to the text baseline. 
sl@0
  1442
Note that the baseline is the line on which letters sit, for instance below r, s, t, and 
sl@0
  1443
above the tail of q, and y. 
sl@0
  1444
@param aHoriz The text alignment mode (default is left, rather than centre 
sl@0
  1445
or right). 
sl@0
  1446
@param aLeftMrg The left margin for left-aligned text, or the right margin 
sl@0
  1447
for right-aligned text (default is zero). 
sl@0
  1448
@see CGraphicsContext::DrawText() */
sl@0
  1449
	{
sl@0
  1450
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1451
	if (aBuf.Size()<(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(TWsGcCmdBoxTextOptimised2))) 
sl@0
  1452
		{
sl@0
  1453
		if (aHoriz==ELeft && aLeftMrg==0)
sl@0
  1454
			{
sl@0
  1455
			TWsGcCmdBoxTextOptimised1 boxTextOpt1(aBox,aBaselineOffset,aBuf.Length());
sl@0
  1456
			__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt1))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1457
			Write(&boxTextOpt1,sizeof(boxTextOpt1),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised1);
sl@0
  1458
			}
sl@0
  1459
		else
sl@0
  1460
			{
sl@0
  1461
			TWsGcCmdBoxTextOptimised2 boxTextOpt2(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length());
sl@0
  1462
			__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt2))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1463
			Write(&boxTextOpt2,sizeof(boxTextOpt2),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised2);
sl@0
  1464
			}
sl@0
  1465
		}
sl@0
  1466
	else
sl@0
  1467
		{
sl@0
  1468
		TWsGcCmdBoxText boxText(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),iPimpl->iFont->TextWidthInPixels(aBuf));
sl@0
  1469
		__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1470
		WriteTextCommand(&boxText,sizeof(boxText),aBuf,EWsGcOpDrawBoxText,EWsGcOpDrawBoxTextPtr);
sl@0
  1471
		}
sl@0
  1472
	}
sl@0
  1473
sl@0
  1474
TInt CWindowGc::APIExDrawText(const TDesC& aBuf,const TTextParameters* aParam,const TPoint& aPos)
sl@0
  1475
	{
sl@0
  1476
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1477
	TWsGcCmdDrawTextInContext printTextInContext(aPos,aBuf.Length(),aParam->iStart,aParam->iEnd);
sl@0
  1478
	__ASSERT_ALWAYS(((aBuf.Size()+sizeof(printTextInContext))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1479
	WriteTextCommand(&printTextInContext,sizeof(printTextInContext),aBuf,EWsGcOpDrawTextInContext,EWsGcOpDrawTextInContextPtr);
sl@0
  1480
	return KErrNone;
sl@0
  1481
	}
sl@0
  1482
	
sl@0
  1483
TInt CWindowGc::APIExDrawText(const TDesC& aBuf,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg)
sl@0
  1484
	{
sl@0
  1485
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1486
	if (aBuf.Size()<(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(TWsGcCmdBoxTextInContextOptimised2))) 
sl@0
  1487
		{
sl@0
  1488
		if (aHoriz==ELeft && aLeftMrg==0)
sl@0
  1489
			{
sl@0
  1490
			TWsGcCmdBoxTextInContextOptimised1 boxTextOpt1(aBox,aBaselineOffset,aBuf.Length(),aParam->iStart,aParam->iEnd);
sl@0
  1491
			__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt1))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1492
			Write(&boxTextOpt1,sizeof(boxTextOpt1),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextInContextOptimised1);
sl@0
  1493
			}
sl@0
  1494
		else
sl@0
  1495
			{
sl@0
  1496
			TWsGcCmdBoxTextInContextOptimised2 boxTextOpt2(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),aParam->iStart,aParam->iEnd);
sl@0
  1497
			__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt2))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1498
			Write(&boxTextOpt2,sizeof(boxTextOpt2),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextInContextOptimised2);
sl@0
  1499
			}
sl@0
  1500
		}
sl@0
  1501
	else
sl@0
  1502
		{
sl@0
  1503
		TWsGcCmdBoxTextInContext boxText(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),iPimpl->iFont->TextWidthInPixels(aBuf),aParam->iStart,aParam->iEnd);
sl@0
  1504
		__ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1505
		WriteTextCommand(&boxText,sizeof(boxText),aBuf,EWsGcOpDrawBoxTextInContext,EWsGcOpDrawBoxTextInContextPtr);
sl@0
  1506
		}
sl@0
  1507
	return KErrNone;
sl@0
  1508
	}
sl@0
  1509
EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp)
sl@0
  1510
/** Draws vertical text in the specified direction.
sl@0
  1511
sl@0
  1512
A panic occurs if this function is called when there is no font: see UseFont().
sl@0
  1513
sl@0
  1514
@param aText The text to be drawn. 
sl@0
  1515
@param aPos Point of origin of the text baseline. 
sl@0
  1516
@param aUp Direction. ETrue for up, EFalse for down. */
sl@0
  1517
	{
sl@0
  1518
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1519
	TWsGcCmdDrawTextVertical printText(aPos,aText.Length(),aUp);
sl@0
  1520
	__ASSERT_ALWAYS(((aText.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1521
	WriteTextCommand(&printText,sizeof(printText),aText,EWsGcOpDrawTextVertical,EWsGcOpDrawTextVerticalPtr);
sl@0
  1522
	}
sl@0
  1523
sl@0
  1524
EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
sl@0
  1525
/** Draws text vertically in the specified direction, within a box of the specified 
sl@0
  1526
size.
sl@0
  1527
sl@0
  1528
A panic occurs if this function is called when there is no font: see UseFont().
sl@0
  1529
sl@0
  1530
@param aText The text to be drawn. 
sl@0
  1531
@param aBox The bounding box within which the text should be drawn, and which 
sl@0
  1532
it is clipped to.
sl@0
  1533
@param aBaselineOffset The height of the top of the characters from their text 
sl@0
  1534
baseline. 
sl@0
  1535
@param aUp The direction. ETrue for up, EFalse for down.
sl@0
  1536
@param aVert The text alignment. 
sl@0
  1537
@param aMargin The margin. */
sl@0
  1538
	{
sl@0
  1539
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1540
	TWsGcCmdBoxTextVertical boxText(aBox);
sl@0
  1541
	boxText.baselineOffset=aBaselineOffset;
sl@0
  1542
	boxText.up=aUp;
sl@0
  1543
	boxText.vert=aVert;
sl@0
  1544
	boxText.margin=aMargin;
sl@0
  1545
	boxText.length=aText.Length();
sl@0
  1546
	boxText.width=iPimpl->iFont->TextWidthInPixels(aText);
sl@0
  1547
	__ASSERT_ALWAYS(((aText.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1548
	WriteTextCommand(&boxText,sizeof(boxText),aText,EWsGcOpDrawBoxTextVertical,EWsGcOpDrawBoxTextVerticalPtr);
sl@0
  1549
	}
sl@0
  1550
sl@0
  1551
TInt CWindowGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp)
sl@0
  1552
	{
sl@0
  1553
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1554
	TWsGcCmdDrawTextInContextVertical printText(aPos,aText.Length(),aUp,aParam->iStart,aParam->iEnd);
sl@0
  1555
	__ASSERT_ALWAYS(((aText.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1556
	WriteTextCommand(&printText,sizeof(printText),aText,EWsGcOpDrawTextInContextVertical,EWsGcOpDrawTextInContextVerticalPtr);
sl@0
  1557
	return KErrNone;
sl@0
  1558
	}
sl@0
  1559
sl@0
  1560
TInt CWindowGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
sl@0
  1561
	{
sl@0
  1562
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1563
	TWsGcCmdBoxTextInContextVertical boxText(aBox);
sl@0
  1564
	boxText.baselineOffset=aBaselineOffset;
sl@0
  1565
	boxText.up=aUp;
sl@0
  1566
	boxText.vert=aVert;
sl@0
  1567
	boxText.margin=aMargin;
sl@0
  1568
	boxText.length=aText.Length();
sl@0
  1569
	boxText.width=iPimpl->iFont->TextWidthInPixels(aText);
sl@0
  1570
	boxText.start = aParam->iStart;
sl@0
  1571
	boxText.end = aParam->iEnd;
sl@0
  1572
	__ASSERT_ALWAYS(((aText.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); 
sl@0
  1573
	WriteTextCommand(&boxText,sizeof(boxText),aText,EWsGcOpDrawBoxTextInContextVertical,EWsGcOpDrawBoxTextInContextVerticalPtr);
sl@0
  1574
	return KErrNone;
sl@0
  1575
	}
sl@0
  1576
sl@0
  1577
//========================Extra functions============================
sl@0
  1578
sl@0
  1579
EXPORT_C void CWindowGc::CopyRect(const TPoint &anOffset,const TRect &aRect)
sl@0
  1580
/** Copies a rectangle from any part of the screen into the window that the gc 
sl@0
  1581
is active on.
sl@0
  1582
sl@0
  1583
The copy part of the operation applies to the whole rectangle, irrespective 
sl@0
  1584
of whether or not it within the window, however the "paste" is clipped to 
sl@0
  1585
the drawing area.
sl@0
  1586
sl@0
  1587
The rectangle is specified in window coordinates (if the top-left of the rectangle 
sl@0
  1588
is (0,0) then the area of the screen it specifies has its top-left at the 
sl@0
  1589
top left corner of the window, if it is (-10,-10) then it starts 10 pixels 
sl@0
  1590
above and to the left of the window). 
sl@0
  1591
sl@0
  1592
Note: shadows in the source rectangle will be copied. None of the area drawn to 
sl@0
  1593
will gain shadowing (even if the window is already in shadow).
sl@0
  1594
sl@0
  1595
This version of this function is only really suitable for testing.
sl@0
  1596
sl@0
  1597
@param anOffset The offset from the original position to the point where the 
sl@0
  1598
rectangle is copied. 
sl@0
  1599
@param aRect The rectangular area to be copied. This is in window co-ordinates, 
sl@0
  1600
e.g. the top left corner of the window is position (0,0) with respect to the 
sl@0
  1601
rectangle.
sl@0
  1602
@see CBitmapContext::CopyRect() */
sl@0
  1603
	{
sl@0
  1604
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1605
	TWsGcCmdCopyRect copyRect(anOffset,aRect);
sl@0
  1606
	Write(&copyRect,sizeof(copyRect),EWsGcOpCopyRect);
sl@0
  1607
	}
sl@0
  1608
sl@0
  1609
EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap)
sl@0
  1610
/** Performs a bitmap block transfer.
sl@0
  1611
sl@0
  1612
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1613
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1614
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1615
stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
sl@0
  1616
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1617
sl@0
  1618
@param aPoint The position for the top left corner of the bitmap. 
sl@0
  1619
@param aBitmap A memory-resident bitmap. 
sl@0
  1620
@see CBitmapContext::BitBlt() */
sl@0
  1621
	{
sl@0
  1622
	if (aBitmap == NULL || !aBitmap->Handle())
sl@0
  1623
		return; 
sl@0
  1624
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1625
	TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->Handle());
sl@0
  1626
	Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt2);
sl@0
  1627
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1628
	}
sl@0
  1629
sl@0
  1630
EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CFbsBitmap *aBitmap,const TRect &aSource)
sl@0
  1631
/** Performs a bitmap block transfer of a rectangular piece of a bitmap.
sl@0
  1632
sl@0
  1633
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1634
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1635
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1636
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1637
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1638
sl@0
  1639
Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded 
sl@0
  1640
with white.
sl@0
  1641
sl@0
  1642
@param aDestination The position for the top left corner of the bitmap. 
sl@0
  1643
@param aBitmap A memory-resident bitmap 
sl@0
  1644
@param aSource A rectangle defining the piece of the bitmap to be drawn, with 
sl@0
  1645
co-ordinates relative to the top left corner of the bitmap 
sl@0
  1646
@see CBitmapContext::BitBlt() */
sl@0
  1647
	{
sl@0
  1648
	if (aBitmap == NULL || !aBitmap->Handle())
sl@0
  1649
		return; 
sl@0
  1650
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1651
	TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->Handle(),aSource);
sl@0
  1652
	Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt3);
sl@0
  1653
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1654
	}
sl@0
  1655
sl@0
  1656
EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask)
sl@0
  1657
/** Performs a masked bitmap block transfer of a memory resident source bitmap.
sl@0
  1658
sl@0
  1659
The mask bitmap can be used as either a positive or negative mask. Masked 
sl@0
  1660
pixels are not mapped to the destination rectangle.
sl@0
  1661
sl@0
  1662
A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black 
sl@0
  1663
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1664
being transferred to the destination rectangle. With aInvertMask=ETrue, white 
sl@0
  1665
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1666
being transferred to the destination rectangle.
sl@0
  1667
sl@0
  1668
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1669
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1670
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1671
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1672
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1673
sl@0
  1674
@param aPoint A position for the top left corner of the bitmap. 
sl@0
  1675
@param aBitmap A memory-resident source bitmap. 
sl@0
  1676
@param aSourceRect A rectangle defining the piece of the bitmap to be drawn, 
sl@0
  1677
with co-ordinates relative to the top left corner of the bitmap 
sl@0
  1678
@param aMaskBitmap A mask bitmap. 
sl@0
  1679
@param aInvertMask If false, a source pixel that is masked by a black pixel 
sl@0
  1680
is not transferred to the destination rectangle. If true, then a source pixel 
sl@0
  1681
that is masked by a white pixel is not transferred to the destination rectangle. 
sl@0
  1682
sl@0
  1683
@see CBitmapContext::BitBltMasked() */
sl@0
  1684
	{
sl@0
  1685
	if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle())
sl@0
  1686
		return; 
sl@0
  1687
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1688
	TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask);
sl@0
  1689
	Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiBltMasked);
sl@0
  1690
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1691
	AddToBitmapArray(aMaskBitmap->Handle());
sl@0
  1692
	}
sl@0
  1693
sl@0
  1694
EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap)
sl@0
  1695
/** Performs a bitmap block transfer on a bitmap to which the window server already 
sl@0
  1696
has a handle.
sl@0
  1697
sl@0
  1698
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1699
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1700
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1701
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1702
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1703
sl@0
  1704
This function should be used in preference to the CFbsBitmap overload if the 
sl@0
  1705
bitmap is to be used more than once, as it is a lot quicker.
sl@0
  1706
sl@0
  1707
@param aPoint The position for the top left corner of the bitmap. 
sl@0
  1708
@param aBitmap A window server bitmap. 
sl@0
  1709
@see CBitmapContext::BitBlt() */
sl@0
  1710
	{
sl@0
  1711
	if (aBitmap == NULL || !aBitmap->Handle())
sl@0
  1712
		return; 
sl@0
  1713
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1714
	TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->WsHandle());
sl@0
  1715
	Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt2);
sl@0
  1716
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1717
	}
sl@0
  1718
sl@0
  1719
EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CWsBitmap  *aBitmap,const TRect &aSource)
sl@0
  1720
/** Performs a bitmap block transfer of a rectangular piece of a bitmap to which 
sl@0
  1721
the window server already has a handle.
sl@0
  1722
sl@0
  1723
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1724
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1725
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1726
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1727
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1728
sl@0
  1729
This function should be used in preference to the CFbsBitmap overload if the 
sl@0
  1730
bitmap is to be used more than once, as it is a lot quicker.
sl@0
  1731
sl@0
  1732
Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded 
sl@0
  1733
with white.
sl@0
  1734
	
sl@0
  1735
@param aDestination The position for the top left corner of the bitmap. 
sl@0
  1736
@param aBitmap A window server bitmap. 
sl@0
  1737
@param aSource A rectangle defining the piece of the bitmap to be drawn, with 
sl@0
  1738
co-ordinates relative to the top left corner of the bitmap 
sl@0
  1739
@see CBitmapContext::BitBlt() */
sl@0
  1740
	{
sl@0
  1741
	if (aBitmap == NULL || !aBitmap->Handle())
sl@0
  1742
		return; 
sl@0
  1743
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1744
	TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->WsHandle(),aSource);
sl@0
  1745
	Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt3);
sl@0
  1746
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1747
	}
sl@0
  1748
sl@0
  1749
EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CWsBitmap * aBitmap,const TRect& aSourceRect,const CWsBitmap * aMaskBitmap,TBool aInvertMask)
sl@0
  1750
/** Performs a masked bitmap block transfer of a window server bitmap.
sl@0
  1751
sl@0
  1752
The mask bitmap can be used as either a positive or negative mask. Masked 
sl@0
  1753
pixels are not mapped to the destination rectangle.
sl@0
  1754
sl@0
  1755
A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black 
sl@0
  1756
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1757
being transferred to the destination rectangle. With aInvertMask=ETrue, white 
sl@0
  1758
pixels in the mask bitmap stop corresponding pixels in the source bitmap from 
sl@0
  1759
being transferred to the destination rectangle.
sl@0
  1760
sl@0
  1761
This function should be used in preference to the CFbsBitmap overload if the 
sl@0
  1762
bitmap is to be used more than once, as it is a lot quicker.
sl@0
  1763
sl@0
  1764
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1765
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1766
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1767
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1768
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1769
sl@0
  1770
@param aPoint A position for the top left corner of the bitmap. 
sl@0
  1771
@param aBitmap A window server bitmap. 
sl@0
  1772
@param aSourceRect A rectangle defining the piece of the bitmap to be drawn, 
sl@0
  1773
with co-ordinates relative to the top left corner of the bitmap. 
sl@0
  1774
@param aMaskBitmap A window server mask bitmap. 
sl@0
  1775
@param aInvertMask If false, a source pixel that is masked by a black pixel 
sl@0
  1776
is not transferred to the destination rectangle. If true, then a source pixel 
sl@0
  1777
that is masked by a white pixel is not transferred to the destination rectangle. 
sl@0
  1778
sl@0
  1779
@see CBitmapContext::BitBltMasked() */
sl@0
  1780
	{
sl@0
  1781
	if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle())
sl@0
  1782
		return;
sl@0
  1783
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1784
	TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask);
sl@0
  1785
	Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiWsBltMasked);
sl@0
  1786
	AddToBitmapArray(aBitmap->Handle());
sl@0
  1787
	AddToBitmapArray(aMaskBitmap->Handle()); 
sl@0
  1788
	}
sl@0
  1789
sl@0
  1790
/**
sl@0
  1791
This method has been deprecated. It is no longer possible to re-map pixel colours
sl@0
  1792
within a rectangle. Calling it has no effect.
sl@0
  1793
@param aRect Ignored.
sl@0
  1794
@param aColors Ignored.
sl@0
  1795
@param aNumPairs Ignored.
sl@0
  1796
@param aMapForwards Ignored.
sl@0
  1797
@deprecated
sl@0
  1798
*/
sl@0
  1799
EXPORT_C void CWindowGc::MapColors(const TRect& /*aRect*/, const TRgb* /*aColors*/, TInt /*aNumPairs*/, TBool /*aMapForwards*/)
sl@0
  1800
	{
sl@0
  1801
	}
sl@0
  1802
sl@0
  1803
EXPORT_C void CWindowGc::Clear(const TRect &aRect)
sl@0
  1804
/** Clears a rectangular area of a window.
sl@0
  1805
sl@0
  1806
The cleared area is filled with the current brush colour.
sl@0
  1807
sl@0
  1808
@param aRect The rectangle to clear. 
sl@0
  1809
@see CBitmapContext::Clear() */
sl@0
  1810
	{
sl@0
  1811
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1812
	WriteRect(aRect,EWsGcOpClearRect);
sl@0
  1813
	}
sl@0
  1814
sl@0
  1815
EXPORT_C void CWindowGc::Clear()
sl@0
  1816
/** Clears the whole window.
sl@0
  1817
sl@0
  1818
The cleared area is filled with the current brush colour.
sl@0
  1819
sl@0
  1820
@see CBitmapContext::Clear() */
sl@0
  1821
	{
sl@0
  1822
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1823
	Write(EWsGcOpClear);
sl@0
  1824
	}
sl@0
  1825
sl@0
  1826
EXPORT_C void CWindowGc::Reset()
sl@0
  1827
/** Resets the graphics context to its default settings.
sl@0
  1828
sl@0
  1829
The drawing mode is set to TDrawMode::EDrawModePen (pen and brush colours used as 
sl@0
  1830
they are); there is no clipping rectangle; the pen settings are black, 
sl@0
  1831
solid, single pixel size; the brush style is null; no text font is selected.
sl@0
  1832
sl@0
  1833
@see CGraphicsContext::Reset() */
sl@0
  1834
	{
sl@0
  1835
	Write(EWsGcOpReset);
sl@0
  1836
	iPimpl->iFont=NULL;
sl@0
  1837
	iPimpl->iShadowColor = KDefaultShadowColor;
sl@0
  1838
    iPimpl->ResetPendingState();
sl@0
  1839
    iPimpl->iForceWrite = ETrue; // needed because brush colour set to window background colour in CPlaybackGc::CommandL and CWsGc::SetGcAttribute
sl@0
  1840
	}
sl@0
  1841
sl@0
  1842
/**
sl@0
  1843
This method has been deprecated. Dithering is no longer supported. Calling it
sl@0
  1844
has no effect.
sl@0
  1845
@param aPoint Ignored.
sl@0
  1846
@deprecated
sl@0
  1847
*/
sl@0
  1848
EXPORT_C void CWindowGc::SetDitherOrigin(const TPoint& /*aPoint*/)
sl@0
  1849
	{
sl@0
  1850
	}
sl@0
  1851
sl@0
  1852
EXPORT_C void CWindowGc::SetFaded(TBool aFaded)
sl@0
  1853
/** Sets whether the graphics context is faded.
sl@0
  1854
sl@0
  1855
Fading is used to make a window appear less colourful so that other windows 
sl@0
  1856
stand out. For example, a window would be faded when a dialogue is displayed 
sl@0
  1857
in front of it.
sl@0
  1858
sl@0
  1859
@param aFaded ETrue to fade the graphics context, EFalse to unfade it. */
sl@0
  1860
	{
sl@0
  1861
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1862
	WriteInt(aFaded,EWsGcOpSetFaded);
sl@0
  1863
	}
sl@0
  1864
sl@0
  1865
EXPORT_C void CWindowGc::SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
sl@0
  1866
/** Sets the fading parameters.
sl@0
  1867
sl@0
  1868
This function allows you to override the map used when drawing with a faded 
sl@0
  1869
graphics context. However if you draw to a faded window with a faded graphics 
sl@0
  1870
context, then fading on the graphics context is ignored and it will use the 
sl@0
  1871
fading of the window.
sl@0
  1872
sl@0
  1873
Fading is used to make a window appear less colourful so that other windows stand 
sl@0
  1874
out. For example, a window would be faded when a dialogue is displayed 
sl@0
  1875
in front of it. 
sl@0
  1876
sl@0
  1877
You can either make a faded window closer to white or closer to black. 
sl@0
  1878
The fading map allows you to over-ride the default fading parameters set in 
sl@0
  1879
RWsSession::SetDefaultFadingParameters(). 
sl@0
  1880
sl@0
  1881
Fading re-maps colours to fall between the specified black and white map values. 
sl@0
  1882
If aBlackMap=0 and aWhiteMap=255 then the colours are mapped unchanged. As the 
sl@0
  1883
values converge, the colours are mapped to a smaller range, so the differences 
sl@0
  1884
between colours in the faded graphics context decrease. If the values are reversed 
sl@0
  1885
then the colours are inverted (i.e. where the gc would be black, it is now white). 
sl@0
  1886
sl@0
  1887
@param aBlackMap Black map fading parameter. Unfaded this is 0. 
sl@0
  1888
@param aWhiteMap White map fading parameter. Unfaded this is 255. 
sl@0
  1889
@see RWsSession::SetDefaultFadingParameters()
sl@0
  1890
@see RWindowTreeNode::SetFaded() */
sl@0
  1891
	{
sl@0
  1892
	WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsGcOpSetFadeParams);
sl@0
  1893
	}
sl@0
  1894
sl@0
  1895
EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect,const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
sl@0
  1896
/**
sl@0
  1897
Performs an alpha blending of the source data, aSrcBmp, with the window, using
sl@0
  1898
the data from aAlphaBmp as an alpha blending factor.
sl@0
  1899
The formula used is:
sl@0
  1900
(S * A + W * (255 - A)) / 255, where:
sl@0
  1901
- S - a pixel from aSrcBmp;
sl@0
  1902
- W - a pixel from the window;
sl@0
  1903
- A - a pixel from aAlphaBmp;
sl@0
  1904
The contents of source and alpha bitmap are preserved.
sl@0
  1905
The calculated alpha blended pixels are written to the destination - the window image.
sl@0
  1906
sl@0
  1907
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1908
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1909
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1910
stored commands including the draw bitmap.  However, if the client has changed the content of the bitmap,
sl@0
  1911
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1912
sl@0
  1913
This method is supported from version 8.1
sl@0
  1914
@param aDestPt Position in the target the result should be drawn to.
sl@0
  1915
@param aSrcBmp A pointer to the source bitmap.
sl@0
  1916
@param aSrcRect The part of the source bitmap that should be used.
sl@0
  1917
@param aAlphaBmp A pointer to the bitmap used as an alpha blending factor.
sl@0
  1918
@param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source 
sl@0
  1919
                for the alpha blending. The size of the area is the same as the 
sl@0
  1920
                source bitmap area - aSrcRect parameter.
sl@0
  1921
@see CFbsBitGc::AlphaBlendBitmaps()
sl@0
  1922
*/
sl@0
  1923
	{
sl@0
  1924
   	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1925
	TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->Handle(), aSrcRect, aAlphaBmp->Handle(), aAlphaPt);
sl@0
  1926
	Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiAlphaBlendBitmaps);
sl@0
  1927
	AddToBitmapArray(aSrcBmp->Handle());
sl@0
  1928
	AddToBitmapArray(aAlphaBmp->Handle());
sl@0
  1929
	return KErrNone;
sl@0
  1930
	}
sl@0
  1931
sl@0
  1932
EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect,const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
sl@0
  1933
/**
sl@0
  1934
The method performs an alpha blending of the source data, aSrcBmp, with the window, using
sl@0
  1935
the data from aAlphaBmp as an alpha blending factor.
sl@0
  1936
For information on how this function works, see the other overload.
sl@0
  1937
sl@0
  1938
Windows that store their redraw commands will only store drawing position and a handle to bitmaps 
sl@0
  1939
that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. 
sl@0
  1940
At some point later WSERV may need to draw that window again and it will just replay the 
sl@0
  1941
stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
sl@0
  1942
WSERV will effectively draw a different bitmap when it replays the commands.
sl@0
  1943
sl@0
  1944
This method is supported from version 8.1
sl@0
  1945
@param aDestPt Position in the target the result should be drawn to.
sl@0
  1946
@param aSrcBmp A pointer to the source bitmap.
sl@0
  1947
@param aSrcRect The part of the source bitmap that should be used.
sl@0
  1948
@param aAlphaBmp A pointer to the bitmap used as an alpha blending factor.
sl@0
  1949
@param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source 
sl@0
  1950
                for the alpha blending. The size of the area is the same as the 
sl@0
  1951
                source bitmap area - aSrcRect parameter.
sl@0
  1952
@see CFbsBitGc::AlphaBlendBitmaps()
sl@0
  1953
*/
sl@0
  1954
	{
sl@0
  1955
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1956
	TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->WsHandle(), aSrcRect, aAlphaBmp->WsHandle(), aAlphaPt);
sl@0
  1957
	Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiWsAlphaBlendBitmaps);
sl@0
  1958
	AddToBitmapArray(aSrcBmp->Handle());
sl@0
  1959
	AddToBitmapArray(aAlphaBmp->Handle());
sl@0
  1960
	return KErrNone;
sl@0
  1961
	}
sl@0
  1962
sl@0
  1963
/**
sl@0
  1964
This method has been deprecated. Calling it has no effect.
sl@0
  1965
@param aDrawOpaque Ignored.
sl@0
  1966
@deprecated
sl@0
  1967
*/
sl@0
  1968
EXPORT_C void CWindowGc::SetOpaque(TBool aDrawOpaque)
sl@0
  1969
	{
sl@0
  1970
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  1971
	WriteInt(aDrawOpaque, EWsGcOpSetOpaque);
sl@0
  1972
	}
sl@0
  1973
sl@0
  1974
/** APIExtension can contain as many additional methods as is required by 
sl@0
  1975
CGraphicsContext after its original conception. It takes 3 parameters.
sl@0
  1976
Function is exported due to constrains of retaining BC with earlier versions.
sl@0
  1977
This is not used directly by external methods, instead it is called by a named 
sl@0
  1978
method in CGraphicsContext which passes the relivant arguements including an 
sl@0
  1979
unique identifier for the required action.
sl@0
  1980
@param aUid The unique identifier for the method that is required. Selected 
sl@0
  1981
internally by a series of "if" statements. 
sl@0
  1982
@see Valid Uid identifiers are listed in header gdi.h
sl@0
  1983
@see CGraphicsContext
sl@0
  1984
@param aOutput is a TAny pointer to a reference. Used to output data as the structure
sl@0
  1985
does not need to be instantiated before the function call this adds greater 
sl@0
  1986
flexibility.
sl@0
  1987
@param aInput is a TAny pointer used to input data.
sl@0
  1988
*/	
sl@0
  1989
EXPORT_C TInt CWindowGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput)
sl@0
  1990
	{
sl@0
  1991
	if (aUid == KGetUnderlineMetrics)
sl@0
  1992
		{		
sl@0
  1993
		return APIExGetUnderlineMetrics(aOutput);
sl@0
  1994
		}
sl@0
  1995
	else if (aUid == KSetShadowColor)
sl@0
  1996
		{
sl@0
  1997
		return APIExSetShadowColor(aInput);
sl@0
  1998
		}
sl@0
  1999
	else if (aUid == KGetShadowColor)
sl@0
  2000
		{
sl@0
  2001
		return APIExGetShadowColor(aOutput);
sl@0
  2002
		}
sl@0
  2003
	else if (aUid == KDrawTextInContextUid)
sl@0
  2004
		{
sl@0
  2005
		TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
sl@0
  2006
		return APIExDrawText(contextParam->iText, &contextParam->iParam, contextParam->iPosition);
sl@0
  2007
		}
sl@0
  2008
	else if (aUid == KDrawBoxTextInContextUid)
sl@0
  2009
		{
sl@0
  2010
		TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
sl@0
  2011
		return APIExDrawText(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iAlign,contextParam->iMargin);
sl@0
  2012
		}
sl@0
  2013
	else if (aUid == KDrawTextInContextVerticalUid)
sl@0
  2014
		{
sl@0
  2015
		TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
sl@0
  2016
		return APIExDrawTextVertical(contextParam->iText, &contextParam->iParam, contextParam->iPosition,contextParam->iUp);
sl@0
  2017
		}
sl@0
  2018
	else if (aUid == KDrawBoxTextInContextVerticalUid)
sl@0
  2019
		{
sl@0
  2020
		TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput;
sl@0
  2021
		return APIExDrawTextVertical(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iUp,contextParam->iAlign,contextParam->iMargin);
sl@0
  2022
		}
sl@0
  2023
	else if (aUid == KApiExtensionInterfaceUid)
sl@0
  2024
		{
sl@0
  2025
		return APIExInterface(aOutput, *static_cast<TUid*>(aInput));
sl@0
  2026
		}
sl@0
  2027
	/* Future cases may be placed here later.*/
sl@0
  2028
	else
sl@0
  2029
		return CBitmapContext::APIExtension(aUid, aOutput, aInput);
sl@0
  2030
	}
sl@0
  2031
sl@0
  2032
//The methods listed above in APIExtension follow here with the prefix APIEx.
sl@0
  2033
TInt CWindowGc::APIExGetUnderlineMetrics(TAny*& aOutput)
sl@0
  2034
	{
sl@0
  2035
	const TInt width = Max(iPimpl->iFont->HeightInPixels() / 10,1);
sl@0
  2036
	TTwoTInt* ptr = (TTwoTInt*)aOutput;
sl@0
  2037
	ptr->iTop = 1 + width / 2;
sl@0
  2038
	ptr->iBottom = (ptr->iTop) + width;
sl@0
  2039
	return KErrNone;
sl@0
  2040
	}
sl@0
  2041
sl@0
  2042
TInt CWindowGc::APIExSetShadowColor(TAny* aShadowColor)
sl@0
  2043
	{
sl@0
  2044
	const TRgb shadowColor = *(reinterpret_cast<TRgb*> (aShadowColor));
sl@0
  2045
	WriteInt(shadowColor.Internal(), EWsGcOpSetShadowColor);
sl@0
  2046
	iPimpl->iShadowColor = shadowColor;
sl@0
  2047
	return KErrNone;
sl@0
  2048
	}
sl@0
  2049
sl@0
  2050
TInt CWindowGc::APIExGetShadowColor(TAny*& aOutput)
sl@0
  2051
	{
sl@0
  2052
	TRgb* ptr = (TRgb*)aOutput;
sl@0
  2053
	ptr->SetInternal(iPimpl->iShadowColor.Internal());
sl@0
  2054
	return KErrNone;
sl@0
  2055
	}
sl@0
  2056
sl@0
  2057
//Default implementation of reserved virtual
sl@0
  2058
EXPORT_C void CWindowGc::Reserved_CGraphicsContext_2()
sl@0
  2059
	{
sl@0
  2060
	CBitmapContext::Reserved_CGraphicsContext_2();
sl@0
  2061
	}
sl@0
  2062
sl@0
  2063
//Default implementation of reserved virtual
sl@0
  2064
EXPORT_C void CWindowGc::Reserved_CBitmapContext_1()
sl@0
  2065
	{
sl@0
  2066
	CBitmapContext::Reserved_CBitmapContext_1();
sl@0
  2067
	}
sl@0
  2068
sl@0
  2069
//Default implementation of reserved virtual
sl@0
  2070
EXPORT_C void CWindowGc::Reserved_CBitmapContext_2()
sl@0
  2071
	{
sl@0
  2072
	CBitmapContext::Reserved_CBitmapContext_2();
sl@0
  2073
	}
sl@0
  2074
sl@0
  2075
//Default implementation of reserved virtual
sl@0
  2076
EXPORT_C void CWindowGc::Reserved_CBitmapContext_3()
sl@0
  2077
	{
sl@0
  2078
	CBitmapContext::Reserved_CBitmapContext_3();
sl@0
  2079
	}
sl@0
  2080
	
sl@0
  2081
// was Reserved_CWindowGc_1
sl@0
  2082
EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect)
sl@0
  2083
/** Draws an abstract artwork.
sl@0
  2084
It does nothing if aDestRect values fall outside the window area.
sl@0
  2085
sl@0
  2086
@param aId the identifier for the artwork
sl@0
  2087
@param aDestRect the destination rect within the active window for this artwork
sl@0
  2088
sl@0
  2089
@since 9.2
sl@0
  2090
@released
sl@0
  2091
*/
sl@0
  2092
	{
sl@0
  2093
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2094
	TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect);
sl@0
  2095
	Write(&drawWsGraphic,sizeof(drawWsGraphic),EWsGcOpDrawWsGraphic);
sl@0
  2096
	}
sl@0
  2097
sl@0
  2098
// Reserved_CWindowGc_2
sl@0
  2099
EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData)
sl@0
  2100
/** Draws an abstract artwork.
sl@0
  2101
It does nothing if aDestRect values fall outside the window area.
sl@0
  2102
sl@0
  2103
@param aId the identifier for the artwork
sl@0
  2104
@param aDestRect the destination rect within the active window for this artwork
sl@0
  2105
@param aData opaque datagram to associate with this occasion of drawing.  The format is dependent upon the artwork
sl@0
  2106
sl@0
  2107
@since 9.2
sl@0
  2108
@released
sl@0
  2109
*/
sl@0
  2110
	{
sl@0
  2111
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2112
	TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect);
sl@0
  2113
	drawWsGraphic.iDataLen = aData.Size();
sl@0
  2114
	WriteTextCommand(&drawWsGraphic, sizeof(drawWsGraphic),	aData, EWsGcOpDrawWsGraphic, EWsGcOpDrawWsGraphicPtr);	
sl@0
  2115
	}
sl@0
  2116
sl@0
  2117
/**
sl@0
  2118
Gets an extension interface specified by the supplied UID, or NULL if it isn't supported.
sl@0
  2119
sl@0
  2120
@param aInterfaceId The UID of the requested interface
sl@0
  2121
@return A pointer to the interface, or NULL if the interface isn't supported
sl@0
  2122
@publishedPartner
sl@0
  2123
@prototype
sl@0
  2124
*/
sl@0
  2125
EXPORT_C TAny* CWindowGc::Interface(TUid aInterfaceId)
sl@0
  2126
	{
sl@0
  2127
	TAny* interface = NULL;
sl@0
  2128
	if(KErrNone == APIExtension(KApiExtensionInterfaceUid, interface, &aInterfaceId))
sl@0
  2129
		return interface;
sl@0
  2130
	return NULL;
sl@0
  2131
	}
sl@0
  2132
sl@0
  2133
/**
sl@0
  2134
Gets an extension interface specified by the supplied UID, or NULL if it isn't supported.
sl@0
  2135
sl@0
  2136
@param aInterfaceId The UID of the requested interface
sl@0
  2137
@return A pointer to the interface, or NULL if the interface isn't supported
sl@0
  2138
@publishedPartner
sl@0
  2139
@prototype
sl@0
  2140
*/
sl@0
  2141
EXPORT_C const TAny* CWindowGc::Interface(TUid aInterfaceId) const
sl@0
  2142
	{
sl@0
  2143
	return const_cast<CWindowGc*>(this)->Interface(aInterfaceId);
sl@0
  2144
	}
sl@0
  2145
sl@0
  2146
TInt CWindowGc::APIExInterface(TAny*& aInterface, TUid aInterfaceId)
sl@0
  2147
	{
sl@0
  2148
	if(aInterfaceId == KMWsDrawResourceInterfaceUid)
sl@0
  2149
		{
sl@0
  2150
		aInterface = static_cast<MWsDrawResource*>(iPimpl);
sl@0
  2151
		return KErrNone;
sl@0
  2152
		}
sl@0
  2153
	return KErrNotSupported;
sl@0
  2154
	}
sl@0
  2155
sl@0
  2156
void CWindowGc::DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, TGraphicsRotation aRotation)
sl@0
  2157
	{
sl@0
  2158
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2159
	TWsGcCmdDrawResourceToPos drawWsResource(aSource.WsHandle(), aPos, aRotation);
sl@0
  2160
	Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceToPos);
sl@0
  2161
	}
sl@0
  2162
sl@0
  2163
void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, TGraphicsRotation aRotation)
sl@0
  2164
	{
sl@0
  2165
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2166
	TWsGcCmdDrawResourceToRect drawWsResource(aSource.WsHandle(), aDestRect, aRotation);
sl@0
  2167
	Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceToRect);
sl@0
  2168
	}
sl@0
  2169
sl@0
  2170
void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, TGraphicsRotation aRotation)
sl@0
  2171
	{
sl@0
  2172
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2173
	TWsGcCmdDrawResourceFromRectToRect drawWsResource(aSource.WsHandle(), aDestRect, aSrcRect, aRotation);
sl@0
  2174
	Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceFromRectToRect);
sl@0
  2175
	}
sl@0
  2176
sl@0
  2177
void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam)
sl@0
  2178
	{
sl@0
  2179
	iPimpl->WriteAnyPendingStateChanges();
sl@0
  2180
	TWsGcCmdDrawResourceWithData drawWsResource(aSource.WsHandle(), aDestRect, &aParam);
sl@0
  2181
	Write(&drawWsResource, sizeof(drawWsResource),EWsGcOpDrawResourceWithData);
sl@0
  2182
	}
sl@0
  2183
sl@0
  2184
//Default implementation of reserved virtual
sl@0
  2185
EXPORT_C void CWindowGc::Reserved_CWindowGc_3()
sl@0
  2186
	{
sl@0
  2187
	}
sl@0
  2188
sl@0
  2189
//Default implementation of reserved virtual
sl@0
  2190
EXPORT_C void CWindowGc::Reserved_CWindowGc_4()
sl@0
  2191
	{
sl@0
  2192
	}
sl@0
  2193
sl@0
  2194
//Default implementation of reserved virtual
sl@0
  2195
EXPORT_C void CWindowGc::Reserved_CWindowGc_5()
sl@0
  2196
	{
sl@0
  2197
	}
sl@0
  2198
sl@0
  2199
/**
sl@0
  2200
Default constructor. 
sl@0
  2201
Only for embedding instances of RWsDrawableSource into other classes as data members. 
sl@0
  2202
Before a RWsDrawableSource can be used the other constructor must be called. 
sl@0
  2203
 */
sl@0
  2204
EXPORT_C RWsDrawableSource::RWsDrawableSource()
sl@0
  2205
	: iDrawableId(KSgNullDrawableId), iScreenNumber(KSgScreenIdMain)
sl@0
  2206
	{
sl@0
  2207
	}
sl@0
  2208
sl@0
  2209
/**
sl@0
  2210
Constructor.
sl@0
  2211
@param aWs Session to the window server
sl@0
  2212
 
sl@0
  2213
@pre Connection to the window server is established
sl@0
  2214
 */
sl@0
  2215
EXPORT_C RWsDrawableSource::RWsDrawableSource(RWsSession &aWs)
sl@0
  2216
	: MWsClientClass(aWs.iBuffer), iDrawableId(KSgNullDrawableId), iScreenNumber(KSgScreenIdMain)
sl@0
  2217
	{
sl@0
  2218
	}
sl@0
  2219
sl@0
  2220
/**
sl@0
  2221
Create window server object for resource drawing operation via window server.
sl@0
  2222
sl@0
  2223
This object will be identified by a unique handle and will be associated with drawable resource which is passed as a parameter.
sl@0
  2224
sl@0
  2225
This object will be created for drawing onto the default screen only.
sl@0
  2226
 
sl@0
  2227
@see CWindowGc
sl@0
  2228
@param  aDrawable Drawable resource.
sl@0
  2229
 
sl@0
  2230
@post Drawable source is created and can be used by window server. The reference counter of the underlying
sl@0
  2231
		image resource is incremented. 
sl@0
  2232
sl@0
  2233
@return KErrNone if successful, KErrArgument if the image resource is not valid,
sl@0
  2234
		KErrAlreadyExists if this handle is already associated with a 
sl@0
  2235
		specific resource,  otherwise one of the system-wide error codes.
sl@0
  2236
 */
sl@0
  2237
EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable& aDrawable)
sl@0
  2238
	{
sl@0
  2239
	return Create(aDrawable, KSgScreenIdMain);
sl@0
  2240
	}
sl@0
  2241
sl@0
  2242
/**
sl@0
  2243
Create window server object for resource drawing operation via window server.
sl@0
  2244
sl@0
  2245
This object will be identified by  unique handle and will be associated with drawable resource which is passed as a parameter.
sl@0
  2246
sl@0
  2247
This object will be created for drawing onto the specified screen only.
sl@0
  2248
sl@0
  2249
@see CWindowGc
sl@0
  2250
@param  aDrawable Drawable resource.
sl@0
  2251
@param  aScreenNumber The screen onto which this drawable resource can be drawn.
sl@0
  2252
 
sl@0
  2253
@post Drawable source is created and can be used by window server. The reference counter of the underlying
sl@0
  2254
		image resource is incremented. 
sl@0
  2255
sl@0
  2256
@return KErrNone if successful, KErrArgument if the image resource is not valid
sl@0
  2257
		or if the specified screen is invalid, KErrAlreadyExists if this handle
sl@0
  2258
		is already associated with a specific resource, otherwise one of the
sl@0
  2259
		system-wide error codes.
sl@0
  2260
 */
sl@0
  2261
EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable& aDrawable, TInt aScreenNumber)
sl@0
  2262
	{
sl@0
  2263
	if (iWsHandle)
sl@0
  2264
		{
sl@0
  2265
		return KErrAlreadyExists;
sl@0
  2266
		}
sl@0
  2267
	CGraphicsResourceWrapperFactory* grwFactory = new CGraphicsResourceWrapperFactory();
sl@0
  2268
	if (!grwFactory)
sl@0
  2269
		return KErrNoMemory;
sl@0
  2270
	// coverity[uninit_use_in_call]
sl@0
  2271
	CGraphicsResourceWrapper* graphicsResource = grwFactory->NewGraphicsResourceWrapper();
sl@0
  2272
	if(!graphicsResource)
sl@0
  2273
		{
sl@0
  2274
		delete grwFactory;
sl@0
  2275
		return KErrNotSupported;
sl@0
  2276
		}
sl@0
  2277
	if (graphicsResource->IsNull(aDrawable) || aScreenNumber < 0)
sl@0
  2278
		{
sl@0
  2279
		delete graphicsResource;
sl@0
  2280
		delete grwFactory;
sl@0
  2281
		return KErrArgument;
sl@0
  2282
		}
sl@0
  2283
	TWsClCmdCreateDrawableSource create(graphicsResource->Id(aDrawable), aScreenNumber);
sl@0
  2284
	TInt ret;
sl@0
  2285
	if ((ret = iBuffer->WriteReplyWs(&create, sizeof(TWsClCmdCreateDrawableSource), EWsClOpCreateDrawableSource)) < 0)
sl@0
  2286
		{
sl@0
  2287
		delete graphicsResource;
sl@0
  2288
		delete grwFactory;
sl@0
  2289
		return ret;
sl@0
  2290
		}
sl@0
  2291
	iWsHandle = ret;
sl@0
  2292
	iDrawableId = graphicsResource->Id(aDrawable);
sl@0
  2293
	iScreenNumber = aScreenNumber;
sl@0
  2294
	delete graphicsResource;
sl@0
  2295
	delete grwFactory;
sl@0
  2296
	return KErrNone;
sl@0
  2297
	}
sl@0
  2298
sl@0
  2299
/**
sl@0
  2300
Destroy the window server drawable source. 
sl@0
  2301
Calling this method on a object that is not associated with any RSgDrawable 
sl@0
  2302
resource will have no effect. Once Close() is called, this drawable source object can be reused.
sl@0
  2303
sl@0
  2304
@post	The window server drawable object is destroyed. The instance is no longer associated
sl@0
  2305
		with a RSgDrawable specific resource. The reference counter of the underlying
sl@0
  2306
		image resource is decremented. 
sl@0
  2307
*/
sl@0
  2308
EXPORT_C void RWsDrawableSource::Close()
sl@0
  2309
	{
sl@0
  2310
	if (iWsHandle)
sl@0
  2311
		{
sl@0
  2312
		Write(EWsDrawableSourceOpFree);
sl@0
  2313
		iWsHandle = 0;
sl@0
  2314
		iDrawableId = KSgNullDrawableId;
sl@0
  2315
		iScreenNumber = KSgScreenIdMain;
sl@0
  2316
		}
sl@0
  2317
	}
sl@0
  2318
sl@0
  2319
/**
sl@0
  2320
 Get the unique ID of the associated drawable resource.
sl@0
  2321
 */
sl@0
  2322
EXPORT_C const TSgDrawableId& RWsDrawableSource::DrawableId() const
sl@0
  2323
	{
sl@0
  2324
	return iDrawableId;
sl@0
  2325
	}
sl@0
  2326
sl@0
  2327
/**
sl@0
  2328
 Get the screen number of the drawable source.
sl@0
  2329
 */
sl@0
  2330
EXPORT_C TInt RWsDrawableSource::ScreenNumber() const
sl@0
  2331
	{
sl@0
  2332
	return iScreenNumber;
sl@0
  2333
	}