1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/RGC.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1734 @@
1.4 +// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Shells for window server graphics class
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <graphics/wsdrawresource.h>
1.23 +#include "../SERVER/w32cmd.h"
1.24 +#include "CLIENT.H"
1.25 +#include "w32comm.h"
1.26 +#include <graphics/gdi/gdiconsts.h>
1.27 +#include <graphics/gdi/gdistructs.h>
1.28 +
1.29 +NONSHARABLE_STRUCT(CWindowGc::CPimpl): public CBase
1.30 +/** @internalComponent @released */
1.31 + {
1.32 + friend class CWindowGc;
1.33 +
1.34 + CPimpl();
1.35 + CFbsFont *iFont;
1.36 + };
1.37 +
1.38 +CWindowGc::CPimpl::CPimpl() : iFont(NULL)
1.39 + {
1.40 + }
1.41 +
1.42 +enum {EPolygonMaxHeaderSize=sizeof(TWsCmdHeader)+sizeof(TWsGcCmdSegmentedDrawPolygonData)};
1.43 +
1.44 +EXPORT_C CWindowGc::CWindowGc(CWsScreenDevice *aDevice) : MWsClientClass(aDevice->iBuffer), iPimpl(NULL), iDevice(aDevice)
1.45 +/** Constructor which creates, but does not initialise a graphics context.
1.46 +
1.47 +@param aDevice Any screen device owned by the same session. Its life time
1.48 +should be at least as long as the gc itself.
1.49 +@see CWsScreenDevice::CreateContext() */
1.50 + {}
1.51 +
1.52 +EXPORT_C CWindowGc::~CWindowGc()
1.53 +/** Destructor. */
1.54 + {
1.55 + if (iBuffer && iWsHandle)
1.56 + Write(EWsGcOpFree);
1.57 + delete iPimpl;
1.58 + }
1.59 +
1.60 +void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC &aBuf,TInt opcode,TInt opcodePtr) const
1.61 + {
1.62 + if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)))
1.63 + {
1.64 + WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr);
1.65 + }
1.66 + else
1.67 + {
1.68 + Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode);
1.69 + }
1.70 + }
1.71 +
1.72 +void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC8 &aBuf,TInt opcode,TInt opcodePtr) const
1.73 + {
1.74 + if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)))
1.75 + {
1.76 + WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr);
1.77 + }
1.78 + else
1.79 + {
1.80 + Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode);
1.81 + }
1.82 + }
1.83 +
1.84 +EXPORT_C TInt CWindowGc::Construct()
1.85 +/** Completes construction.
1.86 +
1.87 +@return KErrNone if successful, otherwise a leave error.
1.88 +@panic TW32Panic 17 in debug builds if called on an already constructed object.
1.89 +This function always causes a flush of the window server buffer. */
1.90 + {
1.91 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.92 + iPimpl = new CPimpl;
1.93 + if (!iPimpl)
1.94 + return KErrNoMemory;
1.95 + TInt ret;
1.96 + if ((ret=iBuffer->WriteReplyWs(EWsClOpCreateGc))<0)
1.97 + return(ret);
1.98 + iWsHandle=ret;
1.99 + return(KErrNone);
1.100 + }
1.101 +
1.102 +EXPORT_C void CWindowGc::Activate(RDrawableWindow &aDevice)
1.103 +/** 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.
1.104 +
1.105 +When drawing is complete, the code using the context should call Deactivate().
1.106 +Draw methods invoked after an Activate() will affect the window specified.
1.107 +A graphics context can only be active for one window at a time. A panic occurs
1.108 +if a draw function is called before calling this function, or if Activate()
1.109 +is called twice without an intervening Deactivate().
1.110 +
1.111 +@param aWindow The window for which the graphics context is to be activated. */
1.112 + {
1.113 + TUint devicePointer = WriteReplyInt(aDevice.WsHandle(),EWsGcOpActivate);
1.114 + iDevice = (CWsScreenDevice*)devicePointer;
1.115 + }
1.116 +
1.117 +EXPORT_C void CWindowGc::Deactivate()
1.118 +/** Frees the graphics context to be used with another window.
1.119 +
1.120 +This method should be called when the application has completed drawing to
1.121 +the window. */
1.122 + {
1.123 + Write(EWsGcOpDeactivate);
1.124 + iPimpl->iFont=NULL;
1.125 + }
1.126 +
1.127 +//====================Functions from GDI.H===============================
1.128 +
1.129 +EXPORT_C CGraphicsDevice* CWindowGc::Device() const
1.130 +/** Returns a pointer to the device, more specifically a CWsScreenDevice, for the screen that the WindowGc was last activated on.
1.131 +If the WindowGc has not been activated at all, it then returns the device that was passed to its constructor.
1.132 +
1.133 +The user should be careful when calling this function since it can return the screen device of any screen in the system.
1.134 +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.
1.135 +@return A pointer to the device for the screen that the WindowGc was last activated on or the device passed at construction*/
1.136 + {
1.137 + return(iDevice);
1.138 + }
1.139 +
1.140 +EXPORT_C void CWindowGc::SetOrigin(const TPoint &aPoint)
1.141 +/** Sets the position of the co-ordinate origin.
1.142 +
1.143 +All subsequent drawing operations are then done relative to this origin. The
1.144 +default origin is (0,0), the top left corner of the window.
1.145 +
1.146 +@param aPoint A point for the origin, default (0,0).
1.147 +@see CGraphicsContext::SetOrigin() */
1.148 + {
1.149 + WritePoint(aPoint,EWsGcOpSetOrigin);
1.150 + }
1.151 +
1.152 +EXPORT_C void CWindowGc::SetClippingRect(const TRect& aRect)
1.153 +/** Sets a clipping rectangle.
1.154 +
1.155 +Graphics drawn to the window are clipped, so that only items which fall within
1.156 +the rectangle are displayed.
1.157 +
1.158 +Note that clipping is additive. If a clipping region has been set using SetClippingRegion()
1.159 +then clipping will be to the intersection of that region and this rectangle.
1.160 +
1.161 +@param aRect The clipping rectangle.
1.162 +@see SetClippingRegion() */
1.163 + {
1.164 + WriteRect(aRect,EWsGcOpSetClippingRect);
1.165 + }
1.166 +
1.167 +EXPORT_C void CWindowGc::CancelClippingRect()
1.168 +/** Cancels the clipping rectangle.
1.169 +
1.170 +@see SetClippingRect() */
1.171 + {
1.172 + Write(EWsGcOpCancelClippingRect);
1.173 + }
1.174 +
1.175 +EXPORT_C TInt CWindowGc::SetClippingRegion(const TRegion &aRegion)
1.176 +/** Sets the clipping region.
1.177 +
1.178 +Drawing is always clipped to the visible area of a window. The region specified
1.179 +by this function is in addition to that area.
1.180 +
1.181 +This function always causes a flush of the window server buffer.
1.182 +
1.183 +@param aClippingRegion New clipping region.
1.184 +@return KErrNone if successful, KErrNoMemory if there is insufficient memory
1.185 +to create the region on the server side, otherwise another error code. */
1.186 + {
1.187 + const TInt regionCount=aRegion.Count();
1.188 + TPtrC8 ptrRect(reinterpret_cast<const TUint8*>(aRegion.RectangleList()),regionCount*sizeof(TRect));
1.189 + return(WriteReplyByProvidingRemoteReadAccess(®ionCount,sizeof(regionCount),&ptrRect,EWsGcOpSetClippingRegion));
1.190 + }
1.191 +
1.192 +EXPORT_C void CWindowGc::CancelClippingRegion()
1.193 +/** Cancels the current clipping region. */
1.194 + {
1.195 + Write(EWsGcOpCancelClippingRegion);
1.196 + }
1.197 +
1.198 +EXPORT_C void CWindowGc::SetDrawMode(TDrawMode aDrawingMode)
1.199 +/** Sets the drawing mode.
1.200 +
1.201 +This affects the colour that is actually drawn, because it defines the way
1.202 +that the current screen colour logically combines with the current pen colour
1.203 +and brush colour.
1.204 +
1.205 +There are 13 drawing modes (see CGraphicsContext::TDrawMode enum), each giving
1.206 +different logical combinations of pen, brush and screen colours. Each mode
1.207 +is produced by ORing together different combinations of seven drawing mode
1.208 +components (see CGraphicsContext::TDrawModeComponents enum).
1.209 +
1.210 +The three most important modes are TDrawMode::EDrawModePEN, TDrawMode::EDrawModeNOTSCREEN
1.211 +and TDrawMode::EDrawModeXOR. The default drawing mode is TDrawMode::EDrawModePEN.
1.212 +
1.213 +The drawing mode is over-ridden for line and shape drawing functions when
1.214 +a wide pen line has been selected. It is forced to TDrawMode::EDrawModePEN.
1.215 +This is to prevent undesired effects at line joins (vertexes).
1.216 +
1.217 +Notes:
1.218 +
1.219 +TDrawMode::EDrawModeAND gives a "colour filter" effect. For example:
1.220 +
1.221 +ANDing with white gives the original colour
1.222 +
1.223 +ANDing with black gives black
1.224 +
1.225 +TDrawMode::EDrawModeOR gives a "colour boost" effect. For example:
1.226 +
1.227 +ORing with black gives the original colour
1.228 +
1.229 +ORing with white gives white
1.230 +
1.231 +TDrawMode::EDrawModeXOR gives an "Exclusive OR" effect. For example:
1.232 +
1.233 +white XOR black gives white
1.234 +
1.235 +white XOR white gives black
1.236 +
1.237 +black XOR black gives black
1.238 +
1.239 +@param aDrawingMode A drawing mode.
1.240 +@see CGraphicsContext::SetDrawMode() */
1.241 + {
1.242 + WriteInt(aDrawingMode,EWsGcOpSetDrawMode);
1.243 + }
1.244 +
1.245 +EXPORT_C void CWindowGc::UseFont(const CFont *aFont)
1.246 +/** Sets this context's font.
1.247 +
1.248 +The font is used for text drawing. If the font is already in the font and
1.249 +bitmap server's memory the GDI will share that copy.
1.250 +
1.251 +Note that this function must be called prior to drawing text or the calling
1.252 +thread will panic.
1.253 +
1.254 +@param aFont A device font.
1.255 +@see CGraphicsContext::UseFont() */
1.256 + {
1.257 + if (iPimpl->iFont!=(CFbsFont *)aFont)
1.258 + {
1.259 + iPimpl->iFont=(CFbsFont *)aFont;
1.260 + WriteInt(iPimpl->iFont->Handle(),EWsGcOpUseFont);
1.261 + }
1.262 + }
1.263 +
1.264 +EXPORT_C void CWindowGc::DiscardFont()
1.265 +/** Discards a font.
1.266 +
1.267 +This frees up the memory used (if the font is not being shared with some other
1.268 +process).
1.269 +
1.270 +Note that if no font is in use when this function is called, then there is no effect.
1.271 +
1.272 +@see CGraphicsContext::DiscardFont() */
1.273 + {
1.274 + Write(EWsGcOpDiscardFont);
1.275 + iPimpl->iFont=NULL;
1.276 + }
1.277 +
1.278 +EXPORT_C void CWindowGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle)
1.279 +/** Sets the underline style for all subsequently drawn text.
1.280 +
1.281 +@param aUnderlineStyle The underline style: either on or off.
1.282 +@see CGraphicsContext::SetUnderlineStyle() */
1.283 + {
1.284 + WriteInt(aUnderlineStyle,EWsGcOpSetUnderlineStyle);
1.285 + }
1.286 +
1.287 +EXPORT_C void CWindowGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)
1.288 +/** Sets the strikethrough style for all subsequently drawn text.
1.289 +
1.290 +@param aStrikethroughStyle The strikethrough style: either on or off.
1.291 +@see CGraphicsContext::SetStrikethroughStyle() */
1.292 + {
1.293 + WriteInt(aStrikethroughStyle,EWsGcOpSetStrikethroughStyle);
1.294 + }
1.295 +
1.296 +void CWindowGc::SetJustification(TInt aExcessWidth,TInt aNumGaps, TInt aOpcode)
1.297 + {
1.298 + TWsGcCmdSetJustification justification;
1.299 +
1.300 + justification.excessWidth=aExcessWidth;
1.301 + justification.numGaps=aNumGaps;
1.302 + Write(&justification,sizeof(justification),aOpcode);
1.303 + }
1.304 +
1.305 +EXPORT_C void CWindowGc::SetWordJustification(TInt aExcessWidth,TInt aNumGaps)
1.306 +/** Sets word justification.
1.307 +
1.308 +This function is particularly useful for doing WYSIWYG underlining or strikethrough,
1.309 +as it ensures that the lines extend correctly into the gaps between words. It is not
1.310 +intended for regular use by developers.
1.311 +
1.312 +@param aExcessWidth The excess width (in pixels) to be distributed between
1.313 +the specified number of gaps (starting immediately)
1.314 +@param aNumGaps The number of gaps between words
1.315 +@see CGraphicsContext::SetWordJustification() */
1.316 + {
1.317 + SetJustification(aExcessWidth, aNumGaps, EWsGcOpSetWordJustification);
1.318 + }
1.319 +
1.320 +EXPORT_C void CWindowGc::SetCharJustification(TInt aExcessWidth,TInt aNumChars)
1.321 +/** Sets the character justification.
1.322 +
1.323 +This function is used primarily to get accurate WYSIWYG, and is not intended
1.324 +for regular use by developers.
1.325 +
1.326 +The text line that is to be justified has a certain number of characters (this
1.327 +includes the spaces between the words). It also has a distance (in pixels)
1.328 +between the end of the last word and the actual end of the line (right hand
1.329 +margin, usually). These excess width pixels are distributed amongst all the
1.330 +characters, increasing the gaps between them, to achieve full justification
1.331 +of the text line.
1.332 +
1.333 +This function is particularly useful for WYSIWYG underlining or strikethrough,
1.334 +as it ensures that the lines extend into the gaps between characters.
1.335 +
1.336 +See CGraphicsContext::SetCharJustification() for more information.
1.337 +
1.338 +@param aExcessWidth The excess width (in pixels) to be distributed between
1.339 +the specified number of characters.
1.340 +@param aNumChars The number of characters involved
1.341 +@see CGraphicsContext::SetCharJustification() */
1.342 + {
1.343 + SetJustification(aExcessWidth, aNumChars, EWsGcOpSetCharJustification);
1.344 + }
1.345 +
1.346 +EXPORT_C void CWindowGc::SetPenColor(const TRgb &aColor)
1.347 +/** Sets the pen colour.
1.348 +
1.349 +The effective pen colour depends on the drawing mode (see SetDrawMode()).
1.350 +
1.351 +The default pen colour is black.
1.352 +
1.353 +@param aColor The RGB colour for the pen.
1.354 +@see CGraphicsContext::SetPenColor() */
1.355 + {
1.356 + WriteInt(aColor.Internal(),EWsGcOpSetPenColor);
1.357 + }
1.358 +
1.359 +EXPORT_C void CWindowGc::SetPenStyle(TPenStyle aPenStyle)
1.360 +/** Sets the line drawing style for the pen.
1.361 +
1.362 +The pen is used when drawing lines and for the outline of filled shapes. There
1.363 +are 6 pen styles (see CGraphicsContext::TPenStyle enum). If no pen style is
1.364 +set, the default is TPenStyle::ESolidPen.
1.365 +
1.366 +To use a pen style, its full context must be given, e.g. for a null pen: CGraphicsContext::TPenStyle::ENullPen.
1.367 +
1.368 +@param aPenStyle A pen style.
1.369 +@see CGraphicsContext::SetPenStyle() */
1.370 + {
1.371 + WriteInt(aPenStyle,EWsGcOpSetPenStyle);
1.372 + }
1.373 +
1.374 +EXPORT_C void CWindowGc::SetPenSize(const TSize& aSize)
1.375 +/** Sets the line drawing size for the pen.
1.376 +
1.377 +Lines of size greater than one pixel are drawn with rounded ends that extend
1.378 +beyond the end points, (as if the line is drawn using a circular pen tip of
1.379 +the specified size). Rounded ends of lines drawn with a wide pen are always
1.380 +drawn in TDrawMode::EDrawModePEN mode, overriding whatever mode has been set
1.381 +using SetDrawMode().
1.382 +
1.383 +@param aSize A line size, the default being 1 pixel.
1.384 +@see CGraphicsContext::SetPenSize() */
1.385 + {
1.386 + WriteSize(aSize,EWsGcOpSetPenSize);
1.387 + }
1.388 +
1.389 +EXPORT_C void CWindowGc::SetBrushColor(const TRgb &aColor)
1.390 +/** Sets the brush colour.
1.391 +
1.392 +The effective brush colour depends on the drawing mode (see SetDrawMode()).
1.393 +If no brush colour has been set, it defaults to white. However the default
1.394 +brush style is null, so when drawing to a window, the default appears to be
1.395 +the window's background colour.
1.396 +
1.397 +@param aColor The RGB colour for the brush.
1.398 +@see CGraphicsContext::SetBrushColor() */
1.399 + {
1.400 + WriteInt(aColor.Internal(),EWsGcOpSetBrushColor);
1.401 + }
1.402 +
1.403 +EXPORT_C void CWindowGc::SetBrushStyle(TBrushStyle aBrushStyle)
1.404 +/** Sets the line drawing style for the brush.
1.405 +
1.406 +The GDI provides ten brush styles, including six built-in hatching patterns
1.407 +(see CGraphicsContext::TBrushStyle).
1.408 +
1.409 +Use TBrushStyle::ENullBrush to draw the outline of a fillable shape on its
1.410 +own, without filling.
1.411 +
1.412 +If the TBrushStyle::EPatternedBrush style is set, but no bitmap pattern has
1.413 +been selected using UseBrushPattern(), then the brush defaults to TBrushStyle::ENullBrush.
1.414 +
1.415 +Hatching lines are done in the current brush colour, set using SetBrushColor().
1.416 +Hatching can be overlaid on other graphics. The hatching pattern starts at
1.417 +the brush origin, set using SetBrushOrigin().
1.418 +
1.419 +@param aBrushStyle The brush style.
1.420 +@see CGraphicsContext::SetBrushStyle() */
1.421 + {
1.422 + WriteInt(aBrushStyle,EWsGcOpSetBrushStyle);
1.423 + }
1.424 +
1.425 +EXPORT_C void CWindowGc::SetBrushOrigin(const TPoint &aOrigin)
1.426 +/** Sets the brush pattern origin.
1.427 +
1.428 +This specifies the position of the pixel in the top left corner of a reference
1.429 +pattern tile, (in absolute device co-ordinates). Other copies of the pattern
1.430 +tile are then drawn around the reference one. Thus the brush origin can be
1.431 +set as the top left corner of a shape.
1.432 +
1.433 +The brush pattern may be a built-in style (see SetBrushStyle()), or a bitmap.
1.434 +To use a bitmap, the brush must have a pattern set (see UseBrushPattern())
1.435 +and the brush style must be set to TBrushStyle::EPatternedBrush.
1.436 +
1.437 +Notes:
1.438 +
1.439 +If SetBrushOrigin() is not used, then the origin defaults to (0,0).
1.440 +
1.441 +This brush origin remains in effect for all fillable shapes drawn subsequently,
1.442 +until a new brush origin is set. Shapes can thus be considered as windows
1.443 +onto a continuous pattern field (covering the whole clipping region of a screen
1.444 +device, or the whole device area of a printer).
1.445 +
1.446 +@param aOrigin The origin point for the brush.
1.447 +@see CGraphicsContext::SetBrushOrigin() */
1.448 + {
1.449 + WritePoint(aOrigin,EWsGcOpSetBrushOrigin);
1.450 + }
1.451 +
1.452 +EXPORT_C void CWindowGc::UseBrushPattern(const CFbsBitmap *aDevice)
1.453 +/** Sets the brush pattern to the specified bitmap.
1.454 +
1.455 +For the brush to actually use the bitmap, TBrushStyle::EPatternedBrush must
1.456 +be used to set the brush style (see SetBrushStyle()). When the brush pattern
1.457 +is no longer required, use DiscardBrushPattern() to free up the memory used,
1.458 +(if the bitmap is not being shared). If UseBrushPattern() is used again without
1.459 +using DiscardBrushPattern() then the previous pattern is discarded automatically.
1.460 +
1.461 +Notes:
1.462 +
1.463 +When loading a bitmap, the GDI checks to see if the bitmap is already in memory.
1.464 +If the bitmap is already there, then that copy is shared.
1.465 +
1.466 +The brush does not need to have a pattern set at all. There are several built-in
1.467 +hatching patterns, which can be selected using SetBrushStyle().
1.468 +
1.469 +@param aDevice A bitmap pattern for the brush
1.470 +@see CGraphicsContext::UseBrushPattern() */
1.471 + {
1.472 + WriteInt(aDevice->Handle(),EWsGcOpUseBrushPattern);
1.473 + AddToBitmapArray(aDevice->Handle());
1.474 + }
1.475 +
1.476 +EXPORT_C void CWindowGc::DiscardBrushPattern()
1.477 +/** Discards a non-built-in brush pattern.
1.478 +
1.479 +This frees up the memory used for the bitmap, if it is not being shared by
1.480 +another process.
1.481 +
1.482 +If no brush pattern has been set when this function is called, it has no effect.
1.483 +
1.484 +@see CGraphicsContext::DiscardBrushPattern() */
1.485 + {
1.486 + Write(EWsGcOpDiscardBrushPattern);
1.487 + }
1.488 +
1.489 +EXPORT_C void CWindowGc::Plot(const TPoint &aPoint)
1.490 +/** Draws a single point.
1.491 +
1.492 +The point is drawn with the current pen settings using the current drawing
1.493 +mode.
1.494 +
1.495 +Note: if the pen size is greater than one pixel, a filled circle of the current
1.496 +pen colour is drawn, with the pen size as the diameter and the plotted point
1.497 +as the centre. If the pen size is an even number of pixels, the extra pixels
1.498 +are drawn below and to the right of the centre. See SetPenSize().
1.499 +
1.500 +@param aPoint The point to be drawn.
1.501 +@see CGraphicsContext::Plot() */
1.502 + {
1.503 + WritePoint(aPoint,EWsGcOpPlot);
1.504 + }
1.505 +
1.506 +EXPORT_C void CWindowGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2)
1.507 +/** Draws a straight line between two points.
1.508 +
1.509 +@param aPoint1 The point at the start of the line.
1.510 +@param aPoint2 The point at the end of the line.
1.511 +@see CGraphicsContext::DrawLine() */
1.512 + {
1.513 + TWsGcCmdDrawLine drawLine(aPoint1,aPoint2);
1.514 + Write(&drawLine,sizeof(drawLine),EWsGcOpDrawLine);
1.515 + }
1.516 +
1.517 +EXPORT_C void CWindowGc::MoveTo(const TPoint &aPoint)
1.518 +/** Moves the internal drawing position relative to the co-ordinate origin, without
1.519 +drawing a line.
1.520 +
1.521 +A subsequent call to DrawLineTo() or DrawLineBy() will then use the new internal
1.522 +drawing position as the start point for the line drawn.
1.523 +
1.524 +Notes:
1.525 +
1.526 +The operations DrawLine(), DrawLineTo(), DrawLineBy() and DrawPolyline() also
1.527 +change the internal drawing position to the last point of the drawn line(s).
1.528 +
1.529 +The internal drawing position is set to the co-ordinate origin if no drawing
1.530 +or moving operations have yet taken place.
1.531 +
1.532 +@param aPoint The point to move the internal drawing position to.
1.533 +@see CGraphicsContext::MoveTo()
1.534 +@see CGraphicsContext::MoveBy() */
1.535 + {
1.536 + WritePoint(aPoint,EWsGcOpMoveTo);
1.537 + }
1.538 +
1.539 +EXPORT_C void CWindowGc::MoveBy(const TPoint &aPoint)
1.540 +/** Moves the internal drawing position by a vector, without drawing a line.
1.541 +
1.542 +The internal drawing position is moved relative to its current co-ordinates.
1.543 +
1.544 +@param aPoint The vector to move the internal drawing position by.
1.545 +@see CGraphicsContext::MoveBy()
1.546 +@see CGraphicsContext::MoveTo() */
1.547 + {
1.548 + WritePoint(aPoint,EWsGcOpMoveBy);
1.549 + }
1.550 +
1.551 +EXPORT_C void CWindowGc::DrawLineTo(const TPoint &aPoint)
1.552 +/** Draws a straight line from the current internal drawing position to a point.
1.553 +
1.554 +@param aPoint The point at the end of the line.
1.555 +@see CGraphicsContext::DrawLineTo() */
1.556 + {
1.557 + WritePoint(aPoint,EWsGcOpDrawTo);
1.558 + }
1.559 +
1.560 +EXPORT_C void CWindowGc::DrawLineBy(const TPoint &aPoint)
1.561 +/** Draws a straight line relative to the current internal drawing position, using
1.562 +a vector.
1.563 +
1.564 +The start point of the line is the current internal drawing position. The
1.565 +vector aVector is added to the internal drawing position to give the end point
1.566 +of the line
1.567 +
1.568 +@param aPoint The vector to add to the current internal drawing position,
1.569 +giving the end point of the line.
1.570 +@see CGraphicsContext::DrawLineBy() */
1.571 + {
1.572 + WritePoint(aPoint,EWsGcOpDrawBy);
1.573 + }
1.574 +
1.575 +void CWindowGc::doDrawPolyLine(const CArrayFix<TPoint> *aPointArray, const TPoint* aPointList,TInt aNumPoints)
1.576 + {
1.577 + TWsGcOpcodes opcode=EWsGcOpDrawPolyLine;
1.578 + TWsGcCmdDrawPolyLine polyLine;
1.579 + TInt maxBufLen=(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(polyLine))/sizeof(TPoint);
1.580 + TInt sent=0;
1.581 + while(sent<aNumPoints)
1.582 + {
1.583 + TInt availableLen;
1.584 + const TPoint *ptr;
1.585 + if (aPointArray)
1.586 + {
1.587 + ptr=&(*aPointArray)[sent];
1.588 + availableLen=aPointArray->End(sent)-ptr;
1.589 + }
1.590 + else
1.591 + {
1.592 + ptr=aPointList+sent;
1.593 + availableLen=aNumPoints-sent;
1.594 + }
1.595 + polyLine.numPoints=Min(availableLen,maxBufLen);
1.596 + sent+=polyLine.numPoints;
1.597 + polyLine.more=(sent!=aNumPoints);
1.598 + Write(&polyLine,sizeof(polyLine),ptr,polyLine.numPoints*sizeof(TPoint),opcode);
1.599 + polyLine.last=ptr[polyLine.numPoints-1];
1.600 + opcode=EWsGcOpDrawPolyLineContinued;
1.601 + }
1.602 + }
1.603 +
1.604 +EXPORT_C void CWindowGc::DrawPolyLine(const TPoint* aPointList,TInt aNumPoints)
1.605 +/** Draws a polyline using points in a list.
1.606 +
1.607 +A polyline is a series of concatenated straight lines joining a set of points.
1.608 +
1.609 +@param aPointList Pointer to a list of points on the polyline.
1.610 +@param aNumPoints The number of points in the point list.
1.611 +@see CGraphicsContext::DrawPolyLine() */
1.612 + {
1.613 + doDrawPolyLine(NULL,aPointList,aNumPoints);
1.614 + }
1.615 +
1.616 +EXPORT_C void CWindowGc::DrawPolyLine(const CArrayFix<TPoint> *aPointArray)
1.617 +/** Draws a polyline using points in an array.
1.618 +
1.619 +A polyline is a series of concatenated straight lines joining a set of points.
1.620 +
1.621 +@param aPointArray An array containing the points on the polyline.
1.622 +@see CGraphicsContext::DrawPolyLine() */
1.623 + {
1.624 + doDrawPolyLine(aPointArray,NULL,aPointArray->Count());
1.625 + }
1.626 +
1.627 +TInt CWindowGc::doDrawPolygon(const CArrayFix<TPoint> *aPointArray,const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule)
1.628 + {
1.629 + if (aNumPoints<=0)
1.630 + return(KErrNone);
1.631 + TWsGcCmdSegmentedDrawPolygonData polyData;
1.632 + polyData.index=0;
1.633 + TInt maxBufLen=(iBuffer->BufferSize()-EPolygonMaxHeaderSize)/sizeof(TPoint);
1.634 + FOREVER
1.635 + {
1.636 + const TPoint *ptr;
1.637 + TInt availableLen;
1.638 + if (aPointArray)
1.639 + {
1.640 + ptr=&(*aPointArray)[polyData.index];
1.641 + availableLen=aPointArray->End(polyData.index)-ptr;
1.642 + }
1.643 + else
1.644 + {
1.645 + ptr=aPointList+polyData.index;
1.646 + availableLen=aNumPoints-polyData.index;
1.647 + }
1.648 + polyData.numPoints=Min(availableLen,maxBufLen);
1.649 + if (polyData.index==0) // First time around
1.650 + {
1.651 + if (polyData.numPoints==aNumPoints) // Can it be done in one go?
1.652 + {
1.653 + TWsGcCmdDrawPolygon drawPolygon;
1.654 + drawPolygon.numPoints=aNumPoints;
1.655 + drawPolygon.fillRule=aFillRule;
1.656 + Write(&drawPolygon,sizeof(drawPolygon),ptr,aNumPoints*sizeof(TPoint),EWsGcOpDrawPolygon);
1.657 + break;
1.658 + }
1.659 + TWsGcCmdStartSegmentedDrawPolygon start;
1.660 + start.totalNumPoints=aNumPoints;
1.661 + TInt err=WriteReply(&start,sizeof(start),EWsGcOpStartSegmentedDrawPolygon);
1.662 + if (err!=KErrNone)
1.663 + return(err);
1.664 + }
1.665 + Write(&polyData,sizeof(polyData),ptr,polyData.numPoints*sizeof(TPoint),EWsGcOpSegmentedDrawPolygonData);
1.666 + polyData.index+=polyData.numPoints;
1.667 + if (polyData.index==aNumPoints)
1.668 + {
1.669 + TWsGcCmdDrawSegmentedPolygon draw;
1.670 + draw.fillRule=aFillRule;
1.671 + Write(&draw,sizeof(draw),EWsGcOpDrawSegmentedPolygon);
1.672 + break;
1.673 + }
1.674 + }
1.675 + return(KErrNone);
1.676 + }
1.677 +
1.678 +EXPORT_C TInt CWindowGc::DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule)
1.679 +/** Draws and fills a polygon using points defined in a list.
1.680 +
1.681 +The first TPoint in the list defines the start of the first side of the polygon.
1.682 +The second TPoint defines the second vertex (the end point of the first side
1.683 +and the start point of the second side) and so on. The final side of the polygon
1.684 +is drawn using the last TPoint from the array or list, and the line drawn
1.685 +to the start point of the first side.
1.686 +
1.687 +Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate
1.688 +(the default), or TFillRule::EWinding. To explain the difference between these
1.689 +rules, the concept of a winding number needs to be introduced. The area outside
1.690 +any of the loops of the polygon has a winding number of zero, and is never
1.691 +filled. An inside a loop which is bounded by an area with winding number 0
1.692 +has a winding number of 1. If an area is within a loop that is bounded by
1.693 +an area with winding number 1, e.g. a loop within a loop, has a winding number
1.694 +of 2, and so on.
1.695 +
1.696 +The filling of a polygon proceeds according to this algorithm:
1.697 +
1.698 +If aFillRule is TFillRule::EAlternate (default) and it has an odd winding
1.699 +number, then fill the surrounding area.
1.700 +
1.701 +If aFillRule is TFillRule::EWinding and it has a winding number greater than
1.702 +zero, then fill the surrounding area.
1.703 +
1.704 +This function always causes a flush of the window server buffer.
1.705 +
1.706 +@param aPointList Pointer to a list of points, specifying the vertices of
1.707 +the polygon.
1.708 +@param aNumPoints The number of points in the vertex list
1.709 +@param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding.
1.710 +@return KErrNone if successful, otherwise another of the system-wide error
1.711 +codes.
1.712 +@see CGraphicsContext::DrawPolygon() */
1.713 + {
1.714 + return(doDrawPolygon(NULL,aPointList,aNumPoints,aFillRule));
1.715 + }
1.716 +
1.717 +EXPORT_C TInt CWindowGc::DrawPolygon(const CArrayFix<TPoint> *aPointArray,TFillRule aFillRule)
1.718 +/** Draws and fills a polygon using points defined in an array.
1.719 +
1.720 +The first TPoint in the array defines the start of the first side of the polygon.
1.721 +The second TPoint defines the second vertex (the end point of the first side
1.722 +and the start point of the second side) and so on. The final side of the polygon
1.723 +is drawn using the last TPoint from the array or list, and the line drawn
1.724 +to the start point of the first side.
1.725 +
1.726 +Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate
1.727 +(the default), or TFillRule::EWinding. To explain the difference between these
1.728 +rules, the concept of a winding number needs to be introduced. The area outside
1.729 +any of the loops of the polygon has a winding number of zero, and is never
1.730 +filled. An inside a loop which is bounded by an area with winding number 0
1.731 +has a winding number of 1. If an area is within a loop that is bounded by
1.732 +an area with winding number 1, e.g. a loop within a loop, has a winding number
1.733 +of 2, and so on.
1.734 +
1.735 +The filling of a polygon proceeds according to this algorithm:
1.736 +
1.737 +If aFillRule is TFillRule::EAlternate (default) and it has an odd winding
1.738 +number, then fill the surrounding area.
1.739 +
1.740 +If aFillRule is TFillRule::EWinding and it has a winding number greater than
1.741 +zero, then fill the surrounding area.
1.742 +
1.743 +This function always causes a flush of the window server buffer.
1.744 +
1.745 +@param aPointArray An array of points, specifying the vertices of the polygon.
1.746 +@param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding.
1.747 +@return KErrNone if successful, otherwise another of the system-wide error
1.748 +codes.
1.749 +@see CGraphicsContext::DrawPolygon() */
1.750 + {
1.751 + return(doDrawPolygon(aPointArray,NULL,aPointArray->Count(),aFillRule));
1.752 + }
1.753 +
1.754 +void CWindowGc::DrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd, TInt aOpcode)
1.755 + {
1.756 + TWsGcCmdDrawArcOrPie cmd(aRect,aStart,aEnd);
1.757 + Write(&cmd,sizeof(cmd),aOpcode);
1.758 + }
1.759 +
1.760 +EXPORT_C void CWindowGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
1.761 +/** Draws an arc (a portion of an ellipse).
1.762 +
1.763 +The point aStart is used to define one end of a line from the geometric centre
1.764 +of the ellipse. The point of intersection between this line and the ellipse
1.765 +defines the start point of the arc. The point aEnd is used to define one end
1.766 +of a second line from the geometric centre of the ellipse. The point of intersection
1.767 +between this line and the ellipse defines the end point of the arc. The pixels
1.768 +at both the start point and the end point are drawn.
1.769 +
1.770 +The arc itself is the segment of the ellipse in an anti-clockwise direction
1.771 +from the start point to the end point.
1.772 +
1.773 +Notes
1.774 +
1.775 +A rectangle is used in the construction of the ellipse of which the arc is
1.776 +a segment. This rectangle is passed as an argument of type TRect.
1.777 +
1.778 +A wide line arc is drawn with the pixels distributed either side of a true
1.779 +ellipse, in such a way that the outer edge of the line would touch the edge
1.780 +of the construction rectangle. In other words, the ellipse used to construct
1.781 +it is slightly smaller than that for a single pixel line size.
1.782 +
1.783 +If aStart or aEnd are the ellipse centre then the line that defines the start/end
1.784 +of the arc defaults to one extending vertically above the centre point.
1.785 +
1.786 +If aStart and aEnd are the same point, or points on the same line through
1.787 +the ellipse centre then a complete unfilled ellipse is drawn.
1.788 +
1.789 +Line drawing is subject to pen colour, width and style and draw mode
1.790 +
1.791 +@param aRect The rectangle in which to draw the ellipse (of which the arc is
1.792 +a segment).
1.793 +@param aStart A point to define the start of the arc.
1.794 +@param aEnd A point to define the end of the arc.
1.795 +@see CGraphicsContext::DrawArc() */
1.796 + {
1.797 + DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawArc);
1.798 + }
1.799 +
1.800 +EXPORT_C void CWindowGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd)
1.801 +/** Draws and fills a pie-shaped slice of an ellipse.
1.802 +
1.803 +Outlines are subject to the current pen colour, width, style and draw mode.
1.804 +Set the pen to ENullPen for no outline. The fill is subject to brush style
1.805 +(colour, hash or pattern), the origin and the current drawing mode. Set the
1.806 +brush to ENullBrush for no fill.
1.807 +
1.808 +The point aStart is used to define one end of a line to the centre of the
1.809 +ellipse. The point of intersection between this line and the ellipse defines
1.810 +the start point of the arc bounding the pie slice. The point aEnd is used
1.811 +to define one end of a second line to the centre of the ellipse. The point
1.812 +of intersection between this line and the ellipse defines the end point of
1.813 +the arc bounding the pie slice. The pixels at the end point are not drawn.
1.814 +
1.815 +The pie slice itself is the area bounded by: the arc of the ellipse in an
1.816 +anticlockwise direction from the start point to the end point; the straight
1.817 +line from the start point from the geometric centre of the ellipse; the
1.818 +straight line from the end point from the geometric centre of the ellipse.
1.819 +
1.820 +The line drawn by the pen goes inside the rectangle given by the aRect argument.
1.821 +
1.822 +Notes:
1.823 +
1.824 +A rectangle is used in the construction of the pie slice. This rectangle is
1.825 +passed as an argument of type TRect. The curved edge of the pie slice is an
1.826 +arc of an ellipse constructed within the rectangle.
1.827 +
1.828 +A wide line edged pie slice has the arc drawn with the pixels distributed
1.829 +either side of a true ellipse. This is done in such a way that the outer edge
1.830 +of the line would touch the edge of the construction rectangle. In other words,
1.831 +the ellipse used to construct it is slightly smaller than that for a single
1.832 +pixel line size.
1.833 +
1.834 +If aStart or aEnd are the ellipse centre then the line that defines the start/end
1.835 +of the arc defaults to one extending vertically above the centre point.
1.836 +
1.837 +If aStart and aEnd are the same point, or points on the same line through
1.838 +the ellipse centre then a complete filled ellipse is drawn. A line is also
1.839 +drawn from the edge to the ellipse centre.
1.840 +
1.841 +@param aRect A rectangle in which to draw the ellipse bounding the pie slice
1.842 +@param aStart A point to define the start of the pie slice
1.843 +@param aEnd A point to define the end of the pie slice
1.844 +@see CGraphicsContext::DrawPie() */
1.845 + {
1.846 + DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawPie);
1.847 + }
1.848 +
1.849 +EXPORT_C void CWindowGc::DrawEllipse(const TRect &aRect)
1.850 +/** Draws and fills an ellipse.
1.851 +
1.852 +The ellipse is drawn inside the rectangle defined by the aRect argument. Any
1.853 +TRect that has odd pixel dimensions, has the bottom right corner trimmed to
1.854 +give even pixel dimensions before the ellipse is constructed.
1.855 +
1.856 +The column and row of pixels containing the bottom right co-ordinate of the
1.857 +aRect argument are not part of the rectangle.
1.858 +
1.859 +Note: a wide outline ellipse is drawn with the pixels distributed either side of
1.860 +a true ellipse, in such a way that the outer edge of the line touches the
1.861 +edge of the construction rectangle. In other words, the ellipse used to construct
1.862 +it is smaller than that for a single pixel line size.
1.863 +
1.864 +@param aRect The rectangle in which to draw the ellipse
1.865 +@see CGraphicsContext::DrawEllipse() */
1.866 + {
1.867 + WriteRect(aRect,EWsGcOpDrawEllipse);
1.868 + }
1.869 +
1.870 +EXPORT_C void CWindowGc::DrawRect(const TRect &aRect)
1.871 +/** Draws and fills a rectangle.
1.872 +
1.873 +The rectangle's border is drawn with the pen, and it is filled using the brush.
1.874 +
1.875 +@param aRect The rectangle to be drawn.
1.876 +@see CGraphicsContext::DrawRect() */
1.877 + {
1.878 + WriteRect(aRect,EWsGcOpDrawRect);
1.879 + }
1.880 +
1.881 +EXPORT_C void CWindowGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse)
1.882 +/** Draws and fills a rectangle with rounded corners.
1.883 +
1.884 +The rounded corners are each constructed as an arc of an ellipse. The dimensions
1.885 +of each corner (corner size and corner height) are given by aEllipse. See
1.886 +DrawArc() for a description of arc construction.
1.887 +
1.888 +The line drawn by the pen (if any) goes inside the rectangle given by the
1.889 +TRect argument.
1.890 +
1.891 +Notes:
1.892 +
1.893 +Dotted and dashed pen styles cannot be used for the outline of a rounded rectangle.
1.894 +
1.895 +If either corner size dimension is greater than half the corresponding rectangle
1.896 +length, the corner size dimension is reduced to half the rectangle size.
1.897 +
1.898 +@param aRect The rectangle to be drawn.
1.899 +@param aEllipse The dimensions of each corner.
1.900 +@see CGraphicsContext::DrawRoundRect() */
1.901 + {
1.902 + TWsGcCmdDrawRoundRect drawRoundRect(aRect,aEllipse);
1.903 + Write(&drawRoundRect,sizeof(drawRoundRect),EWsGcOpDrawRoundRect);
1.904 + }
1.905 +
1.906 +EXPORT_C void CWindowGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice)
1.907 +/** Draws a bitmap at a specified point.
1.908 +
1.909 +The function does a compress/stretch based on its internally stored size in
1.910 +twips. Note that if the twips value of the bitmap is not set then nothing
1.911 +is drawn (this is the default situation).
1.912 +
1.913 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.914 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.915 +At some point later WSERV may need to draw that window again and it will just replay the
1.916 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.917 +WSERV will effectively draw a different bitmap when it replays the commands.
1.918 +
1.919 +Note: this member function uses the bitmap's size in twips and does a stretch/compress
1.920 +blit using a linear DDA.
1.921 +
1.922 +@param aTopLeft The point where the top left pixel of the bitmap is to be
1.923 +drawn
1.924 +@param aDevice The source bitmap.
1.925 +@see CGraphicsContext::DrawBitmap() */
1.926 + {
1.927 + TWsGcCmdDrawBitmap drawBitmap(aTopLeft,aDevice->Handle());
1.928 + Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap);
1.929 + AddToBitmapArray(aDevice->Handle());
1.930 + }
1.931 +
1.932 +EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice)
1.933 +/** Draws a bitmap in a rectangle.
1.934 +
1.935 +The bitmap is compressed/stretched to fit the specified rectangle. Note that
1.936 +if the twips value of the bitmap is not set then nothing is drawn (this is
1.937 +the default situation).
1.938 +
1.939 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.940 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.941 +At some point later WSERV may need to draw that window again and it will just replay the
1.942 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.943 +WSERV will effectively draw a different bitmap when it replays the commands.
1.944 +
1.945 +Notes: this member function uses the bitmap's size in pixels and does a stretch/compress
1.946 +blit using a linear DDA.
1.947 +
1.948 +@param aDestRect The rectangle within which the bitmap is to be drawn.
1.949 +@param aDevice The source bitmap.
1.950 +@see CGraphicsContext::DrawBitmap() */
1.951 + {
1.952 + TWsGcCmdDrawBitmap2 drawBitmap(aDestRect,aDevice->Handle());
1.953 + Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap2);
1.954 + AddToBitmapArray(aDevice->Handle());
1.955 + }
1.956 +
1.957 +EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect)
1.958 +/** Draws a specified rectangle from a bitmap into another rectangle.
1.959 +
1.960 +The function compresses/stretches the specified rectangle from the bitmap
1.961 +to fit the destination rectangle. Note that if the twips value of the bitmap
1.962 +is not set then nothing is drawn (this is the default situation).
1.963 +
1.964 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.965 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.966 +At some point later WSERV may need to draw that window again and it will just replay the
1.967 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.968 +WSERV will effectively draw a different bitmap when it replays the commands.
1.969 +
1.970 +Note: this member function uses rectangle sizes in pixels and does a stretch/compress
1.971 +blit using a linear DDA.
1.972 +
1.973 +@param aDestRect The rectangle within which the bitmap is to be drawn.
1.974 +@param aDevice A source bitmap.
1.975 +@param aSourceRect The rectangle in the source bitmap that is copied to the
1.976 +destination rectangle.
1.977 +@see CGraphicsContext::DrawBitmap() */
1.978 + {
1.979 + TWsGcCmdDrawBitmap3 drawBitmap(aDestRect,aDevice->Handle(),aSourceRect);
1.980 + Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap3);
1.981 + AddToBitmapArray(aDevice->Handle());
1.982 + }
1.983 +
1.984 +/** Draws a specified rectangle from a bitmap and its mask into another rectangle.
1.985 +
1.986 +The function compresses/stretches the specified rectangle from the bitmap
1.987 +to fit the destination rectangle.
1.988 +The mask bitmap can be used as either a positive or negative mask. Masked
1.989 +pixels are not mapped to the destination rectangle.
1.990 +
1.991 +A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black
1.992 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.993 +being transferred to the destination rectangle. With aInvertMask=ETrue, white
1.994 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.995 +being transferred to the destination rectangle.
1.996 +
1.997 +If mask bitmap's display mode is EColor256, the function does AplhaBlending
1.998 +and ignores aInvertMask parameter.
1.999 +
1.1000 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1001 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1002 +At some point later WSERV may need to draw that window again and it will just replay the
1.1003 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1004 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1005 +
1.1006 +Note: this member function uses rectangle sizes in pixels and does a stretch/compress
1.1007 +blit using a linear DDA.
1.1008 +
1.1009 +@param aDestRect The rectangle within which the masked bitmap is to be drawn.
1.1010 +@param aBitmap A source bitmap.
1.1011 +@param aSourceRect The rectangle in the source bitmap that is copied to the
1.1012 +destination rectangle.
1.1013 +@param aMaskBitmap A mask bitmap.
1.1014 +@param aInvertMask If false, a source pixel that is masked by a black pixel
1.1015 +is not transferred to the destination rectangle. If true, then a source pixel
1.1016 +that is masked by a white pixel is not transferred to the destination rectangle. */
1.1017 +EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask)
1.1018 + {
1.1019 + TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask);
1.1020 + Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmapMasked);
1.1021 + AddToBitmapArray(aBitmap->Handle());
1.1022 + AddToBitmapArray(aMaskBitmap->Handle());
1.1023 + }
1.1024 +
1.1025 +EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask)
1.1026 +/** Draws a specified rectangle from a wserv bitmap and its mask into
1.1027 +another rectangle.
1.1028 +
1.1029 +The function compresses/stretches the specified rectangle from the bitmap
1.1030 +to fit the destination rectangle.
1.1031 +The mask bitmap can be used as either a positive or negative mask. Masked
1.1032 +pixels are not mapped to the destination rectangle.
1.1033 +
1.1034 +A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black
1.1035 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1036 +being transferred to the destination rectangle. With aInvertMask=ETrue, white
1.1037 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1038 +being transferred to the destination rectangle.
1.1039 +
1.1040 +If mask bitmap's display mode is EColor256, the function does AplhaBlending
1.1041 +and ignores aInvertMask parameter.
1.1042 +
1.1043 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1044 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1045 +At some point later WSERV may need to draw that window again and it will just replay the
1.1046 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1047 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1048 +
1.1049 +Note: this member function uses rectangle sizes in pixels and does a stretch/compress
1.1050 +blit using a linear DDA.
1.1051 +
1.1052 +@param aDestRect The rectangle within which the masked bitmap is to be drawn.
1.1053 +@param aBitmap A source wserv bitmap.
1.1054 +@param aSourceRect The rectangle in the source bitmap that is copied to the
1.1055 +destination rectangle.
1.1056 +@param aMaskBitmap A mask wserv bitmap.
1.1057 +@param aInvertMask If false, a source pixel that is masked by a black pixel
1.1058 +is not transferred to the destination rectangle. If true, then a source pixel
1.1059 +that is masked by a white pixel is not transferred to the destination rectangle. */
1.1060 + {
1.1061 + TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask);
1.1062 + Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpWsDrawBitmapMasked);
1.1063 + AddToBitmapArray(aBitmap->Handle());
1.1064 + AddToBitmapArray(aMaskBitmap->Handle());
1.1065 + }
1.1066 +EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf, const TPoint &aPos)
1.1067 +/** Draws horizontal text with no surrounding box.
1.1068 +
1.1069 +The appearance of the text is subject to the drawing mode, the font, pen colour,
1.1070 +word justification and character justification.
1.1071 +
1.1072 +A panic occurs if this function is called when there is no font: see UseFont().
1.1073 +
1.1074 +@param aBuf The string to write.
1.1075 +@param aPos The point specifying the position of the baseline at the left
1.1076 +end of the text.
1.1077 +@see CGraphicsContext::DrawText() */
1.1078 + {
1.1079 + TWsGcCmdDrawText printText(aPos,aBuf.Length());
1.1080 + WriteTextCommand(&printText,sizeof(printText),aBuf,EWsGcOpDrawText,EWsGcOpDrawTextPtr);
1.1081 + }
1.1082 +
1.1083 +EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg)
1.1084 +/** Draws horizontal text within a cleared box.
1.1085 +
1.1086 +The appearance of the text is subject to the drawing mode, the font, pen colour,
1.1087 +word justification and character justification. It is also subject to the
1.1088 +background brush (set brush to ENullBrush for no effect on background).
1.1089 +
1.1090 +A panic occurs if this function is called when there is no font: see UseFont().
1.1091 +
1.1092 +Note: the text is clipped to the box. You must ensure that the specified string
1.1093 +is not too large.
1.1094 +
1.1095 +@param aBuf The text to write.
1.1096 +@param aBox The box to draw the text in.
1.1097 +@param aBaselineOffset An offset from the top of the box to the text baseline.
1.1098 +Note that the baseline is the line on which letters sit, for instance below r, s, t, and
1.1099 +above the tail of q, and y.
1.1100 +@param aHoriz The text alignment mode (default is left, rather than centre
1.1101 +or right).
1.1102 +@param aLeftMrg The left margin for left-aligned text, or the right margin
1.1103 +for right-aligned text (default is zero).
1.1104 +@see CGraphicsContext::DrawText() */
1.1105 + {
1.1106 + if (aBuf.Size()<(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(TWsGcCmdBoxTextOptimised2)))
1.1107 + {
1.1108 + if (aHoriz==ELeft && aLeftMrg==0)
1.1109 + {
1.1110 + TWsGcCmdBoxTextOptimised1 boxTextOpt1(aBox,aBaselineOffset,aBuf.Length());
1.1111 + Write(&boxTextOpt1,sizeof(boxTextOpt1),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised1);
1.1112 + }
1.1113 + else
1.1114 + {
1.1115 + TWsGcCmdBoxTextOptimised2 boxTextOpt2(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length());
1.1116 + Write(&boxTextOpt2,sizeof(boxTextOpt2),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised2);
1.1117 + }
1.1118 + }
1.1119 + else
1.1120 + {
1.1121 + TWsGcCmdBoxText boxText(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),iPimpl->iFont->TextWidthInPixels(aBuf));
1.1122 + WriteTextCommand(&boxText,sizeof(boxText),aBuf,EWsGcOpDrawBoxText,EWsGcOpDrawBoxTextPtr);
1.1123 + }
1.1124 + }
1.1125 +
1.1126 +EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp)
1.1127 +/** Draws vertical text in the specified direction.
1.1128 +
1.1129 +A panic occurs if this function is called when there is no font: see UseFont().
1.1130 +
1.1131 +@param aText The text to be drawn.
1.1132 +@param aPos Point of origin of the text baseline.
1.1133 +@param aUp Direction. ETrue for up, EFalse for down. */
1.1134 + {
1.1135 + TWsGcCmdDrawTextVertical printText(aPos,aText.Length(),aUp);
1.1136 + WriteTextCommand(&printText,sizeof(printText),aText,EWsGcOpDrawTextVertical,EWsGcOpDrawTextVerticalPtr);
1.1137 + }
1.1138 +
1.1139 +EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin)
1.1140 +/** Draws text vertically in the specified direction, within a box of the specified
1.1141 +size.
1.1142 +
1.1143 +A panic occurs if this function is called when there is no font: see UseFont().
1.1144 +
1.1145 +@param aText The text to be drawn.
1.1146 +@param aBox The bounding box within which the text should be drawn, and which
1.1147 +it is clipped to.
1.1148 +@param aBaselineOffset The height of the top of the characters from their text
1.1149 +baseline.
1.1150 +@param aUp The direction. ETrue for up, EFalse for down.
1.1151 +@param aVert The text alignment.
1.1152 +@param aMargin The margin. */
1.1153 + {
1.1154 + TWsGcCmdBoxTextVertical boxText(aBox);
1.1155 + boxText.baselineOffset=aBaselineOffset;
1.1156 + boxText.up=aUp;
1.1157 + boxText.vert=aVert;
1.1158 + boxText.margin=aMargin;
1.1159 + boxText.length=aText.Length();
1.1160 + boxText.width=iPimpl->iFont->TextWidthInPixels(aText);
1.1161 + WriteTextCommand(&boxText,sizeof(boxText),aText,EWsGcOpDrawBoxTextVertical,EWsGcOpDrawBoxTextVerticalPtr);
1.1162 + }
1.1163 +
1.1164 +//========================Extra functions============================
1.1165 +
1.1166 +EXPORT_C void CWindowGc::CopyRect(const TPoint &anOffset,const TRect &aRect)
1.1167 +/** Copies a rectangle from any part of the screen into the window that the gc
1.1168 +is active on.
1.1169 +
1.1170 +The copy part of the operation applies to the whole rectangle, irrespective
1.1171 +of whether or not it within the window, however the "paste" is clipped to
1.1172 +the drawing area.
1.1173 +
1.1174 +The rectangle is specified in window coordinates (if the top-left of the rectangle
1.1175 +is (0,0) then the area of the screen it specifies has its top-left at the
1.1176 +top left corner of the window, if it is (-10,-10) then it starts 10 pixels
1.1177 +above and to the left of the window).
1.1178 +
1.1179 +Note: shadows in the source rectangle will be copied. None of the area drawn to
1.1180 +will gain shadowing (even if the window is already in shadow).
1.1181 +
1.1182 +This version of this function is only really suitable for testing.
1.1183 +
1.1184 +@param anOffset The offset from the original position to the point where the
1.1185 +rectangle is copied.
1.1186 +@param aRect The rectangular area to be copied. This is in window co-ordinates,
1.1187 +e.g. the top left corner of the window is position (0,0) with respect to the
1.1188 +rectangle.
1.1189 +@see CBitmapContext::CopyRect() */
1.1190 + {
1.1191 + TWsGcCmdCopyRect copyRect(anOffset,aRect);
1.1192 + Write(©Rect,sizeof(copyRect),EWsGcOpCopyRect);
1.1193 + }
1.1194 +
1.1195 +EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap)
1.1196 +/** Performs a bitmap block transfer.
1.1197 +
1.1198 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1199 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1200 +At some point later WSERV may need to draw that window again and it will just replay the
1.1201 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1202 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1203 +
1.1204 +@param aPoint The position for the top left corner of the bitmap.
1.1205 +@param aBitmap A memory-resident bitmap.
1.1206 +@see CBitmapContext::BitBlt() */
1.1207 + {
1.1208 + if (aBitmap == NULL || !aBitmap->Handle())
1.1209 + return;
1.1210 + TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->Handle());
1.1211 + Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt2);
1.1212 + AddToBitmapArray(aBitmap->Handle());
1.1213 + }
1.1214 +
1.1215 +EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CFbsBitmap *aBitmap,const TRect &aSource)
1.1216 +/** Performs a bitmap block transfer of a rectangular piece of a bitmap.
1.1217 +
1.1218 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1219 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1220 +At some point later WSERV may need to draw that window again and it will just replay the
1.1221 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1222 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1223 +
1.1224 +Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded
1.1225 +with white.
1.1226 +
1.1227 +@param aDestination The position for the top left corner of the bitmap.
1.1228 +@param aBitmap A memory-resident bitmap
1.1229 +@param aSource A rectangle defining the piece of the bitmap to be drawn, with
1.1230 +co-ordinates relative to the top left corner of the bitmap
1.1231 +@see CBitmapContext::BitBlt() */
1.1232 + {
1.1233 + if (aBitmap == NULL || !aBitmap->Handle())
1.1234 + return;
1.1235 + TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->Handle(),aSource);
1.1236 + Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt3);
1.1237 + AddToBitmapArray(aBitmap->Handle());
1.1238 + }
1.1239 +
1.1240 +EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask)
1.1241 +/** Performs a masked bitmap block transfer of a memory resident source bitmap.
1.1242 +
1.1243 +The mask bitmap can be used as either a positive or negative mask. Masked
1.1244 +pixels are not mapped to the destination rectangle.
1.1245 +
1.1246 +A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black
1.1247 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1248 +being transferred to the destination rectangle. With aInvertMask=ETrue, white
1.1249 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1250 +being transferred to the destination rectangle.
1.1251 +
1.1252 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1253 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1254 +At some point later WSERV may need to draw that window again and it will just replay the
1.1255 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1256 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1257 +
1.1258 +@param aPoint A position for the top left corner of the bitmap.
1.1259 +@param aBitmap A memory-resident source bitmap.
1.1260 +@param aSourceRect A rectangle defining the piece of the bitmap to be drawn,
1.1261 +with co-ordinates relative to the top left corner of the bitmap
1.1262 +@param aMaskBitmap A mask bitmap.
1.1263 +@param aInvertMask If false, a source pixel that is masked by a black pixel
1.1264 +is not transferred to the destination rectangle. If true, then a source pixel
1.1265 +that is masked by a white pixel is not transferred to the destination rectangle.
1.1266 +
1.1267 +@see CBitmapContext::BitBltMasked() */
1.1268 + {
1.1269 + if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle())
1.1270 + return;
1.1271 + TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask);
1.1272 + Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiBltMasked);
1.1273 + AddToBitmapArray(aBitmap->Handle());
1.1274 + AddToBitmapArray(aMaskBitmap->Handle());
1.1275 + }
1.1276 +
1.1277 +EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap)
1.1278 +/** Performs a bitmap block transfer on a bitmap to which the window server already
1.1279 +has a handle.
1.1280 +
1.1281 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1282 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1283 +At some point later WSERV may need to draw that window again and it will just replay the
1.1284 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1285 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1286 +
1.1287 +This function should be used in preference to the CFbsBitmap overload if the
1.1288 +bitmap is to be used more than once, as it is a lot quicker.
1.1289 +
1.1290 +@param aPoint The position for the top left corner of the bitmap.
1.1291 +@param aBitmap A window server bitmap.
1.1292 +@see CBitmapContext::BitBlt() */
1.1293 + {
1.1294 + if (aBitmap == NULL || !aBitmap->Handle())
1.1295 + return;
1.1296 + TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->WsHandle());
1.1297 + Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt2);
1.1298 + AddToBitmapArray(aBitmap->Handle());
1.1299 + }
1.1300 +
1.1301 +EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CWsBitmap *aBitmap,const TRect &aSource)
1.1302 +/** Performs a bitmap block transfer of a rectangular piece of a bitmap to which
1.1303 +the window server already has a handle.
1.1304 +
1.1305 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1306 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1307 +At some point later WSERV may need to draw that window again and it will just replay the
1.1308 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1309 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1310 +
1.1311 +This function should be used in preference to the CFbsBitmap overload if the
1.1312 +bitmap is to be used more than once, as it is a lot quicker.
1.1313 +
1.1314 +Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded
1.1315 +with white.
1.1316 +
1.1317 +@param aDestination The position for the top left corner of the bitmap.
1.1318 +@param aBitmap A window server bitmap.
1.1319 +@param aSource A rectangle defining the piece of the bitmap to be drawn, with
1.1320 +co-ordinates relative to the top left corner of the bitmap
1.1321 +@see CBitmapContext::BitBlt() */
1.1322 + {
1.1323 + if (aBitmap == NULL || !aBitmap->Handle())
1.1324 + return;
1.1325 + TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->WsHandle(),aSource);
1.1326 + Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt3);
1.1327 + AddToBitmapArray(aBitmap->Handle());
1.1328 + }
1.1329 +
1.1330 +EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CWsBitmap * aBitmap,const TRect& aSourceRect,const CWsBitmap * aMaskBitmap,TBool aInvertMask)
1.1331 +/** Performs a masked bitmap block transfer of a window server bitmap.
1.1332 +
1.1333 +The mask bitmap can be used as either a positive or negative mask. Masked
1.1334 +pixels are not mapped to the destination rectangle.
1.1335 +
1.1336 +A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black
1.1337 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1338 +being transferred to the destination rectangle. With aInvertMask=ETrue, white
1.1339 +pixels in the mask bitmap stop corresponding pixels in the source bitmap from
1.1340 +being transferred to the destination rectangle.
1.1341 +
1.1342 +This function should be used in preference to the CFbsBitmap overload if the
1.1343 +bitmap is to be used more than once, as it is a lot quicker.
1.1344 +
1.1345 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1346 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1347 +At some point later WSERV may need to draw that window again and it will just replay the
1.1348 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1349 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1350 +
1.1351 +@param aPoint A position for the top left corner of the bitmap.
1.1352 +@param aBitmap A window server bitmap.
1.1353 +@param aSourceRect A rectangle defining the piece of the bitmap to be drawn,
1.1354 +with co-ordinates relative to the top left corner of the bitmap.
1.1355 +@param aMaskBitmap A window server mask bitmap.
1.1356 +@param aInvertMask If false, a source pixel that is masked by a black pixel
1.1357 +is not transferred to the destination rectangle. If true, then a source pixel
1.1358 +that is masked by a white pixel is not transferred to the destination rectangle.
1.1359 +
1.1360 +@see CBitmapContext::BitBltMasked() */
1.1361 + {
1.1362 + if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle())
1.1363 + return;
1.1364 + TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask);
1.1365 + Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiWsBltMasked);
1.1366 + AddToBitmapArray(aBitmap->Handle());
1.1367 + AddToBitmapArray(aMaskBitmap->Handle());
1.1368 + }
1.1369 +
1.1370 +EXPORT_C void CWindowGc::MapColors(const TRect &aRect,const TRgb *aColors,TInt aNumPairs,TBool aMapForwards)
1.1371 +/** Re-maps pixel colours within a rectangle.
1.1372 +
1.1373 +aColors is an array of paired colour values. The rectangle is scanned and
1.1374 +the colour value of each pixel is looked up in the array, and if found is
1.1375 +replaced by the value with which it is paired. The arguments specify the rectangle,
1.1376 +the array of pairs, the number of pairs in the array, and the 'direction'
1.1377 +of lookup. If no entry is found for the colour value of a given pixel it remains
1.1378 +unchanged.
1.1379 +
1.1380 +This function was designed for cursor display. A cursor is normally displayed
1.1381 +as the XOR of the background against which it appears. However in some graphics
1.1382 +modes, certain colours XOR to very similar shades. MapColors() allows more
1.1383 +pleasing maps to be specified.
1.1384 +
1.1385 +The effect of this function when applied to transparent pixels when the opaque
1.1386 +flag is set is undefined. See SetOpaque().
1.1387 +@param aRect Rectangle to be mapped.
1.1388 +@param aColors Array of colour value pairs, one value in a pair is the lookup
1.1389 +value and the other is the replacement value.
1.1390 +@param aNumPairs Number of pairs in the array. aColors must have twice this
1.1391 +number of elements. By default the aColors array is assumed to specify 2 colours
1.1392 +(i.e. it specifies a single mapping).
1.1393 +@param aMapForwards Direction of lookup. ETrue to map forwards, i.e. treat
1.1394 +the first value in the pair as the lookup value and the second as the replacement
1.1395 +value; EFalse does the opposite. */
1.1396 + {
1.1397 + if (aNumPairs>16)
1.1398 + Panic(EW32PanicMapColorsTooManyPairs);
1.1399 + TWsGcCmdMapColors mapColors(aRect,aNumPairs,aMapForwards);
1.1400 + Write(&mapColors,sizeof(mapColors),aColors,aNumPairs*sizeof(TRgb)*2,EWsGcOpMapColors);
1.1401 + }
1.1402 +
1.1403 +EXPORT_C void CWindowGc::Clear(const TRect &aRect)
1.1404 +/** Clears a rectangular area of a window.
1.1405 +
1.1406 +The cleared area is filled with the current brush colour.
1.1407 +
1.1408 +@param aRect The rectangle to clear.
1.1409 +@see CBitmapContext::Clear() */
1.1410 + {
1.1411 + WriteRect(aRect,EWsGcOpClearRect);
1.1412 + }
1.1413 +
1.1414 +EXPORT_C void CWindowGc::Clear()
1.1415 +/** Clears the whole window.
1.1416 +
1.1417 +The cleared area is filled with the current brush colour.
1.1418 +
1.1419 +@see CBitmapContext::Clear() */
1.1420 + {
1.1421 + Write(EWsGcOpClear);
1.1422 + }
1.1423 +
1.1424 +EXPORT_C void CWindowGc::Reset()
1.1425 +/** Resets the graphics context to its default settings.
1.1426 +
1.1427 +The drawing mode is set to TDrawMode::EDrawModePen (pen and brush colours used as
1.1428 +they are); there is no clipping rectangle; the pen settings are black,
1.1429 +solid, single pixel size; the brush style is null; no text font is selected.
1.1430 +
1.1431 +@see CGraphicsContext::Reset() */
1.1432 + {
1.1433 + Write(EWsGcOpReset);
1.1434 + iPimpl->iFont=NULL;
1.1435 + }
1.1436 +
1.1437 +EXPORT_C void CWindowGc::SetDitherOrigin(const TPoint& aPoint)
1.1438 +/** Sets the origin used for colour dithering.
1.1439 +
1.1440 +@param aPoint New dither origin. */
1.1441 + {
1.1442 + Write(&aPoint,sizeof(aPoint),EWsGcOpSetDitherOrigin);
1.1443 + }
1.1444 +
1.1445 +EXPORT_C void CWindowGc::SetFaded(TBool aFaded)
1.1446 +/** Sets whether the graphics context is faded.
1.1447 +
1.1448 +Fading is used to make a window appear less colourful so that other windows
1.1449 +stand out. For example, a window would be faded when a dialogue is displayed
1.1450 +in front of it.
1.1451 +
1.1452 +@param aFaded ETrue to fade the graphics context, EFalse to unfade it. */
1.1453 + {
1.1454 + WriteInt(aFaded,EWsGcOpSetFaded);
1.1455 + }
1.1456 +
1.1457 +EXPORT_C void CWindowGc::SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
1.1458 +/** Sets the fading parameters.
1.1459 +
1.1460 +This function allows you to override the map used when drawing with a faded
1.1461 +graphics context. However if you draw to a faded window with a faded graphics
1.1462 +context, then fading on the graphics context is ignored and it will use the
1.1463 +fading of the window.
1.1464 +
1.1465 +Fading is used to make a window appear less colourful so that other windows stand
1.1466 +out. For example, a window would be faded when a dialogue is displayed
1.1467 +in front of it.
1.1468 +
1.1469 +You can either make a faded window closer to white or closer to black.
1.1470 +The fading map allows you to over-ride the default fading parameters set in
1.1471 +RWsSession::SetDefaultFadingParameters().
1.1472 +
1.1473 +Fading re-maps colours to fall between the specified black and white map values.
1.1474 +If aBlackMap=0 and aWhiteMap=255 then the colours are mapped unchanged. As the
1.1475 +values converge, the colours are mapped to a smaller range, so the differences
1.1476 +between colours in the faded graphics context decrease. If the values are reversed
1.1477 +then the colours are inverted (i.e. where the gc would be black, it is now white).
1.1478 +
1.1479 +@param aBlackMap Black map fading parameter. Unfaded this is 0.
1.1480 +@param aWhiteMap White map fading parameter. Unfaded this is 255.
1.1481 +@see RWsSession::SetDefaultFadingParameters()
1.1482 +@see RWindowTreeNode::SetFaded() */
1.1483 + {
1.1484 + WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsGcOpSetFadeParams);
1.1485 + }
1.1486 +
1.1487 +EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect,const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
1.1488 +/**
1.1489 +Performs an alpha blending of the source data, aSrcBmp, with the window, using
1.1490 +the data from aAlphaBmp as an alpha blending factor.
1.1491 +The formula used is:
1.1492 +(S * A + W * (255 - A)) / 255, where:
1.1493 +- S - a pixel from aSrcBmp;
1.1494 +- W - a pixel from the window;
1.1495 +- A - a pixel from aAlphaBmp;
1.1496 +The contents of source and alpha bitmap are preserved.
1.1497 +The calculated alpha blended pixels are written to the destination - the window image.
1.1498 +The effect of this function when applied to transparent pixels when the opaque
1.1499 +flag is set is undefined. See SetOpaque().
1.1500 +
1.1501 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1502 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1503 +At some point later WSERV may need to draw that window again and it will just replay the
1.1504 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1505 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1506 +
1.1507 +This method is supported from version 8.1
1.1508 +@param aDestPt Position in the target the result should be drawn to.
1.1509 +@param aSrcBmp A pointer to the source bitmap.
1.1510 +@param aSrcRect The part of the source bitmap that should be used.
1.1511 +@param aAlphaBmp A pointer to the bitmap used as an alpha blending factor.
1.1512 +@param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source
1.1513 + for the alpha blending. The size of the area is the same as the
1.1514 + source bitmap area - aSrcRect parameter.
1.1515 +@see CFbsBitGc::AlphaBlendBitmaps()
1.1516 +*/
1.1517 + {
1.1518 + TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->Handle(), aSrcRect, aAlphaBmp->Handle(), aAlphaPt);
1.1519 + Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiAlphaBlendBitmaps);
1.1520 + AddToBitmapArray(aSrcBmp->Handle());
1.1521 + AddToBitmapArray(aAlphaBmp->Handle());
1.1522 + return KErrNone;
1.1523 + }
1.1524 +
1.1525 +EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect,const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt)
1.1526 +/**
1.1527 +The method performs an alpha blending of the source data, aSrcBmp, with the window, using
1.1528 +the data from aAlphaBmp as an alpha blending factor.
1.1529 +For information on how this function works, see the other overload.
1.1530 +
1.1531 +Windows that store their redraw commands will only store drawing position and a handle to bitmaps
1.1532 +that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap.
1.1533 +At some point later WSERV may need to draw that window again and it will just replay the
1.1534 +stored commands including the draw bitmap. However, if the client has changed the content of the bitmap,
1.1535 +WSERV will effectively draw a different bitmap when it replays the commands.
1.1536 +
1.1537 +This method is supported from version 8.1
1.1538 +@param aDestPt Position in the target the result should be drawn to.
1.1539 +@param aSrcBmp A pointer to the source bitmap.
1.1540 +@param aSrcRect The part of the source bitmap that should be used.
1.1541 +@param aAlphaBmp A pointer to the bitmap used as an alpha blending factor.
1.1542 +@param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source
1.1543 + for the alpha blending. The size of the area is the same as the
1.1544 + source bitmap area - aSrcRect parameter.
1.1545 +@see CFbsBitGc::AlphaBlendBitmaps()
1.1546 +*/
1.1547 + {
1.1548 + TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->WsHandle(), aSrcRect, aAlphaBmp->WsHandle(), aAlphaPt);
1.1549 + Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiWsAlphaBlendBitmaps);
1.1550 + AddToBitmapArray(aSrcBmp->Handle());
1.1551 + AddToBitmapArray(aAlphaBmp->Handle());
1.1552 + return KErrNone;
1.1553 + }
1.1554 +
1.1555 +EXPORT_C void CWindowGc::SetOpaque(TBool aDrawOpaque)
1.1556 +/**
1.1557 +Sets and unsets an opaque flag on the window. When drawing to a transparent window with the
1.1558 +opaque flag set, drawing commands will not appear transparent. When drawing to a non-transparent
1.1559 +window this command has no effect.
1.1560 +The result of non-opaque drawing performed over the top of an area of the window to which opaque
1.1561 +drawing has already been done is undefined.
1.1562 +The result of opaque alpha blending or color mapping over the top of an area of the window to
1.1563 +which opaque drawing has not already been done is undefined.
1.1564 +This method is supported from version 8.1
1.1565 +@param aDrawOpaque If true, opaque mode is switched on. If false, normal drawing will be used.
1.1566 +*/
1.1567 + {
1.1568 + WriteInt(aDrawOpaque, EWsGcOpSetOpaque);
1.1569 + }
1.1570 +
1.1571 +/** APIExtension can contain as many additional methods as is required by
1.1572 +CGraphicsContext after its original conception. It takes 3 parameters.
1.1573 +Function is exported due to constrains of retaining BC with earlier versions.
1.1574 +This is not used directly by external methods, instead it is called by a named
1.1575 +method in CGraphicsContext which passes the relivant arguements including an
1.1576 +unique identifier for the required action.
1.1577 +@param aUid The unique identifier for the method that is required. Selected
1.1578 +internally by a series of "if" statements.
1.1579 +@see Valid Uid identifiers are listed in header gdi.h
1.1580 +@see CGraphicsContext
1.1581 +@param aOutput is a TAny pointer to a reference. Used to output data as the structure
1.1582 +does not need to be instantiated before the function call this adds greater
1.1583 +flexibility.
1.1584 +@param aInput is a TAny pointer used to input data.
1.1585 +*/
1.1586 +EXPORT_C TInt CWindowGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput)
1.1587 + {
1.1588 + if (aUid == KGetUnderlineMetrics)
1.1589 + {
1.1590 + APIExGetUnderlineMetrics(aOutput);
1.1591 + return KErrNone;
1.1592 + }
1.1593 + else if (aUid == KSetShadowColor)
1.1594 + {
1.1595 + return APIExSetShadowColor(aInput);
1.1596 + }
1.1597 + /* Future cases may be placed here later.*/
1.1598 + else
1.1599 + return CBitmapContext::APIExtension(aUid, aOutput, aInput);
1.1600 + }
1.1601 +
1.1602 +//The methods listed above in APIExtension follow here with the prefix APIEx.
1.1603 +TInt CWindowGc::APIExGetUnderlineMetrics(TAny*& aOutput)
1.1604 + {
1.1605 + const TInt width = Max(iPimpl->iFont->HeightInPixels() / 10,1);
1.1606 + TTwoTInt* ptr = (TTwoTInt*)aOutput;
1.1607 + ptr->iTop = 1 + width / 2;
1.1608 + ptr->iBottom = (ptr->iTop) + width;
1.1609 + return KErrNone;
1.1610 + }
1.1611 +
1.1612 +TInt CWindowGc::APIExSetShadowColor(TAny* aShadowColor)
1.1613 + {
1.1614 + const TRgb shadowColor = *(reinterpret_cast<TRgb*> (aShadowColor));
1.1615 + WriteInt(shadowColor.Internal(), EWsGcOpSetShadowColor);
1.1616 + return KErrNone;
1.1617 + }
1.1618 +
1.1619 +//Default implementation of reserved virtual
1.1620 +EXPORT_C void CWindowGc::Reserved_CGraphicsContext_2()
1.1621 + {
1.1622 + CBitmapContext::Reserved_CGraphicsContext_2();
1.1623 + }
1.1624 +
1.1625 +//Default implementation of reserved virtual
1.1626 +EXPORT_C void CWindowGc::Reserved_CBitmapContext_1()
1.1627 + {
1.1628 + CBitmapContext::Reserved_CBitmapContext_1();
1.1629 + }
1.1630 +
1.1631 +//Default implementation of reserved virtual
1.1632 +EXPORT_C void CWindowGc::Reserved_CBitmapContext_2()
1.1633 + {
1.1634 + CBitmapContext::Reserved_CBitmapContext_2();
1.1635 + }
1.1636 +
1.1637 +//Default implementation of reserved virtual
1.1638 +EXPORT_C void CWindowGc::Reserved_CBitmapContext_3()
1.1639 + {
1.1640 + CBitmapContext::Reserved_CBitmapContext_3();
1.1641 + }
1.1642 +
1.1643 +// was Reserved_CWindowGc_1
1.1644 +EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect)
1.1645 +/** Draws an abstract artwork.
1.1646 +It does nothing if aDestRect values fall outside the window area.
1.1647 +
1.1648 +@param aId the identifier for the artwork
1.1649 +@param aDestRect the destination rect within the active window for this artwork
1.1650 +
1.1651 +@since 9.2
1.1652 +@released
1.1653 +*/
1.1654 + {
1.1655 + TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect);
1.1656 + Write(&drawWsGraphic,sizeof(drawWsGraphic),EWsGcOpDrawWsGraphic);
1.1657 + }
1.1658 +
1.1659 +// Reserved_CWindowGc_2
1.1660 +EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData)
1.1661 +/** Draws an abstract artwork.
1.1662 +It does nothing if aDestRect values fall outside the window area.
1.1663 +
1.1664 +@param aId the identifier for the artwork
1.1665 +@param aDestRect the destination rect within the active window for this artwork
1.1666 +@param aData opaque datagram to associate with this occasion of drawing. The format is dependent upon the artwork
1.1667 +
1.1668 +@since 9.2
1.1669 +@released
1.1670 +*/
1.1671 + {
1.1672 + TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect);
1.1673 + drawWsGraphic.iDataLen = aData.Size();
1.1674 + WriteTextCommand(&drawWsGraphic, sizeof(drawWsGraphic), aData, EWsGcOpDrawWsGraphic, EWsGcOpDrawWsGraphicPtr);
1.1675 + }
1.1676 +
1.1677 +/** @internalComponent */
1.1678 +EXPORT_C TAny* CWindowGc::Interface(TUid /*aInterfaceId*/)
1.1679 + {
1.1680 + return NULL; //currently no interface supported
1.1681 + }
1.1682 +
1.1683 +/** @internalComponent */
1.1684 +EXPORT_C const TAny* CWindowGc::Interface(TUid /*aInterfaceId*/) const
1.1685 + {
1.1686 + return NULL; //currently no interface supported
1.1687 + }
1.1688 +
1.1689 +//Default implementation of reserved virtual
1.1690 +EXPORT_C void CWindowGc::Reserved_CWindowGc_3()
1.1691 + {
1.1692 + }
1.1693 +
1.1694 +//Default implementation of reserved virtual
1.1695 +EXPORT_C void CWindowGc::Reserved_CWindowGc_4()
1.1696 + {
1.1697 + }
1.1698 +
1.1699 +//Default implementation of reserved virtual
1.1700 +EXPORT_C void CWindowGc::Reserved_CWindowGc_5()
1.1701 + {
1.1702 + }
1.1703 +
1.1704 +//The class is designed to be used for resource drawing; however this functionality is only supported in NGA architecture.
1.1705 +//We have to provide an empty implementation here to avoid compilation errors.
1.1706 +EXPORT_C RWsDrawableSource::RWsDrawableSource()
1.1707 + {
1.1708 + }
1.1709 +
1.1710 +EXPORT_C RWsDrawableSource::RWsDrawableSource(RWsSession&)
1.1711 + {
1.1712 + }
1.1713 +
1.1714 +EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable&)
1.1715 + {
1.1716 + return KErrNotSupported;
1.1717 + }
1.1718 +
1.1719 +EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable&, TInt)
1.1720 + {
1.1721 + return KErrNotSupported;
1.1722 + }
1.1723 +
1.1724 +EXPORT_C const TSgDrawableId& RWsDrawableSource::DrawableId() const
1.1725 + {
1.1726 + return KSgNullDrawableId;
1.1727 + }
1.1728 +
1.1729 +EXPORT_C TInt RWsDrawableSource::ScreenNumber() const
1.1730 + {
1.1731 + return KSgScreenIdMain;
1.1732 + }
1.1733 +
1.1734 +EXPORT_C void RWsDrawableSource::Close()
1.1735 + {
1.1736 + }
1.1737 +