sl@0: // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Shells for window server graphics class sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "../SERVER/w32cmd.h" sl@0: #include "CLIENT.H" sl@0: #include "w32comm.h" sl@0: #include "graphicsresourcewrapper.h" sl@0: #include sl@0: #include sl@0: #include "graphics/windowserverconstants.h" sl@0: sl@0: #define KDefaultShadowColor KRgbGray sl@0: enum {EPolygonMaxHeaderSize=sizeof(TWsCmdHeader)+sizeof(TWsGcCmdSegmentedDrawPolygonData)}; sl@0: sl@0: // sl@0: // class CWindowGc::CPimpl sl@0: // sl@0: sl@0: NONSHARABLE_STRUCT(CWindowGc::CPimpl): public CBase, public MWsDrawResource sl@0: /** @internalComponent @released */ sl@0: { sl@0: public: sl@0: enum TStateType sl@0: { sl@0: EStateBrushColor = 1<<0, sl@0: EStateBrushStyle = 1<<1, sl@0: EStatePenColor = 1<<2, sl@0: EStatePenStyle = 1<<3, sl@0: EStatePenSize = 1<<4, sl@0: EStateDrawMode = 1<<5, sl@0: EStateClippingRect = 1<<6, sl@0: EStateUnderlineStyle = 1<<7, sl@0: EStateStrikethroughStyle = 1<<8, sl@0: EStateWordJustification = 1<<9, sl@0: EStateCharJustification = 1<<10, sl@0: }; sl@0: sl@0: CPimpl(CWindowGc& aGc); sl@0: void WriteAnyPendingStateChanges(); sl@0: void ResetPendingState(); sl@0: void StorePendingStateChange(TStateType aState, const TAny* aValue); sl@0: TUint32 GetState() const {return iPendingState;} sl@0: void CancelPendingClippingRect(); sl@0: ~CPimpl(); sl@0: public: //from MWsDrawResource sl@0: void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) sl@0: { sl@0: iGc.DrawResource(aPos, aSource, aRotation); sl@0: } sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) sl@0: { sl@0: iGc.DrawResource(aDestRect, aSource, aRotation); sl@0: } sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, CWindowGc::TGraphicsRotation aRotation=CWindowGc::EGraphicsRotationNone) sl@0: { sl@0: iGc.DrawResource(aDestRect, aSource, aSrcRect, aRotation); sl@0: } sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam) sl@0: { sl@0: iGc.DrawResource(aDestRect, aSource, aParam); sl@0: } sl@0: public: sl@0: CWindowGc& iGc; sl@0: CFbsFont* iFont; sl@0: TRgb iShadowColor; sl@0: TBool iForceWrite; sl@0: TBool iClippingRectSet; sl@0: sl@0: private: sl@0: TUint32 iPendingState; sl@0: sl@0: // Pending state - used to store requested state changes not yet written to wserv sl@0: TRgb iPendingBrushColor; sl@0: TBrushStyle iPendingBrushStyle; sl@0: TRgb iPendingPenColor; sl@0: TPenStyle iPendingPenStyle; sl@0: TSize iPendingPenSize; sl@0: TDrawMode iPendingDrawMode; sl@0: TRect iPendingClippingRect; sl@0: TFontUnderline iPendingUnderlineStyle; sl@0: TFontStrikethrough iPendingStrikethroughStyle; sl@0: TWsGcCmdSetJustification iPendingWordJustification; sl@0: TWsGcCmdSetJustification iPendingCharJustification; sl@0: sl@0: // Current state - values that have actually been written to wserv sl@0: TRgb iCurrentBrushColor; sl@0: TBrushStyle iCurrentBrushStyle; sl@0: TRgb iCurrentPenColor; sl@0: TPenStyle iCurrentPenStyle; sl@0: TSize iCurrentPenSize; sl@0: TDrawMode iCurrentDrawMode; sl@0: TFontUnderline iCurrentUnderlineStyle; sl@0: TFontStrikethrough iCurrentStrikethroughStyle; sl@0: TWsGcCmdSetJustification iCurrentWordJustification; sl@0: TWsGcCmdSetJustification iCurrentCharJustification; sl@0: }; sl@0: sl@0: CWindowGc::CPimpl::CPimpl(CWindowGc& aGc) sl@0: : iGc(aGc), iFont(NULL), iShadowColor(KDefaultShadowColor) sl@0: { sl@0: ResetPendingState(); sl@0: } sl@0: sl@0: CWindowGc::CPimpl::~CPimpl() sl@0: { sl@0: iFont = NULL; sl@0: } sl@0: sl@0: void CWindowGc::CPimpl::CancelPendingClippingRect() sl@0: { sl@0: iPendingState &= ~EStateClippingRect; sl@0: } sl@0: sl@0: void CWindowGc::CPimpl::WriteAnyPendingStateChanges() sl@0: { sl@0: if (iPendingState == 0) sl@0: return; sl@0: sl@0: if (iPendingState & EStateDrawMode) sl@0: { sl@0: if (iPendingDrawMode != iCurrentDrawMode) sl@0: { sl@0: iGc.WriteInt(iPendingDrawMode,EWsGcOpSetDrawMode); sl@0: iCurrentDrawMode = iPendingDrawMode; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateBrushStyle) sl@0: { sl@0: if (iPendingBrushStyle != iCurrentBrushStyle) sl@0: { sl@0: iGc.WriteInt(iPendingBrushStyle,EWsGcOpSetBrushStyle); sl@0: iCurrentBrushStyle = iPendingBrushStyle; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateBrushColor) sl@0: { sl@0: // Brush colour optimisation more conservative (than for other state changes) because server-side code modifies it without client's knowledge sl@0: if (iPendingBrushColor != iCurrentBrushColor || iForceWrite) sl@0: { sl@0: iGc.WriteInt(iPendingBrushColor.Internal(),EWsGcOpSetBrushColor); sl@0: iCurrentBrushColor = iPendingBrushColor; sl@0: iForceWrite = EFalse; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStatePenStyle) sl@0: { sl@0: if (iPendingPenStyle != iCurrentPenStyle) sl@0: { sl@0: iGc.WriteInt(iPendingPenStyle,EWsGcOpSetPenStyle); sl@0: iCurrentPenStyle = iPendingPenStyle; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStatePenColor) sl@0: { sl@0: if (iPendingPenColor != iCurrentPenColor) sl@0: { sl@0: iGc.WriteInt(iPendingPenColor.Internal(),EWsGcOpSetPenColor); sl@0: iCurrentPenColor = iPendingPenColor; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateClippingRect) sl@0: { sl@0: iGc.WriteRect(iPendingClippingRect,EWsGcOpSetClippingRect); sl@0: iClippingRectSet = ETrue; sl@0: } sl@0: sl@0: if (iPendingState & EStateUnderlineStyle) sl@0: { sl@0: if (iPendingUnderlineStyle != iCurrentUnderlineStyle) sl@0: { sl@0: iGc.WriteInt(iPendingUnderlineStyle,EWsGcOpSetUnderlineStyle); sl@0: iCurrentUnderlineStyle = iPendingUnderlineStyle; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateStrikethroughStyle) sl@0: { sl@0: if (iPendingStrikethroughStyle != iCurrentStrikethroughStyle) sl@0: { sl@0: iGc.WriteInt(iPendingStrikethroughStyle,EWsGcOpSetStrikethroughStyle); sl@0: iCurrentStrikethroughStyle = iPendingStrikethroughStyle; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStatePenSize) sl@0: { sl@0: if (iPendingPenSize != iCurrentPenSize) sl@0: { sl@0: iGc.WriteSize(iPendingPenSize,EWsGcOpSetPenSize); sl@0: iCurrentPenSize = iPendingPenSize; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateWordJustification) sl@0: { sl@0: if (iPendingWordJustification.excessWidth != iCurrentWordJustification.excessWidth sl@0: || iPendingWordJustification.numGaps != iCurrentWordJustification.numGaps) sl@0: { sl@0: iGc.Write(&iPendingWordJustification,sizeof(iPendingWordJustification),EWsGcOpSetWordJustification); sl@0: iCurrentWordJustification = iPendingWordJustification; sl@0: } sl@0: } sl@0: sl@0: if (iPendingState & EStateCharJustification) sl@0: { sl@0: if (iPendingCharJustification.excessWidth != iCurrentCharJustification.excessWidth sl@0: || iPendingCharJustification.numGaps != iCurrentCharJustification.numGaps) sl@0: { sl@0: iGc.Write(&iPendingCharJustification,sizeof(iPendingCharJustification),EWsGcOpSetCharJustification); sl@0: iCurrentCharJustification = iPendingCharJustification; sl@0: } sl@0: } sl@0: sl@0: iPendingState = 0; sl@0: } sl@0: sl@0: void CWindowGc::CPimpl::ResetPendingState() sl@0: { sl@0: // This function should only be called from CWindowGc::Reset() sl@0: iForceWrite = EFalse; sl@0: iPendingState = 0; sl@0: sl@0: iClippingRectSet = EFalse; sl@0: sl@0: // The following default values are the same as those used by CFbsBitGc::Reset() sl@0: iPendingBrushColor = KRgbWhite; sl@0: iPendingBrushStyle = CGraphicsContext::ENullBrush; sl@0: iPendingPenColor = KRgbBlack; sl@0: iPendingPenStyle = CGraphicsContext::ESolidPen; sl@0: iPendingPenSize = TSize(1,1); sl@0: iPendingDrawMode = CGraphicsContext::EDrawModePEN; sl@0: iPendingUnderlineStyle = EUnderlineOff; sl@0: iPendingStrikethroughStyle = EStrikethroughOff; sl@0: iPendingWordJustification.excessWidth = 0; sl@0: iPendingWordJustification.numGaps = 0; sl@0: iPendingCharJustification.excessWidth = 0; sl@0: iPendingCharJustification.numGaps = 0; sl@0: sl@0: iCurrentBrushColor = iPendingBrushColor; sl@0: iCurrentBrushStyle = iPendingBrushStyle; sl@0: iCurrentPenColor = iPendingPenColor; sl@0: iCurrentPenStyle = iPendingPenStyle; sl@0: iCurrentPenSize = iPendingPenSize; sl@0: iCurrentDrawMode = iPendingDrawMode; sl@0: iCurrentUnderlineStyle = iPendingUnderlineStyle; sl@0: iCurrentStrikethroughStyle = iPendingStrikethroughStyle; sl@0: iCurrentWordJustification.excessWidth = iPendingWordJustification.excessWidth; sl@0: iCurrentWordJustification.numGaps = iPendingWordJustification.numGaps; sl@0: iCurrentCharJustification.excessWidth = iPendingCharJustification.excessWidth; sl@0: iCurrentCharJustification.numGaps = iPendingCharJustification.numGaps; sl@0: } sl@0: sl@0: void CWindowGc::CPimpl::StorePendingStateChange(TStateType aState, const TAny* aValue) sl@0: { sl@0: switch (aState) sl@0: { sl@0: case EStateBrushColor: sl@0: iPendingState |= EStateBrushColor; sl@0: iPendingBrushColor = *((TRgb*)(aValue)); sl@0: break; sl@0: case EStateBrushStyle: sl@0: iPendingState|=EStateBrushStyle; sl@0: iPendingBrushStyle = *((TBrushStyle*)(aValue)); sl@0: break; sl@0: case EStatePenColor: sl@0: iPendingState|=EStatePenColor; sl@0: iPendingPenColor = *((TRgb*)(aValue)); sl@0: break; sl@0: case EStatePenStyle: sl@0: iPendingState|=EStatePenStyle; sl@0: iPendingPenStyle = *((TPenStyle*)(aValue)); sl@0: break; sl@0: case EStateDrawMode: sl@0: iPendingState|=EStateDrawMode; sl@0: iPendingDrawMode = *((TDrawMode*)(aValue)); sl@0: break; sl@0: case EStateClippingRect: sl@0: iPendingState|=EStateClippingRect; sl@0: iPendingClippingRect = *((TRect*)(aValue)); sl@0: break; sl@0: case EStateUnderlineStyle: sl@0: iPendingState|=EStateUnderlineStyle; sl@0: iPendingUnderlineStyle = *((TFontUnderline*)(aValue)); sl@0: break; sl@0: case EStateStrikethroughStyle: sl@0: iPendingState|=EStateStrikethroughStyle; sl@0: iPendingStrikethroughStyle= *((TFontStrikethrough*)(aValue)); sl@0: break; sl@0: case EStatePenSize: sl@0: iPendingState|=EStatePenSize; sl@0: iPendingPenSize = *((TSize*)(aValue)); sl@0: break; sl@0: case EStateWordJustification: sl@0: iPendingState|=EStateWordJustification; sl@0: iPendingWordJustification = *((TWsGcCmdSetJustification*)(aValue)); sl@0: break; sl@0: case EStateCharJustification: sl@0: iPendingState|=EStateCharJustification; sl@0: iPendingCharJustification = *((TWsGcCmdSetJustification*)(aValue)); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: } sl@0: sl@0: // sl@0: // class CWindowGc sl@0: // sl@0: sl@0: EXPORT_C CWindowGc::CWindowGc(CWsScreenDevice *aDevice) : MWsClientClass(aDevice->iBuffer), iPimpl(NULL), iDevice(aDevice) sl@0: /** Constructor which creates, but does not initialise a graphics context. sl@0: sl@0: @param aDevice Any screen device owned by the same session. Its life time sl@0: should be at least as long as the gc itself. sl@0: @see CWsScreenDevice::CreateContext() */ sl@0: {} sl@0: sl@0: EXPORT_C CWindowGc::~CWindowGc() sl@0: /** Destructor. */ sl@0: { sl@0: if (iBuffer && iWsHandle) sl@0: Write(EWsGcOpFree); sl@0: delete iPimpl; sl@0: } sl@0: sl@0: void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC &aBuf,TInt opcode,TInt opcodePtr) const sl@0: { sl@0: if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader))) sl@0: { sl@0: WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr); sl@0: } sl@0: else sl@0: { sl@0: Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode); sl@0: } sl@0: } sl@0: sl@0: void CWindowGc::WriteTextCommand(TAny *cmd, TInt len,const TDesC8 &aBuf,TInt opcode,TInt opcodePtr) const sl@0: { sl@0: if ((aBuf.Size()+len)>(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader))) sl@0: { sl@0: WriteReplyByProvidingRemoteReadAccess(cmd,len,&aBuf,opcodePtr); sl@0: } sl@0: else sl@0: { sl@0: Write(cmd,len,aBuf.Ptr(),aBuf.Size(),opcode); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::Construct() sl@0: /** Completes construction. sl@0: sl@0: @return KErrNone if successful, otherwise a leave error. sl@0: @panic TW32Panic 17 in debug builds if called on an already constructed object. sl@0: This function always causes a flush of the window server buffer. */ sl@0: { sl@0: __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction)); sl@0: iPimpl = new CPimpl(*this); sl@0: if (!iPimpl) sl@0: return KErrNoMemory; sl@0: TInt ret; sl@0: if ((ret=iBuffer->WriteReplyWs(EWsClOpCreateGc))<0) sl@0: return(ret); sl@0: iWsHandle=ret; sl@0: return(KErrNone); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Activate(RDrawableWindow &aDevice) sl@0: /** 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: sl@0: When drawing is complete, the code using the context should call Deactivate(). sl@0: Draw methods invoked after an Activate() will affect the window specified. sl@0: A graphics context can only be active for one window at a time. A panic occurs sl@0: if a draw function is called before calling this function, or if Activate() sl@0: is called twice without an intervening Deactivate(). sl@0: sl@0: @param aWindow The window for which the graphics context is to be activated. */ sl@0: { sl@0: TUint devicePointer = WriteReplyInt(aDevice.WsHandle(),EWsGcOpActivate); sl@0: iDevice = (CWsScreenDevice*)devicePointer; sl@0: iPimpl->iForceWrite = ETrue; // needed because brush colour set to window background colour in CWsGc::Activate sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Deactivate() sl@0: /** Frees the graphics context to be used with another window. sl@0: sl@0: This method should be called when the application has completed drawing to sl@0: the window. */ sl@0: { sl@0: iPimpl->ResetPendingState(); // needed because server-side state is reset on deactivation sl@0: Write(EWsGcOpDeactivate); sl@0: iPimpl->iFont=NULL; sl@0: iPimpl->iShadowColor = KDefaultShadowColor; sl@0: } sl@0: sl@0: //====================Functions from GDI.H=============================== sl@0: sl@0: EXPORT_C CGraphicsDevice* CWindowGc::Device() const sl@0: /** Returns a pointer to the device, more specifically a CWsScreenDevice, for the screen that the WindowGc was last activated on. sl@0: If the WindowGc has not been activated at all, it then returns the device that was passed to its constructor. sl@0: sl@0: The user should be careful when calling this function since it can return the screen device of any screen in the system. sl@0: 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: @return A pointer to the device for the screen that the WindowGc was last activated on or the device passed at construction*/ sl@0: { sl@0: return(iDevice); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetOrigin(const TPoint &aPoint) sl@0: /** Sets the position of the co-ordinate origin. sl@0: sl@0: All subsequent drawing operations are then done relative to this origin. The sl@0: default origin is (0,0), the top left corner of the window. sl@0: sl@0: @param aPoint A point for the origin, default (0,0). sl@0: @see CGraphicsContext::SetOrigin() */ sl@0: { sl@0: if ( iPimpl->GetState() & CPimpl::EStateClippingRect ) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: } sl@0: WritePoint(aPoint,EWsGcOpSetOrigin); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetClippingRect(const TRect& aRect) sl@0: /** Sets a clipping rectangle. sl@0: sl@0: Graphics drawn to the window are clipped, so that only items which fall within sl@0: the rectangle are displayed. sl@0: sl@0: Note that clipping is additive. If a clipping region has been set using SetClippingRegion() sl@0: then clipping will be to the intersection of that region and this rectangle. sl@0: sl@0: @param aRect The clipping rectangle in window co-ordinates. Note that this rectangle is sl@0: tranformed by the current drawing co-ordinate origin before it is used. sl@0: The co-ordinate origin is set using SetOrigin(). sl@0: sl@0: @see SetClippingRegion() */ sl@0: { sl@0: TRect rect(aRect); sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateClippingRect, &rect); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::CancelClippingRect() sl@0: /** Cancels the clipping rectangle. sl@0: sl@0: @see SetClippingRect() */ sl@0: { sl@0: if (iPimpl->GetState() & CPimpl::EStateClippingRect) sl@0: { sl@0: iPimpl->CancelPendingClippingRect(); sl@0: } sl@0: sl@0: if (iPimpl->iClippingRectSet) sl@0: { sl@0: Write(EWsGcOpCancelClippingRect); sl@0: } sl@0: sl@0: iPimpl->iClippingRectSet = EFalse; sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::SetClippingRegion(const TRegion &aRegion) sl@0: /** Sets the clipping region. sl@0: sl@0: Drawing is always clipped to the visible area of a window. The region specified sl@0: by this function is in addition to that area. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aRegion The new clipping region in window co-ordinates sl@0: as used in SetClippingRect(). The clipping region is transformed by the current sl@0: drawing origin before use. sl@0: sl@0: @return KErrNone if successful, KErrNoMemory if there is insufficient memory sl@0: to create the region on the server side, otherwise another error code. sl@0: sl@0: @see SetClippingRect() */ sl@0: { sl@0: const TInt regionCount=aRegion.Count(); sl@0: TPtrC8 ptrRect(reinterpret_cast(aRegion.RectangleList()),regionCount*sizeof(TRect)); sl@0: return(WriteReplyByProvidingRemoteReadAccess(®ionCount,sizeof(regionCount),&ptrRect,EWsGcOpSetClippingRegion)); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::CancelClippingRegion() sl@0: /** Cancels the current clipping region. */ sl@0: { sl@0: Write(EWsGcOpCancelClippingRegion); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetDrawMode(TDrawMode aDrawingMode) sl@0: /** Sets the drawing mode. sl@0: sl@0: This affects the colour that is actually drawn, because it defines the way sl@0: that the current screen colour logically combines with the current pen colour sl@0: and brush colour. sl@0: sl@0: There are 13 drawing modes (see CGraphicsContext::TDrawMode enum), each giving sl@0: different logical combinations of pen, brush and screen colours. Each mode sl@0: is produced by ORing together different combinations of seven drawing mode sl@0: components (see CGraphicsContext::TDrawModeComponents enum). sl@0: sl@0: The three most important modes are TDrawMode::EDrawModePEN, TDrawMode::EDrawModeNOTSCREEN sl@0: and TDrawMode::EDrawModeXOR. The default drawing mode is TDrawMode::EDrawModePEN. sl@0: sl@0: The drawing mode is over-ridden for line and shape drawing functions when sl@0: a wide pen line has been selected. It is forced to TDrawMode::EDrawModePEN. sl@0: This is to prevent undesired effects at line joins (vertexes). sl@0: sl@0: Notes: sl@0: sl@0: TDrawMode::EDrawModeAND gives a "colour filter" effect. For example: sl@0: sl@0: ANDing with white gives the original colour sl@0: sl@0: ANDing with black gives black sl@0: sl@0: TDrawMode::EDrawModeOR gives a "colour boost" effect. For example: sl@0: sl@0: ORing with black gives the original colour sl@0: sl@0: ORing with white gives white sl@0: sl@0: TDrawMode::EDrawModeXOR gives an "Exclusive OR" effect. For example: sl@0: sl@0: white XOR black gives white sl@0: sl@0: white XOR white gives black sl@0: sl@0: black XOR black gives black sl@0: sl@0: @param aDrawingMode A drawing mode. sl@0: @see CGraphicsContext::SetDrawMode() */ sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateDrawMode, &aDrawingMode); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::UseFont(const CFont *aFont) sl@0: /** Sets this context's font. sl@0: sl@0: The font is used for text drawing. If the font is already in the font and sl@0: bitmap server's memory the GDI will share that copy. sl@0: sl@0: Note that this function must be called prior to drawing text or the calling sl@0: thread will panic. sl@0: sl@0: @param aFont A device font. sl@0: @see CGraphicsContext::UseFont() */ sl@0: { sl@0: if (iPimpl->iFont!=(CFbsFont *)aFont) sl@0: { sl@0: iPimpl->iFont=(CFbsFont *)aFont; sl@0: WriteInt(iPimpl->iFont->Handle(),EWsGcOpUseFont); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DiscardFont() sl@0: /** Discards a font. sl@0: sl@0: This frees up the memory used (if the font is not being shared with some other sl@0: process). sl@0: sl@0: Note that if no font is in use when this function is called, then there is no effect. sl@0: sl@0: @see CGraphicsContext::DiscardFont() */ sl@0: { sl@0: Write(EWsGcOpDiscardFont); sl@0: iPimpl->iFont=NULL; sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetUnderlineStyle(TFontUnderline aUnderlineStyle) sl@0: /** Sets the underline style for all subsequently drawn text. sl@0: sl@0: @param aUnderlineStyle The underline style: either on or off. sl@0: @see CGraphicsContext::SetUnderlineStyle() */ sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateUnderlineStyle, &aUnderlineStyle); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle) sl@0: /** Sets the strikethrough style for all subsequently drawn text. sl@0: sl@0: @param aStrikethroughStyle The strikethrough style: either on or off. sl@0: @see CGraphicsContext::SetStrikethroughStyle() */ sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateStrikethroughStyle, &aStrikethroughStyle); sl@0: } sl@0: sl@0: void CWindowGc::SetJustification(TInt aExcessWidth,TInt aNumGaps, TInt aOpcode) sl@0: { sl@0: TWsGcCmdSetJustification justification; sl@0: sl@0: justification.excessWidth=aExcessWidth; sl@0: justification.numGaps=aNumGaps; sl@0: sl@0: if (aOpcode == EWsGcOpSetWordJustification) sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateWordJustification, &justification); sl@0: } sl@0: else if (aOpcode == EWsGcOpSetCharJustification) sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateCharJustification, &justification); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetWordJustification(TInt aExcessWidth,TInt aNumGaps) sl@0: /** Sets word justification. sl@0: sl@0: This function is particularly useful for doing WYSIWYG underlining or strikethrough, sl@0: as it ensures that the lines extend correctly into the gaps between words. It is not sl@0: intended for regular use by developers. sl@0: sl@0: @param aExcessWidth The excess width (in pixels) to be distributed between sl@0: the specified number of gaps (starting immediately) sl@0: @param aNumGaps The number of gaps between words sl@0: @see CGraphicsContext::SetWordJustification() */ sl@0: { sl@0: SetJustification(aExcessWidth, aNumGaps, EWsGcOpSetWordJustification); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetCharJustification(TInt aExcessWidth,TInt aNumChars) sl@0: /** Sets the character justification. sl@0: sl@0: This function is used primarily to get accurate WYSIWYG, and is not intended sl@0: for regular use by developers. sl@0: sl@0: The text line that is to be justified has a certain number of characters (this sl@0: includes the spaces between the words). It also has a distance (in pixels) sl@0: between the end of the last word and the actual end of the line (right hand sl@0: margin, usually). These excess width pixels are distributed amongst all the sl@0: characters, increasing the gaps between them, to achieve full justification sl@0: of the text line. sl@0: sl@0: This function is particularly useful for WYSIWYG underlining or strikethrough, sl@0: as it ensures that the lines extend into the gaps between characters. sl@0: sl@0: See CGraphicsContext::SetCharJustification() for more information. sl@0: sl@0: @param aExcessWidth The excess width (in pixels) to be distributed between sl@0: the specified number of characters. sl@0: @param aNumChars The number of characters involved sl@0: @see CGraphicsContext::SetCharJustification() */ sl@0: { sl@0: SetJustification(aExcessWidth, aNumChars, EWsGcOpSetCharJustification); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetPenColor(const TRgb &aColor) sl@0: /** Sets the pen colour. sl@0: sl@0: The effective pen colour depends on the drawing mode (see SetDrawMode()). sl@0: sl@0: The default pen colour is black. sl@0: sl@0: @param aColor The RGB colour for the pen. sl@0: @see CGraphicsContext::SetPenColor() */ sl@0: { sl@0: TRgb color = aColor; sl@0: iPimpl->StorePendingStateChange(CPimpl::EStatePenColor, &color); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetPenStyle(TPenStyle aPenStyle) sl@0: /** Sets the line drawing style for the pen. sl@0: sl@0: The pen is used when drawing lines and for the outline of filled shapes. There sl@0: are 6 pen styles (see CGraphicsContext::TPenStyle enum). If no pen style is sl@0: set, the default is TPenStyle::ESolidPen. sl@0: sl@0: To use a pen style, its full context must be given, e.g. for a null pen: CGraphicsContext::TPenStyle::ENullPen. sl@0: sl@0: @param aPenStyle A pen style. sl@0: @see CGraphicsContext::SetPenStyle() */ sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStatePenStyle, &aPenStyle); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetPenSize(const TSize& aSize) sl@0: /** Sets the line drawing size for the pen. sl@0: sl@0: Lines of size greater than one pixel are drawn with rounded ends that extend sl@0: beyond the end points, (as if the line is drawn using a circular pen tip of sl@0: the specified size). Rounded ends of lines drawn with a wide pen are always sl@0: drawn in TDrawMode::EDrawModePEN mode, overriding whatever mode has been set sl@0: using SetDrawMode(). sl@0: sl@0: @param aSize A line size, the default being 1 pixel. sl@0: @see CGraphicsContext::SetPenSize() */ sl@0: { sl@0: TSize size(aSize); sl@0: iPimpl->StorePendingStateChange(CPimpl::EStatePenSize, &size); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetBrushColor(const TRgb &aColor) sl@0: /** Sets the brush colour. sl@0: sl@0: The effective brush colour depends on the drawing mode (see SetDrawMode()). sl@0: If no brush colour has been set, it defaults to white. However the default sl@0: brush style is null, so when drawing to a window, the default appears to be sl@0: the window's background colour. sl@0: sl@0: @param aColor The RGB colour for the brush. sl@0: @see CGraphicsContext::SetBrushColor() */ sl@0: { sl@0: TRgb color = aColor; sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateBrushColor, &color); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetBrushStyle(TBrushStyle aBrushStyle) sl@0: /** Sets the line drawing style for the brush. sl@0: sl@0: The GDI provides ten brush styles, including six built-in hatching patterns sl@0: (see CGraphicsContext::TBrushStyle). sl@0: sl@0: Use TBrushStyle::ENullBrush to draw the outline of a fillable shape on its sl@0: own, without filling. sl@0: sl@0: If the TBrushStyle::EPatternedBrush style is set, but no bitmap pattern has sl@0: been selected using UseBrushPattern(), then the brush defaults to TBrushStyle::ENullBrush. sl@0: sl@0: Hatching lines are done in the current brush colour, set using SetBrushColor(). sl@0: Hatching can be overlaid on other graphics. The hatching pattern starts at sl@0: the brush origin, set using SetBrushOrigin(). sl@0: sl@0: @param aBrushStyle The brush style. sl@0: @see CGraphicsContext::SetBrushStyle() */ sl@0: { sl@0: iPimpl->StorePendingStateChange(CPimpl::EStateBrushStyle, &aBrushStyle); sl@0: } sl@0: EXPORT_C void CWindowGc::SetBrushOrigin(const TPoint &aOrigin) sl@0: /** Sets the brush pattern origin. sl@0: sl@0: This specifies the position of the pixel in the top left corner of a reference sl@0: pattern tile, (in absolute device co-ordinates). Other copies of the pattern sl@0: tile are then drawn around the reference one. Thus the brush origin can be sl@0: set as the top left corner of a shape. sl@0: sl@0: The brush pattern may be a built-in style (see SetBrushStyle()), or a bitmap. sl@0: To use a bitmap, the brush must have a pattern set (see UseBrushPattern()) sl@0: and the brush style must be set to TBrushStyle::EPatternedBrush. sl@0: sl@0: Notes: sl@0: sl@0: If SetBrushOrigin() is not used, then the origin defaults to (0,0). sl@0: sl@0: This brush origin remains in effect for all fillable shapes drawn subsequently, sl@0: until a new brush origin is set. Shapes can thus be considered as windows sl@0: onto a continuous pattern field (covering the whole clipping region of a screen sl@0: device, or the whole device area of a printer). sl@0: sl@0: @param aOrigin The origin point for the brush. sl@0: @see CGraphicsContext::SetBrushOrigin() */ sl@0: { sl@0: WritePoint(aOrigin,EWsGcOpSetBrushOrigin); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::UseBrushPattern(const CFbsBitmap *aDevice) sl@0: /** Sets the brush pattern to the specified bitmap. sl@0: sl@0: For the brush to actually use the bitmap, TBrushStyle::EPatternedBrush must sl@0: be used to set the brush style (see SetBrushStyle()). When the brush pattern sl@0: is no longer required, use DiscardBrushPattern() to free up the memory used, sl@0: (if the bitmap is not being shared). If UseBrushPattern() is used again without sl@0: using DiscardBrushPattern() then the previous pattern is discarded automatically. sl@0: sl@0: Notes: sl@0: sl@0: When loading a bitmap, the GDI checks to see if the bitmap is already in memory. sl@0: If the bitmap is already there, then that copy is shared. sl@0: sl@0: The brush does not need to have a pattern set at all. There are several built-in sl@0: hatching patterns, which can be selected using SetBrushStyle(). sl@0: sl@0: @param aDevice A bitmap pattern for the brush sl@0: @see CGraphicsContext::UseBrushPattern() */ sl@0: { sl@0: WriteInt(aDevice->Handle(),EWsGcOpUseBrushPattern); sl@0: AddToBitmapArray(aDevice->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DiscardBrushPattern() sl@0: /** Discards a non-built-in brush pattern. sl@0: sl@0: This frees up the memory used for the bitmap, if it is not being shared by sl@0: another process. sl@0: sl@0: If no brush pattern has been set when this function is called, it has no effect. sl@0: sl@0: @see CGraphicsContext::DiscardBrushPattern() */ sl@0: { sl@0: Write(EWsGcOpDiscardBrushPattern); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Plot(const TPoint &aPoint) sl@0: /** Draws a single point. sl@0: sl@0: The point is drawn with the current pen settings using the current drawing sl@0: mode. sl@0: sl@0: Note: if the pen size is greater than one pixel, a filled circle of the current sl@0: pen colour is drawn, with the pen size as the diameter and the plotted point sl@0: as the centre. If the pen size is an even number of pixels, the extra pixels sl@0: are drawn below and to the right of the centre. See SetPenSize(). sl@0: sl@0: @param aPoint The point to be drawn. sl@0: @see CGraphicsContext::Plot() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WritePoint(aPoint,EWsGcOpPlot); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawLine(const TPoint &aPoint1,const TPoint &aPoint2) sl@0: /** Draws a straight line between two points. sl@0: sl@0: @param aPoint1 The point at the start of the line. sl@0: @param aPoint2 The point at the end of the line. sl@0: @see CGraphicsContext::DrawLine() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawLine drawLine(aPoint1,aPoint2); sl@0: Write(&drawLine,sizeof(drawLine),EWsGcOpDrawLine); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::MoveTo(const TPoint &aPoint) sl@0: /** Moves the internal drawing position relative to the co-ordinate origin, without sl@0: drawing a line. sl@0: sl@0: A subsequent call to DrawLineTo() or DrawLineBy() will then use the new internal sl@0: drawing position as the start point for the line drawn. sl@0: sl@0: Notes: sl@0: sl@0: The operations DrawLine(), DrawLineTo(), DrawLineBy() and DrawPolyline() also sl@0: change the internal drawing position to the last point of the drawn line(s). sl@0: sl@0: The internal drawing position is set to the co-ordinate origin if no drawing sl@0: or moving operations have yet taken place. sl@0: sl@0: @param aPoint The point to move the internal drawing position to. sl@0: @see CGraphicsContext::MoveTo() sl@0: @see CGraphicsContext::MoveBy() */ sl@0: { sl@0: WritePoint(aPoint,EWsGcOpMoveTo); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::MoveBy(const TPoint &aPoint) sl@0: /** Moves the internal drawing position by a vector, without drawing a line. sl@0: sl@0: The internal drawing position is moved relative to its current co-ordinates. sl@0: sl@0: @param aPoint The vector to move the internal drawing position by. sl@0: @see CGraphicsContext::MoveBy() sl@0: @see CGraphicsContext::MoveTo() */ sl@0: { sl@0: WritePoint(aPoint,EWsGcOpMoveBy); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawLineTo(const TPoint &aPoint) sl@0: /** Draws a straight line from the current internal drawing position to a point. sl@0: sl@0: @param aPoint The point at the end of the line. sl@0: @see CGraphicsContext::DrawLineTo() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WritePoint(aPoint,EWsGcOpDrawTo); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawLineBy(const TPoint &aPoint) sl@0: /** Draws a straight line relative to the current internal drawing position, using sl@0: a vector. sl@0: sl@0: The start point of the line is the current internal drawing position. The sl@0: vector aVector is added to the internal drawing position to give the end point sl@0: of the line sl@0: sl@0: @param aPoint The vector to add to the current internal drawing position, sl@0: giving the end point of the line. sl@0: @see CGraphicsContext::DrawLineBy() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WritePoint(aPoint,EWsGcOpDrawBy); sl@0: } sl@0: sl@0: void CWindowGc::doDrawPolyLine(const CArrayFix *aPointArray, const TPoint* aPointList,TInt aNumPoints) sl@0: { sl@0: TWsGcOpcodes opcode=EWsGcOpDrawPolyLine; sl@0: TWsGcCmdDrawPolyLine polyLine; sl@0: TInt maxBufLen=(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(polyLine))/sizeof(TPoint); sl@0: TInt sent=0; sl@0: while(sentEnd(sent)-ptr; sl@0: } sl@0: else sl@0: { sl@0: ptr=aPointList+sent; sl@0: availableLen=aNumPoints-sent; sl@0: } sl@0: polyLine.numPoints=Min(availableLen,maxBufLen); sl@0: sent+=polyLine.numPoints; sl@0: polyLine.more=(sent!=aNumPoints); sl@0: Write(&polyLine,sizeof(polyLine),ptr,polyLine.numPoints*sizeof(TPoint),opcode); sl@0: polyLine.last=ptr[polyLine.numPoints-1]; sl@0: opcode=EWsGcOpDrawPolyLineContinued; sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawPolyLine(const TPoint* aPointList,TInt aNumPoints) sl@0: /** Draws a polyline using points in a list. sl@0: sl@0: A polyline is a series of concatenated straight lines joining a set of points. sl@0: sl@0: @param aPointList Pointer to a list of points on the polyline. sl@0: @param aNumPoints The number of points in the point list. sl@0: @see CGraphicsContext::DrawPolyLine() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: doDrawPolyLine(NULL,aPointList,aNumPoints); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawPolyLine(const CArrayFix *aPointArray) sl@0: /** Draws a polyline using points in an array. sl@0: sl@0: A polyline is a series of concatenated straight lines joining a set of points. sl@0: sl@0: @param aPointArray An array containing the points on the polyline. sl@0: @see CGraphicsContext::DrawPolyLine() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: doDrawPolyLine(aPointArray,NULL,aPointArray->Count()); sl@0: } sl@0: sl@0: TInt CWindowGc::doDrawPolygon(const CArrayFix *aPointArray,const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule) sl@0: { sl@0: if (aNumPoints<=0) sl@0: return(KErrNone); sl@0: TWsGcCmdSegmentedDrawPolygonData polyData; sl@0: polyData.index=0; sl@0: TInt maxBufLen=(iBuffer->BufferSize()-EPolygonMaxHeaderSize)/sizeof(TPoint); sl@0: FOREVER sl@0: { sl@0: const TPoint *ptr; sl@0: TInt availableLen; sl@0: if (aPointArray) sl@0: { sl@0: ptr=&(*aPointArray)[polyData.index]; sl@0: availableLen=aPointArray->End(polyData.index)-ptr; sl@0: } sl@0: else sl@0: { sl@0: ptr=aPointList+polyData.index; sl@0: availableLen=aNumPoints-polyData.index; sl@0: } sl@0: polyData.numPoints=Min(availableLen,maxBufLen); sl@0: if (polyData.index==0) // First time around sl@0: { sl@0: if (polyData.numPoints==aNumPoints) // Can it be done in one go? sl@0: { sl@0: TWsGcCmdDrawPolygon drawPolygon; sl@0: drawPolygon.numPoints=aNumPoints; sl@0: drawPolygon.fillRule=aFillRule; sl@0: Write(&drawPolygon,sizeof(drawPolygon),ptr,aNumPoints*sizeof(TPoint),EWsGcOpDrawPolygon); sl@0: break; sl@0: } sl@0: TWsGcCmdStartSegmentedDrawPolygon start; sl@0: start.totalNumPoints=aNumPoints; sl@0: TInt err=WriteReply(&start,sizeof(start),EWsGcOpStartSegmentedDrawPolygon); sl@0: if (err!=KErrNone) sl@0: return(err); sl@0: } sl@0: Write(&polyData,sizeof(polyData),ptr,polyData.numPoints*sizeof(TPoint),EWsGcOpSegmentedDrawPolygonData); sl@0: polyData.index+=polyData.numPoints; sl@0: if (polyData.index==aNumPoints) sl@0: { sl@0: TWsGcCmdDrawSegmentedPolygon draw; sl@0: draw.fillRule=aFillRule; sl@0: Write(&draw,sizeof(draw),EWsGcOpDrawSegmentedPolygon); sl@0: break; sl@0: } sl@0: } sl@0: return(KErrNone); sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule) sl@0: /** Draws and fills a polygon using points defined in a list. sl@0: sl@0: The first TPoint in the list defines the start of the first side of the polygon. sl@0: The second TPoint defines the second vertex (the end point of the first side sl@0: and the start point of the second side) and so on. The final side of the polygon sl@0: is drawn using the last TPoint from the array or list, and the line drawn sl@0: to the start point of the first side. sl@0: sl@0: Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate sl@0: (the default), or TFillRule::EWinding. To explain the difference between these sl@0: rules, the concept of a winding number needs to be introduced. The area outside sl@0: any of the loops of the polygon has a winding number of zero, and is never sl@0: filled. An inside a loop which is bounded by an area with winding number 0 sl@0: has a winding number of 1. If an area is within a loop that is bounded by sl@0: an area with winding number 1, e.g. a loop within a loop, has a winding number sl@0: of 2, and so on. sl@0: sl@0: The filling of a polygon proceeds according to this algorithm: sl@0: sl@0: If aFillRule is TFillRule::EAlternate (default) and it has an odd winding sl@0: number, then fill the surrounding area. sl@0: sl@0: If aFillRule is TFillRule::EWinding and it has a winding number greater than sl@0: zero, then fill the surrounding area. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPointList Pointer to a list of points, specifying the vertices of sl@0: the polygon. sl@0: @param aNumPoints The number of points in the vertex list sl@0: @param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see CGraphicsContext::DrawPolygon() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: return(doDrawPolygon(NULL,aPointList,aNumPoints,aFillRule)); sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::DrawPolygon(const CArrayFix *aPointArray,TFillRule aFillRule) sl@0: /** Draws and fills a polygon using points defined in an array. sl@0: sl@0: The first TPoint in the array defines the start of the first side of the polygon. sl@0: The second TPoint defines the second vertex (the end point of the first side sl@0: and the start point of the second side) and so on. The final side of the polygon sl@0: is drawn using the last TPoint from the array or list, and the line drawn sl@0: to the start point of the first side. sl@0: sl@0: Self-crossing polygons can be filled according to one of two rules, TFillRule::EAlternate sl@0: (the default), or TFillRule::EWinding. To explain the difference between these sl@0: rules, the concept of a winding number needs to be introduced. The area outside sl@0: any of the loops of the polygon has a winding number of zero, and is never sl@0: filled. An inside a loop which is bounded by an area with winding number 0 sl@0: has a winding number of 1. If an area is within a loop that is bounded by sl@0: an area with winding number 1, e.g. a loop within a loop, has a winding number sl@0: of 2, and so on. sl@0: sl@0: The filling of a polygon proceeds according to this algorithm: sl@0: sl@0: If aFillRule is TFillRule::EAlternate (default) and it has an odd winding sl@0: number, then fill the surrounding area. sl@0: sl@0: If aFillRule is TFillRule::EWinding and it has a winding number greater than sl@0: zero, then fill the surrounding area. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPointArray An array of points, specifying the vertices of the polygon. sl@0: @param aFillRule Either TFillRule::EAlternate (the default) or TFillRule::EWinding. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see CGraphicsContext::DrawPolygon() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: return(doDrawPolygon(aPointArray,NULL,aPointArray->Count(),aFillRule)); sl@0: } sl@0: sl@0: void CWindowGc::DrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd, TInt aOpcode) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawArcOrPie cmd(aRect,aStart,aEnd); sl@0: Write(&cmd,sizeof(cmd),aOpcode); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd) sl@0: /** Draws an arc (a portion of an ellipse). sl@0: sl@0: The point aStart is used to define one end of a line from the geometric centre sl@0: of the ellipse. The point of intersection between this line and the ellipse sl@0: defines the start point of the arc. The point aEnd is used to define one end sl@0: of a second line from the geometric centre of the ellipse. The point of intersection sl@0: between this line and the ellipse defines the end point of the arc. The pixels sl@0: at both the start point and the end point are drawn. sl@0: sl@0: The arc itself is the segment of the ellipse in an anti-clockwise direction sl@0: from the start point to the end point. sl@0: sl@0: Notes sl@0: sl@0: A rectangle is used in the construction of the ellipse of which the arc is sl@0: a segment. This rectangle is passed as an argument of type TRect. sl@0: sl@0: A wide line arc is drawn with the pixels distributed either side of a true sl@0: ellipse, in such a way that the outer edge of the line would touch the edge sl@0: of the construction rectangle. In other words, the ellipse used to construct sl@0: it is slightly smaller than that for a single pixel line size. sl@0: sl@0: If aStart or aEnd are the ellipse centre then the line that defines the start/end sl@0: of the arc defaults to one extending vertically above the centre point. sl@0: sl@0: If aStart and aEnd are the same point, or points on the same line through sl@0: the ellipse centre then a complete unfilled ellipse is drawn. sl@0: sl@0: Line drawing is subject to pen colour, width and style and draw mode sl@0: sl@0: @param aRect The rectangle in which to draw the ellipse (of which the arc is sl@0: a segment). sl@0: @param aStart A point to define the start of the arc. sl@0: @param aEnd A point to define the end of the arc. sl@0: @see CGraphicsContext::DrawArc() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawArc); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd) sl@0: /** Draws and fills a pie-shaped slice of an ellipse. sl@0: sl@0: Outlines are subject to the current pen colour, width, style and draw mode. sl@0: Set the pen to ENullPen for no outline. The fill is subject to brush style sl@0: (colour, hash or pattern), the origin and the current drawing mode. Set the sl@0: brush to ENullBrush for no fill. sl@0: sl@0: The point aStart is used to define one end of a line to the centre of the sl@0: ellipse. The point of intersection between this line and the ellipse defines sl@0: the start point of the arc bounding the pie slice. The point aEnd is used sl@0: to define one end of a second line to the centre of the ellipse. The point sl@0: of intersection between this line and the ellipse defines the end point of sl@0: the arc bounding the pie slice. The pixels at the end point are not drawn. sl@0: sl@0: The pie slice itself is the area bounded by: the arc of the ellipse in an sl@0: anticlockwise direction from the start point to the end point; the straight sl@0: line from the start point from the geometric centre of the ellipse; the sl@0: straight line from the end point from the geometric centre of the ellipse. sl@0: sl@0: The line drawn by the pen goes inside the rectangle given by the aRect argument. sl@0: sl@0: Notes: sl@0: sl@0: A rectangle is used in the construction of the pie slice. This rectangle is sl@0: passed as an argument of type TRect. The curved edge of the pie slice is an sl@0: arc of an ellipse constructed within the rectangle. sl@0: sl@0: A wide line edged pie slice has the arc drawn with the pixels distributed sl@0: either side of a true ellipse. This is done in such a way that the outer edge sl@0: of the line would touch the edge of the construction rectangle. In other words, sl@0: the ellipse used to construct it is slightly smaller than that for a single sl@0: pixel line size. sl@0: sl@0: If aStart or aEnd are the ellipse centre then the line that defines the start/end sl@0: of the arc defaults to one extending vertically above the centre point. sl@0: sl@0: If aStart and aEnd are the same point, or points on the same line through sl@0: the ellipse centre then a complete filled ellipse is drawn. A line is also sl@0: drawn from the edge to the ellipse centre. sl@0: sl@0: @param aRect A rectangle in which to draw the ellipse bounding the pie slice sl@0: @param aStart A point to define the start of the pie slice sl@0: @param aEnd A point to define the end of the pie slice sl@0: @see CGraphicsContext::DrawPie() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: DrawArcOrPie(aRect,aStart,aEnd,EWsGcOpDrawPie); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawEllipse(const TRect &aRect) sl@0: /** Draws and fills an ellipse. sl@0: sl@0: The ellipse is drawn inside the rectangle defined by the aRect argument. Any sl@0: TRect that has odd pixel dimensions, has the bottom right corner trimmed to sl@0: give even pixel dimensions before the ellipse is constructed. sl@0: sl@0: The column and row of pixels containing the bottom right co-ordinate of the sl@0: aRect argument are not part of the rectangle. sl@0: sl@0: Note: a wide outline ellipse is drawn with the pixels distributed either side of sl@0: a true ellipse, in such a way that the outer edge of the line touches the sl@0: edge of the construction rectangle. In other words, the ellipse used to construct sl@0: it is smaller than that for a single pixel line size. sl@0: sl@0: @param aRect The rectangle in which to draw the ellipse sl@0: @see CGraphicsContext::DrawEllipse() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WriteRect(aRect,EWsGcOpDrawEllipse); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawRect(const TRect &aRect) sl@0: /** Draws and fills a rectangle. sl@0: sl@0: The rectangle's border is drawn with the pen, and it is filled using the brush. sl@0: sl@0: @param aRect The rectangle to be drawn. sl@0: @see CGraphicsContext::DrawRect() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WriteRect(aRect,EWsGcOpDrawRect); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawRoundRect(const TRect &aRect,const TSize &aEllipse) sl@0: /** Draws and fills a rectangle with rounded corners. sl@0: sl@0: The rounded corners are each constructed as an arc of an ellipse. The dimensions sl@0: of each corner (corner size and corner height) are given by aEllipse. See sl@0: DrawArc() for a description of arc construction. sl@0: sl@0: The line drawn by the pen (if any) goes inside the rectangle given by the sl@0: TRect argument. sl@0: sl@0: Notes: sl@0: sl@0: Dotted and dashed pen styles cannot be used for the outline of a rounded rectangle. sl@0: sl@0: If either corner size dimension is greater than half the corresponding rectangle sl@0: length, the corner size dimension is reduced to half the rectangle size. sl@0: sl@0: @param aRect The rectangle to be drawn. sl@0: @param aEllipse The dimensions of each corner. sl@0: @see CGraphicsContext::DrawRoundRect() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawRoundRect drawRoundRect(aRect,aEllipse); sl@0: Write(&drawRoundRect,sizeof(drawRoundRect),EWsGcOpDrawRoundRect); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice) sl@0: /** Draws a bitmap at a specified point. sl@0: sl@0: The function does a compress/stretch based on its internally stored size in sl@0: twips. Note that if the twips value of the bitmap is not set then nothing sl@0: is drawn (this is the default situation). sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Note: this member function uses the bitmap's size in twips and does a stretch/compress sl@0: blit using a linear DDA. sl@0: sl@0: @param aTopLeft The point where the top left pixel of the bitmap is to be sl@0: drawn sl@0: @param aDevice The source bitmap. sl@0: @see CGraphicsContext::DrawBitmap() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawBitmap drawBitmap(aTopLeft,aDevice->Handle()); sl@0: Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap); sl@0: AddToBitmapArray(aDevice->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice) sl@0: /** Draws a bitmap in a rectangle. sl@0: sl@0: The bitmap is compressed/stretched to fit the specified rectangle. Note that sl@0: if the twips value of the bitmap is not set then nothing is drawn (this is sl@0: the default situation). sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Notes: this member function uses the bitmap's size in pixels and does a stretch/compress sl@0: blit using a linear DDA. sl@0: sl@0: @param aDestRect The rectangle within which the bitmap is to be drawn. sl@0: @param aDevice The source bitmap. sl@0: @see CGraphicsContext::DrawBitmap() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawBitmap2 drawBitmap(aDestRect,aDevice->Handle()); sl@0: Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap2); sl@0: AddToBitmapArray(aDevice->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect) sl@0: /** Draws a specified rectangle from a bitmap into another rectangle. sl@0: sl@0: The function compresses/stretches the specified rectangle from the bitmap sl@0: to fit the destination rectangle. Note that if the twips value of the bitmap sl@0: is not set then nothing is drawn (this is the default situation). sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Note: this member function uses rectangle sizes in pixels and does a stretch/compress sl@0: blit using a linear DDA. sl@0: sl@0: @param aDestRect The rectangle within which the bitmap is to be drawn. sl@0: @param aDevice A source bitmap. sl@0: @param aSourceRect The rectangle in the source bitmap that is copied to the sl@0: destination rectangle. sl@0: @see CGraphicsContext::DrawBitmap() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawBitmap3 drawBitmap(aDestRect,aDevice->Handle(),aSourceRect); sl@0: Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmap3); sl@0: AddToBitmapArray(aDevice->Handle()); sl@0: } sl@0: sl@0: /** Draws a specified rectangle from a bitmap and its mask into another rectangle. sl@0: sl@0: The function compresses/stretches the specified rectangle from the bitmap sl@0: to fit the destination rectangle. sl@0: The mask bitmap can be used as either a positive or negative mask. Masked sl@0: pixels are not mapped to the destination rectangle. sl@0: sl@0: A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. With aInvertMask=ETrue, white sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. sl@0: sl@0: If mask bitmap's display mode is EColor256, the function does AplhaBlending sl@0: and ignores aInvertMask parameter. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Note: this member function uses rectangle sizes in pixels and does a stretch/compress sl@0: blit using a linear DDA. sl@0: sl@0: @param aDestRect The rectangle within which the masked bitmap is to be drawn. sl@0: @param aBitmap A source bitmap. sl@0: @param aSourceRect The rectangle in the source bitmap that is copied to the sl@0: destination rectangle. sl@0: @param aMaskBitmap A mask bitmap. sl@0: @param aInvertMask If false, a source pixel that is masked by a black pixel sl@0: is not transferred to the destination rectangle. If true, then a source pixel sl@0: that is masked by a white pixel is not transferred to the destination rectangle. */ sl@0: EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask); sl@0: Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpDrawBitmapMasked); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: AddToBitmapArray(aMaskBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask) sl@0: /** Draws a specified rectangle from a wserv bitmap and its mask into sl@0: another rectangle. sl@0: sl@0: The function compresses/stretches the specified rectangle from the bitmap sl@0: to fit the destination rectangle. sl@0: The mask bitmap can be used as either a positive or negative mask. Masked sl@0: pixels are not mapped to the destination rectangle. sl@0: sl@0: A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. With aInvertMask=ETrue, white sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. sl@0: sl@0: If mask bitmap's display mode is EColor256, the function does AplhaBlending sl@0: and ignores aInvertMask parameter. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Note: this member function uses rectangle sizes in pixels and does a stretch/compress sl@0: blit using a linear DDA. sl@0: sl@0: @param aDestRect The rectangle within which the masked bitmap is to be drawn. sl@0: @param aBitmap A source wserv bitmap. sl@0: @param aSourceRect The rectangle in the source bitmap that is copied to the sl@0: destination rectangle. sl@0: @param aMaskBitmap A mask wserv bitmap. sl@0: @param aInvertMask If false, a source pixel that is masked by a black pixel sl@0: is not transferred to the destination rectangle. If true, then a source pixel sl@0: that is masked by a white pixel is not transferred to the destination rectangle. */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawBitmapMasked drawBitmap(aDestRect,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask); sl@0: Write(&drawBitmap,sizeof(drawBitmap),EWsGcOpWsDrawBitmapMasked); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: AddToBitmapArray(aMaskBitmap->Handle()); sl@0: } sl@0: EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf, const TPoint &aPos) sl@0: /** Draws horizontal text with no surrounding box. sl@0: sl@0: The appearance of the text is subject to the drawing mode, the font, pen colour, sl@0: word justification and character justification. sl@0: sl@0: A panic occurs if this function is called when there is no font: see UseFont(). sl@0: sl@0: @param aBuf The string to write. sl@0: @param aPos The point specifying the position of the baseline at the left sl@0: end of the text. sl@0: @see CGraphicsContext::DrawText() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawText printText(aPos,aBuf.Length()); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&printText,sizeof(printText),aBuf,EWsGcOpDrawText,EWsGcOpDrawTextPtr); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawText(const TDesC &aBuf,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg) sl@0: /** Draws horizontal text within a cleared box. sl@0: sl@0: The appearance of the text is subject to the drawing mode, the font, pen colour, sl@0: word justification and character justification. It is also subject to the sl@0: background brush (set brush to ENullBrush for no effect on background). sl@0: sl@0: A panic occurs if this function is called when there is no font: see UseFont(). sl@0: sl@0: Note: the text is clipped to the box. You must ensure that the specified string sl@0: is not too large. sl@0: sl@0: @param aBuf The text to write. sl@0: @param aBox The box to draw the text in. sl@0: @param aBaselineOffset An offset from the top of the box to the text baseline. sl@0: Note that the baseline is the line on which letters sit, for instance below r, s, t, and sl@0: above the tail of q, and y. sl@0: @param aHoriz The text alignment mode (default is left, rather than centre sl@0: or right). sl@0: @param aLeftMrg The left margin for left-aligned text, or the right margin sl@0: for right-aligned text (default is zero). sl@0: @see CGraphicsContext::DrawText() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: if (aBuf.Size()<(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(TWsGcCmdBoxTextOptimised2))) sl@0: { sl@0: if (aHoriz==ELeft && aLeftMrg==0) sl@0: { sl@0: TWsGcCmdBoxTextOptimised1 boxTextOpt1(aBox,aBaselineOffset,aBuf.Length()); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt1))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: Write(&boxTextOpt1,sizeof(boxTextOpt1),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised1); sl@0: } sl@0: else sl@0: { sl@0: TWsGcCmdBoxTextOptimised2 boxTextOpt2(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length()); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt2))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: Write(&boxTextOpt2,sizeof(boxTextOpt2),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextOptimised2); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: TWsGcCmdBoxText boxText(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),iPimpl->iFont->TextWidthInPixels(aBuf)); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&boxText,sizeof(boxText),aBuf,EWsGcOpDrawBoxText,EWsGcOpDrawBoxTextPtr); sl@0: } sl@0: } sl@0: sl@0: TInt CWindowGc::APIExDrawText(const TDesC& aBuf,const TTextParameters* aParam,const TPoint& aPos) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawTextInContext printTextInContext(aPos,aBuf.Length(),aParam->iStart,aParam->iEnd); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(printTextInContext))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&printTextInContext,sizeof(printTextInContext),aBuf,EWsGcOpDrawTextInContext,EWsGcOpDrawTextInContextPtr); sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CWindowGc::APIExDrawText(const TDesC& aBuf,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TTextAlign aHoriz,TInt aLeftMrg) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: if (aBuf.Size()<(TInt)(iBuffer->BufferSize()-sizeof(TWsCmdHeader)-sizeof(TWsGcCmdBoxTextInContextOptimised2))) sl@0: { sl@0: if (aHoriz==ELeft && aLeftMrg==0) sl@0: { sl@0: TWsGcCmdBoxTextInContextOptimised1 boxTextOpt1(aBox,aBaselineOffset,aBuf.Length(),aParam->iStart,aParam->iEnd); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt1))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: Write(&boxTextOpt1,sizeof(boxTextOpt1),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextInContextOptimised1); sl@0: } sl@0: else sl@0: { sl@0: TWsGcCmdBoxTextInContextOptimised2 boxTextOpt2(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),aParam->iStart,aParam->iEnd); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxTextOpt2))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: Write(&boxTextOpt2,sizeof(boxTextOpt2),aBuf.Ptr(),aBuf.Size(),EWsGcOpDrawBoxTextInContextOptimised2); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: TWsGcCmdBoxTextInContext boxText(aBox,aBaselineOffset,aHoriz,aLeftMrg,aBuf.Length(),iPimpl->iFont->TextWidthInPixels(aBuf),aParam->iStart,aParam->iEnd); sl@0: __ASSERT_ALWAYS(((aBuf.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&boxText,sizeof(boxText),aBuf,EWsGcOpDrawBoxTextInContext,EWsGcOpDrawBoxTextInContextPtr); sl@0: } sl@0: return KErrNone; sl@0: } sl@0: EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp) sl@0: /** Draws vertical text in the specified direction. sl@0: sl@0: A panic occurs if this function is called when there is no font: see UseFont(). sl@0: sl@0: @param aText The text to be drawn. sl@0: @param aPos Point of origin of the text baseline. sl@0: @param aUp Direction. ETrue for up, EFalse for down. */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawTextVertical printText(aPos,aText.Length(),aUp); sl@0: __ASSERT_ALWAYS(((aText.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&printText,sizeof(printText),aText,EWsGcOpDrawTextVertical,EWsGcOpDrawTextVerticalPtr); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin) sl@0: /** Draws text vertically in the specified direction, within a box of the specified sl@0: size. sl@0: sl@0: A panic occurs if this function is called when there is no font: see UseFont(). sl@0: sl@0: @param aText The text to be drawn. sl@0: @param aBox The bounding box within which the text should be drawn, and which sl@0: it is clipped to. sl@0: @param aBaselineOffset The height of the top of the characters from their text sl@0: baseline. sl@0: @param aUp The direction. ETrue for up, EFalse for down. sl@0: @param aVert The text alignment. sl@0: @param aMargin The margin. */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdBoxTextVertical boxText(aBox); sl@0: boxText.baselineOffset=aBaselineOffset; sl@0: boxText.up=aUp; sl@0: boxText.vert=aVert; sl@0: boxText.margin=aMargin; sl@0: boxText.length=aText.Length(); sl@0: boxText.width=iPimpl->iFont->TextWidthInPixels(aText); sl@0: __ASSERT_ALWAYS(((aText.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&boxText,sizeof(boxText),aText,EWsGcOpDrawBoxTextVertical,EWsGcOpDrawBoxTextVerticalPtr); sl@0: } sl@0: sl@0: TInt CWindowGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawTextInContextVertical printText(aPos,aText.Length(),aUp,aParam->iStart,aParam->iEnd); sl@0: __ASSERT_ALWAYS(((aText.Size()+sizeof(printText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&printText,sizeof(printText),aText,EWsGcOpDrawTextInContextVertical,EWsGcOpDrawTextInContextVerticalPtr); sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CWindowGc::APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert,TInt aMargin) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdBoxTextInContextVertical boxText(aBox); sl@0: boxText.baselineOffset=aBaselineOffset; sl@0: boxText.up=aUp; sl@0: boxText.vert=aVert; sl@0: boxText.margin=aMargin; sl@0: boxText.length=aText.Length(); sl@0: boxText.width=iPimpl->iFont->TextWidthInPixels(aText); sl@0: boxText.start = aParam->iStart; sl@0: boxText.end = aParam->iEnd; sl@0: __ASSERT_ALWAYS(((aText.Size()+sizeof(boxText))<=EClientBufferMaxSize),Panic(EW32PanicSizeNotExpected)); sl@0: WriteTextCommand(&boxText,sizeof(boxText),aText,EWsGcOpDrawBoxTextInContextVertical,EWsGcOpDrawBoxTextInContextVerticalPtr); sl@0: return KErrNone; sl@0: } sl@0: sl@0: //========================Extra functions============================ sl@0: sl@0: EXPORT_C void CWindowGc::CopyRect(const TPoint &anOffset,const TRect &aRect) sl@0: /** Copies a rectangle from any part of the screen into the window that the gc sl@0: is active on. sl@0: sl@0: The copy part of the operation applies to the whole rectangle, irrespective sl@0: of whether or not it within the window, however the "paste" is clipped to sl@0: the drawing area. sl@0: sl@0: The rectangle is specified in window coordinates (if the top-left of the rectangle sl@0: is (0,0) then the area of the screen it specifies has its top-left at the sl@0: top left corner of the window, if it is (-10,-10) then it starts 10 pixels sl@0: above and to the left of the window). sl@0: sl@0: Note: shadows in the source rectangle will be copied. None of the area drawn to sl@0: will gain shadowing (even if the window is already in shadow). sl@0: sl@0: This version of this function is only really suitable for testing. sl@0: sl@0: @param anOffset The offset from the original position to the point where the sl@0: rectangle is copied. sl@0: @param aRect The rectangular area to be copied. This is in window co-ordinates, sl@0: e.g. the top left corner of the window is position (0,0) with respect to the sl@0: rectangle. sl@0: @see CBitmapContext::CopyRect() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdCopyRect copyRect(anOffset,aRect); sl@0: Write(©Rect,sizeof(copyRect),EWsGcOpCopyRect); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CFbsBitmap *aBitmap) sl@0: /** Performs a bitmap block transfer. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: @param aPoint The position for the top left corner of the bitmap. sl@0: @param aBitmap A memory-resident bitmap. sl@0: @see CBitmapContext::BitBlt() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->Handle()); sl@0: Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt2); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CFbsBitmap *aBitmap,const TRect &aSource) sl@0: /** Performs a bitmap block transfer of a rectangular piece of a bitmap. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded sl@0: with white. sl@0: sl@0: @param aDestination The position for the top left corner of the bitmap. sl@0: @param aBitmap A memory-resident bitmap sl@0: @param aSource A rectangle defining the piece of the bitmap to be drawn, with sl@0: co-ordinates relative to the top left corner of the bitmap sl@0: @see CBitmapContext::BitBlt() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->Handle(),aSource); sl@0: Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiBlt3); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask) sl@0: /** Performs a masked bitmap block transfer of a memory resident source bitmap. sl@0: sl@0: The mask bitmap can be used as either a positive or negative mask. Masked sl@0: pixels are not mapped to the destination rectangle. sl@0: sl@0: A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. With aInvertMask=ETrue, white sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: @param aPoint A position for the top left corner of the bitmap. sl@0: @param aBitmap A memory-resident source bitmap. sl@0: @param aSourceRect A rectangle defining the piece of the bitmap to be drawn, sl@0: with co-ordinates relative to the top left corner of the bitmap sl@0: @param aMaskBitmap A mask bitmap. sl@0: @param aInvertMask If false, a source pixel that is masked by a black pixel sl@0: is not transferred to the destination rectangle. If true, then a source pixel sl@0: that is masked by a white pixel is not transferred to the destination rectangle. sl@0: sl@0: @see CBitmapContext::BitBltMasked() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->Handle(),aSourceRect,aMaskBitmap->Handle(),aInvertMask); sl@0: Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiBltMasked); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: AddToBitmapArray(aMaskBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap) sl@0: /** Performs a bitmap block transfer on a bitmap to which the window server already sl@0: has a handle. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: This function should be used in preference to the CFbsBitmap overload if the sl@0: bitmap is to be used more than once, as it is a lot quicker. sl@0: sl@0: @param aPoint The position for the top left corner of the bitmap. sl@0: @param aBitmap A window server bitmap. sl@0: @see CBitmapContext::BitBlt() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdGdiBlt2 gdiBlit(aPoint,aBitmap->WsHandle()); sl@0: Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt2); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBlt(const TPoint &aDestination,const CWsBitmap *aBitmap,const TRect &aSource) sl@0: /** Performs a bitmap block transfer of a rectangular piece of a bitmap to which sl@0: the window server already has a handle. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: This function should be used in preference to the CFbsBitmap overload if the sl@0: bitmap is to be used more than once, as it is a lot quicker. sl@0: sl@0: Note: if the rectangle aSource is larger than the bitmap then the bitmap will be padded sl@0: with white. sl@0: sl@0: @param aDestination The position for the top left corner of the bitmap. sl@0: @param aBitmap A window server bitmap. sl@0: @param aSource A rectangle defining the piece of the bitmap to be drawn, with sl@0: co-ordinates relative to the top left corner of the bitmap sl@0: @see CBitmapContext::BitBlt() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdGdiBlt3 gdiBlit(aDestination,aBitmap->WsHandle(),aSource); sl@0: Write(&gdiBlit,sizeof(gdiBlit),EWsGcOpGdiWsBlt3); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::BitBltMasked(const TPoint& aPoint,const CWsBitmap * aBitmap,const TRect& aSourceRect,const CWsBitmap * aMaskBitmap,TBool aInvertMask) sl@0: /** Performs a masked bitmap block transfer of a window server bitmap. sl@0: sl@0: The mask bitmap can be used as either a positive or negative mask. Masked sl@0: pixels are not mapped to the destination rectangle. sl@0: sl@0: A black and white (binary) mask bitmap is used. With aInvertMask=EFalse, black sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. With aInvertMask=ETrue, white sl@0: pixels in the mask bitmap stop corresponding pixels in the source bitmap from sl@0: being transferred to the destination rectangle. sl@0: sl@0: This function should be used in preference to the CFbsBitmap overload if the sl@0: bitmap is to be used more than once, as it is a lot quicker. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: @param aPoint A position for the top left corner of the bitmap. sl@0: @param aBitmap A window server bitmap. sl@0: @param aSourceRect A rectangle defining the piece of the bitmap to be drawn, sl@0: with co-ordinates relative to the top left corner of the bitmap. sl@0: @param aMaskBitmap A window server mask bitmap. sl@0: @param aInvertMask If false, a source pixel that is masked by a black pixel sl@0: is not transferred to the destination rectangle. If true, then a source pixel sl@0: that is masked by a white pixel is not transferred to the destination rectangle. sl@0: sl@0: @see CBitmapContext::BitBltMasked() */ sl@0: { sl@0: if (aBitmap == NULL || !aBitmap->Handle() || aMaskBitmap == NULL || !aMaskBitmap->Handle()) sl@0: return; sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdBltMasked gdiBlitMasked(aPoint,aBitmap->WsHandle(),aSourceRect,aMaskBitmap->WsHandle(),aInvertMask); sl@0: Write(&gdiBlitMasked,sizeof(gdiBlitMasked),EWsGcOpGdiWsBltMasked); sl@0: AddToBitmapArray(aBitmap->Handle()); sl@0: AddToBitmapArray(aMaskBitmap->Handle()); sl@0: } sl@0: sl@0: /** sl@0: This method has been deprecated. It is no longer possible to re-map pixel colours sl@0: within a rectangle. Calling it has no effect. sl@0: @param aRect Ignored. sl@0: @param aColors Ignored. sl@0: @param aNumPairs Ignored. sl@0: @param aMapForwards Ignored. sl@0: @deprecated sl@0: */ sl@0: EXPORT_C void CWindowGc::MapColors(const TRect& /*aRect*/, const TRgb* /*aColors*/, TInt /*aNumPairs*/, TBool /*aMapForwards*/) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Clear(const TRect &aRect) sl@0: /** Clears a rectangular area of a window. sl@0: sl@0: The cleared area is filled with the current brush colour. sl@0: sl@0: @param aRect The rectangle to clear. sl@0: @see CBitmapContext::Clear() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WriteRect(aRect,EWsGcOpClearRect); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Clear() sl@0: /** Clears the whole window. sl@0: sl@0: The cleared area is filled with the current brush colour. sl@0: sl@0: @see CBitmapContext::Clear() */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: Write(EWsGcOpClear); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::Reset() sl@0: /** Resets the graphics context to its default settings. sl@0: sl@0: The drawing mode is set to TDrawMode::EDrawModePen (pen and brush colours used as sl@0: they are); there is no clipping rectangle; the pen settings are black, sl@0: solid, single pixel size; the brush style is null; no text font is selected. sl@0: sl@0: @see CGraphicsContext::Reset() */ sl@0: { sl@0: Write(EWsGcOpReset); sl@0: iPimpl->iFont=NULL; sl@0: iPimpl->iShadowColor = KDefaultShadowColor; sl@0: iPimpl->ResetPendingState(); sl@0: iPimpl->iForceWrite = ETrue; // needed because brush colour set to window background colour in CPlaybackGc::CommandL and CWsGc::SetGcAttribute sl@0: } sl@0: sl@0: /** sl@0: This method has been deprecated. Dithering is no longer supported. Calling it sl@0: has no effect. sl@0: @param aPoint Ignored. sl@0: @deprecated sl@0: */ sl@0: EXPORT_C void CWindowGc::SetDitherOrigin(const TPoint& /*aPoint*/) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetFaded(TBool aFaded) sl@0: /** Sets whether the graphics context is faded. sl@0: sl@0: Fading is used to make a window appear less colourful so that other windows sl@0: stand out. For example, a window would be faded when a dialogue is displayed sl@0: in front of it. sl@0: sl@0: @param aFaded ETrue to fade the graphics context, EFalse to unfade it. */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WriteInt(aFaded,EWsGcOpSetFaded); sl@0: } sl@0: sl@0: EXPORT_C void CWindowGc::SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap) sl@0: /** Sets the fading parameters. sl@0: sl@0: This function allows you to override the map used when drawing with a faded sl@0: graphics context. However if you draw to a faded window with a faded graphics sl@0: context, then fading on the graphics context is ignored and it will use the sl@0: fading of the window. sl@0: sl@0: Fading is used to make a window appear less colourful so that other windows stand sl@0: out. For example, a window would be faded when a dialogue is displayed sl@0: in front of it. sl@0: sl@0: You can either make a faded window closer to white or closer to black. sl@0: The fading map allows you to over-ride the default fading parameters set in sl@0: RWsSession::SetDefaultFadingParameters(). sl@0: sl@0: Fading re-maps colours to fall between the specified black and white map values. sl@0: If aBlackMap=0 and aWhiteMap=255 then the colours are mapped unchanged. As the sl@0: values converge, the colours are mapped to a smaller range, so the differences sl@0: between colours in the faded graphics context decrease. If the values are reversed sl@0: then the colours are inverted (i.e. where the gc would be black, it is now white). sl@0: sl@0: @param aBlackMap Black map fading parameter. Unfaded this is 0. sl@0: @param aWhiteMap White map fading parameter. Unfaded this is 255. sl@0: @see RWsSession::SetDefaultFadingParameters() sl@0: @see RWindowTreeNode::SetFaded() */ sl@0: { sl@0: WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsGcOpSetFadeParams); sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect,const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt) sl@0: /** sl@0: Performs an alpha blending of the source data, aSrcBmp, with the window, using sl@0: the data from aAlphaBmp as an alpha blending factor. sl@0: The formula used is: sl@0: (S * A + W * (255 - A)) / 255, where: sl@0: - S - a pixel from aSrcBmp; sl@0: - W - a pixel from the window; sl@0: - A - a pixel from aAlphaBmp; sl@0: The contents of source and alpha bitmap are preserved. sl@0: The calculated alpha blended pixels are written to the destination - the window image. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: This method is supported from version 8.1 sl@0: @param aDestPt Position in the target the result should be drawn to. sl@0: @param aSrcBmp A pointer to the source bitmap. sl@0: @param aSrcRect The part of the source bitmap that should be used. sl@0: @param aAlphaBmp A pointer to the bitmap used as an alpha blending factor. sl@0: @param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source sl@0: for the alpha blending. The size of the area is the same as the sl@0: source bitmap area - aSrcRect parameter. sl@0: @see CFbsBitGc::AlphaBlendBitmaps() sl@0: */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->Handle(), aSrcRect, aAlphaBmp->Handle(), aAlphaPt); sl@0: Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiAlphaBlendBitmaps); sl@0: AddToBitmapArray(aSrcBmp->Handle()); sl@0: AddToBitmapArray(aAlphaBmp->Handle()); sl@0: return KErrNone; sl@0: } sl@0: sl@0: EXPORT_C TInt CWindowGc::AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect,const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt) sl@0: /** sl@0: The method performs an alpha blending of the source data, aSrcBmp, with the window, using sl@0: the data from aAlphaBmp as an alpha blending factor. sl@0: For information on how this function works, see the other overload. sl@0: sl@0: Windows that store their redraw commands will only store drawing position and a handle to bitmaps sl@0: that are drawn in it. The bitmap handle is just a pointer to the bitmap in the FBSERV heap. sl@0: At some point later WSERV may need to draw that window again and it will just replay the sl@0: stored commands including the draw bitmap. However, if the client has changed the content of the bitmap, sl@0: WSERV will effectively draw a different bitmap when it replays the commands. sl@0: sl@0: This method is supported from version 8.1 sl@0: @param aDestPt Position in the target the result should be drawn to. sl@0: @param aSrcBmp A pointer to the source bitmap. sl@0: @param aSrcRect The part of the source bitmap that should be used. sl@0: @param aAlphaBmp A pointer to the bitmap used as an alpha blending factor. sl@0: @param aAlphaPt Position of the first pixel in the alpha bitmap that should be used as a source sl@0: for the alpha blending. The size of the area is the same as the sl@0: source bitmap area - aSrcRect parameter. sl@0: @see CFbsBitGc::AlphaBlendBitmaps() sl@0: */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdAlphaBlendBitmaps alphaBlend(aDestPt, aSrcBmp->WsHandle(), aSrcRect, aAlphaBmp->WsHandle(), aAlphaPt); sl@0: Write(&alphaBlend,sizeof(alphaBlend),EWsGcOpGdiWsAlphaBlendBitmaps); sl@0: AddToBitmapArray(aSrcBmp->Handle()); sl@0: AddToBitmapArray(aAlphaBmp->Handle()); sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: This method has been deprecated. Calling it has no effect. sl@0: @param aDrawOpaque Ignored. sl@0: @deprecated sl@0: */ sl@0: EXPORT_C void CWindowGc::SetOpaque(TBool aDrawOpaque) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: WriteInt(aDrawOpaque, EWsGcOpSetOpaque); sl@0: } sl@0: sl@0: /** APIExtension can contain as many additional methods as is required by sl@0: CGraphicsContext after its original conception. It takes 3 parameters. sl@0: Function is exported due to constrains of retaining BC with earlier versions. sl@0: This is not used directly by external methods, instead it is called by a named sl@0: method in CGraphicsContext which passes the relivant arguements including an sl@0: unique identifier for the required action. sl@0: @param aUid The unique identifier for the method that is required. Selected sl@0: internally by a series of "if" statements. sl@0: @see Valid Uid identifiers are listed in header gdi.h sl@0: @see CGraphicsContext sl@0: @param aOutput is a TAny pointer to a reference. Used to output data as the structure sl@0: does not need to be instantiated before the function call this adds greater sl@0: flexibility. sl@0: @param aInput is a TAny pointer used to input data. sl@0: */ sl@0: EXPORT_C TInt CWindowGc::APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput) sl@0: { sl@0: if (aUid == KGetUnderlineMetrics) sl@0: { sl@0: return APIExGetUnderlineMetrics(aOutput); sl@0: } sl@0: else if (aUid == KSetShadowColor) sl@0: { sl@0: return APIExSetShadowColor(aInput); sl@0: } sl@0: else if (aUid == KGetShadowColor) sl@0: { sl@0: return APIExGetShadowColor(aOutput); sl@0: } sl@0: else if (aUid == KDrawTextInContextUid) sl@0: { sl@0: TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput; sl@0: return APIExDrawText(contextParam->iText, &contextParam->iParam, contextParam->iPosition); sl@0: } sl@0: else if (aUid == KDrawBoxTextInContextUid) sl@0: { sl@0: TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput; sl@0: return APIExDrawText(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iAlign,contextParam->iMargin); sl@0: } sl@0: else if (aUid == KDrawTextInContextVerticalUid) sl@0: { sl@0: TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput; sl@0: return APIExDrawTextVertical(contextParam->iText, &contextParam->iParam, contextParam->iPosition,contextParam->iUp); sl@0: } sl@0: else if (aUid == KDrawBoxTextInContextVerticalUid) sl@0: { sl@0: TDrawTextInContextInternal* contextParam = (TDrawTextInContextInternal*)aInput; sl@0: return APIExDrawTextVertical(contextParam->iText,&contextParam->iParam,contextParam->iBox,contextParam->iBaselineOffset,contextParam->iUp,contextParam->iAlign,contextParam->iMargin); sl@0: } sl@0: else if (aUid == KApiExtensionInterfaceUid) sl@0: { sl@0: return APIExInterface(aOutput, *static_cast(aInput)); sl@0: } sl@0: /* Future cases may be placed here later.*/ sl@0: else sl@0: return CBitmapContext::APIExtension(aUid, aOutput, aInput); sl@0: } sl@0: sl@0: //The methods listed above in APIExtension follow here with the prefix APIEx. sl@0: TInt CWindowGc::APIExGetUnderlineMetrics(TAny*& aOutput) sl@0: { sl@0: const TInt width = Max(iPimpl->iFont->HeightInPixels() / 10,1); sl@0: TTwoTInt* ptr = (TTwoTInt*)aOutput; sl@0: ptr->iTop = 1 + width / 2; sl@0: ptr->iBottom = (ptr->iTop) + width; sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CWindowGc::APIExSetShadowColor(TAny* aShadowColor) sl@0: { sl@0: const TRgb shadowColor = *(reinterpret_cast (aShadowColor)); sl@0: WriteInt(shadowColor.Internal(), EWsGcOpSetShadowColor); sl@0: iPimpl->iShadowColor = shadowColor; sl@0: return KErrNone; sl@0: } sl@0: sl@0: TInt CWindowGc::APIExGetShadowColor(TAny*& aOutput) sl@0: { sl@0: TRgb* ptr = (TRgb*)aOutput; sl@0: ptr->SetInternal(iPimpl->iShadowColor.Internal()); sl@0: return KErrNone; sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CGraphicsContext_2() sl@0: { sl@0: CBitmapContext::Reserved_CGraphicsContext_2(); sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CBitmapContext_1() sl@0: { sl@0: CBitmapContext::Reserved_CBitmapContext_1(); sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CBitmapContext_2() sl@0: { sl@0: CBitmapContext::Reserved_CBitmapContext_2(); sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CBitmapContext_3() sl@0: { sl@0: CBitmapContext::Reserved_CBitmapContext_3(); sl@0: } sl@0: sl@0: // was Reserved_CWindowGc_1 sl@0: EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect) sl@0: /** Draws an abstract artwork. sl@0: It does nothing if aDestRect values fall outside the window area. sl@0: sl@0: @param aId the identifier for the artwork sl@0: @param aDestRect the destination rect within the active window for this artwork sl@0: sl@0: @since 9.2 sl@0: @released sl@0: */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect); sl@0: Write(&drawWsGraphic,sizeof(drawWsGraphic),EWsGcOpDrawWsGraphic); sl@0: } sl@0: sl@0: // Reserved_CWindowGc_2 sl@0: EXPORT_C void CWindowGc::DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData) sl@0: /** Draws an abstract artwork. sl@0: It does nothing if aDestRect values fall outside the window area. sl@0: sl@0: @param aId the identifier for the artwork sl@0: @param aDestRect the destination rect within the active window for this artwork sl@0: @param aData opaque datagram to associate with this occasion of drawing. The format is dependent upon the artwork sl@0: sl@0: @since 9.2 sl@0: @released sl@0: */ sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawWsGraphic drawWsGraphic(aId,aDestRect); sl@0: drawWsGraphic.iDataLen = aData.Size(); sl@0: WriteTextCommand(&drawWsGraphic, sizeof(drawWsGraphic), aData, EWsGcOpDrawWsGraphic, EWsGcOpDrawWsGraphicPtr); sl@0: } sl@0: sl@0: /** sl@0: Gets an extension interface specified by the supplied UID, or NULL if it isn't supported. sl@0: sl@0: @param aInterfaceId The UID of the requested interface sl@0: @return A pointer to the interface, or NULL if the interface isn't supported sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: EXPORT_C TAny* CWindowGc::Interface(TUid aInterfaceId) sl@0: { sl@0: TAny* interface = NULL; sl@0: if(KErrNone == APIExtension(KApiExtensionInterfaceUid, interface, &aInterfaceId)) sl@0: return interface; sl@0: return NULL; sl@0: } sl@0: sl@0: /** sl@0: Gets an extension interface specified by the supplied UID, or NULL if it isn't supported. sl@0: sl@0: @param aInterfaceId The UID of the requested interface sl@0: @return A pointer to the interface, or NULL if the interface isn't supported sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: EXPORT_C const TAny* CWindowGc::Interface(TUid aInterfaceId) const sl@0: { sl@0: return const_cast(this)->Interface(aInterfaceId); sl@0: } sl@0: sl@0: TInt CWindowGc::APIExInterface(TAny*& aInterface, TUid aInterfaceId) sl@0: { sl@0: if(aInterfaceId == KMWsDrawResourceInterfaceUid) sl@0: { sl@0: aInterface = static_cast(iPimpl); sl@0: return KErrNone; sl@0: } sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: void CWindowGc::DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, TGraphicsRotation aRotation) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawResourceToPos drawWsResource(aSource.WsHandle(), aPos, aRotation); sl@0: Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceToPos); sl@0: } sl@0: sl@0: void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, TGraphicsRotation aRotation) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawResourceToRect drawWsResource(aSource.WsHandle(), aDestRect, aRotation); sl@0: Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceToRect); sl@0: } sl@0: sl@0: void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, TGraphicsRotation aRotation) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawResourceFromRectToRect drawWsResource(aSource.WsHandle(), aDestRect, aSrcRect, aRotation); sl@0: Write(&drawWsResource, sizeof(drawWsResource), EWsGcOpDrawResourceFromRectToRect); sl@0: } sl@0: sl@0: void CWindowGc::DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam) sl@0: { sl@0: iPimpl->WriteAnyPendingStateChanges(); sl@0: TWsGcCmdDrawResourceWithData drawWsResource(aSource.WsHandle(), aDestRect, &aParam); sl@0: Write(&drawWsResource, sizeof(drawWsResource),EWsGcOpDrawResourceWithData); sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CWindowGc_3() sl@0: { sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CWindowGc_4() sl@0: { sl@0: } sl@0: sl@0: //Default implementation of reserved virtual sl@0: EXPORT_C void CWindowGc::Reserved_CWindowGc_5() sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Default constructor. sl@0: Only for embedding instances of RWsDrawableSource into other classes as data members. sl@0: Before a RWsDrawableSource can be used the other constructor must be called. sl@0: */ sl@0: EXPORT_C RWsDrawableSource::RWsDrawableSource() sl@0: : iDrawableId(KSgNullDrawableId), iScreenNumber(KSgScreenIdMain) sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Constructor. sl@0: @param aWs Session to the window server sl@0: sl@0: @pre Connection to the window server is established sl@0: */ sl@0: EXPORT_C RWsDrawableSource::RWsDrawableSource(RWsSession &aWs) sl@0: : MWsClientClass(aWs.iBuffer), iDrawableId(KSgNullDrawableId), iScreenNumber(KSgScreenIdMain) sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Create window server object for resource drawing operation via window server. sl@0: sl@0: This object will be identified by a unique handle and will be associated with drawable resource which is passed as a parameter. sl@0: sl@0: This object will be created for drawing onto the default screen only. sl@0: sl@0: @see CWindowGc sl@0: @param aDrawable Drawable resource. sl@0: sl@0: @post Drawable source is created and can be used by window server. The reference counter of the underlying sl@0: image resource is incremented. sl@0: sl@0: @return KErrNone if successful, KErrArgument if the image resource is not valid, sl@0: KErrAlreadyExists if this handle is already associated with a sl@0: specific resource, otherwise one of the system-wide error codes. sl@0: */ sl@0: EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable& aDrawable) sl@0: { sl@0: return Create(aDrawable, KSgScreenIdMain); sl@0: } sl@0: sl@0: /** sl@0: Create window server object for resource drawing operation via window server. sl@0: sl@0: This object will be identified by unique handle and will be associated with drawable resource which is passed as a parameter. sl@0: sl@0: This object will be created for drawing onto the specified screen only. sl@0: sl@0: @see CWindowGc sl@0: @param aDrawable Drawable resource. sl@0: @param aScreenNumber The screen onto which this drawable resource can be drawn. sl@0: sl@0: @post Drawable source is created and can be used by window server. The reference counter of the underlying sl@0: image resource is incremented. sl@0: sl@0: @return KErrNone if successful, KErrArgument if the image resource is not valid sl@0: or if the specified screen is invalid, KErrAlreadyExists if this handle sl@0: is already associated with a specific resource, otherwise one of the sl@0: system-wide error codes. sl@0: */ sl@0: EXPORT_C TInt RWsDrawableSource::Create(const RSgDrawable& aDrawable, TInt aScreenNumber) sl@0: { sl@0: if (iWsHandle) sl@0: { sl@0: return KErrAlreadyExists; sl@0: } sl@0: CGraphicsResourceWrapperFactory* grwFactory = new CGraphicsResourceWrapperFactory(); sl@0: if (!grwFactory) sl@0: return KErrNoMemory; sl@0: // coverity[uninit_use_in_call] sl@0: CGraphicsResourceWrapper* graphicsResource = grwFactory->NewGraphicsResourceWrapper(); sl@0: if(!graphicsResource) sl@0: { sl@0: delete grwFactory; sl@0: return KErrNotSupported; sl@0: } sl@0: if (graphicsResource->IsNull(aDrawable) || aScreenNumber < 0) sl@0: { sl@0: delete graphicsResource; sl@0: delete grwFactory; sl@0: return KErrArgument; sl@0: } sl@0: TWsClCmdCreateDrawableSource create(graphicsResource->Id(aDrawable), aScreenNumber); sl@0: TInt ret; sl@0: if ((ret = iBuffer->WriteReplyWs(&create, sizeof(TWsClCmdCreateDrawableSource), EWsClOpCreateDrawableSource)) < 0) sl@0: { sl@0: delete graphicsResource; sl@0: delete grwFactory; sl@0: return ret; sl@0: } sl@0: iWsHandle = ret; sl@0: iDrawableId = graphicsResource->Id(aDrawable); sl@0: iScreenNumber = aScreenNumber; sl@0: delete graphicsResource; sl@0: delete grwFactory; sl@0: return KErrNone; sl@0: } sl@0: sl@0: /** sl@0: Destroy the window server drawable source. sl@0: Calling this method on a object that is not associated with any RSgDrawable sl@0: resource will have no effect. Once Close() is called, this drawable source object can be reused. sl@0: sl@0: @post The window server drawable object is destroyed. The instance is no longer associated sl@0: with a RSgDrawable specific resource. The reference counter of the underlying sl@0: image resource is decremented. sl@0: */ sl@0: EXPORT_C void RWsDrawableSource::Close() sl@0: { sl@0: if (iWsHandle) sl@0: { sl@0: Write(EWsDrawableSourceOpFree); sl@0: iWsHandle = 0; sl@0: iDrawableId = KSgNullDrawableId; sl@0: iScreenNumber = KSgScreenIdMain; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Get the unique ID of the associated drawable resource. sl@0: */ sl@0: EXPORT_C const TSgDrawableId& RWsDrawableSource::DrawableId() const sl@0: { sl@0: return iDrawableId; sl@0: } sl@0: sl@0: /** sl@0: Get the screen number of the drawable source. sl@0: */ sl@0: EXPORT_C TInt RWsDrawableSource::ScreenNumber() const sl@0: { sl@0: return iScreenNumber; sl@0: }