sl@0: // Copyright (c) 2008-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: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #ifndef TDRAWRESOURCE_H_ sl@0: #define TDRAWRESOURCE_H_ sl@0: sl@0: #include "AUTO.H" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "RemoteGc.h" sl@0: #include "CommandBuffer.h" sl@0: sl@0: class TSgImageInfo; sl@0: sl@0: _LIT(KTDrawResourceStep, "TDrawResource"); sl@0: sl@0: const TSize KSourceSize(200,200); //The size of the rect to copy from the screen sl@0: const TPoint KDestPoint(0,0); sl@0: const TRect KCopyTestRect(TPoint(0,0), TSize(200,200)); //The test rect to copy from the screen sl@0: const TRect KSourceRect(TPoint(0,0), TSize(50,50));//Rect of the source image to be drawn sl@0: const TRect KDestRect(TPoint(10,10), TSize(60,60));//Rect of the destination to draw to sl@0: const CWindowGc::TGraphicsRotation KTestRotation= CWindowGc::EGraphicsRotation90; sl@0: const TPoint KPlayOffset(0,0); sl@0: sl@0: sl@0: /** sl@0: * Dummy class used to check the values received by MWsGraphicsContext. sl@0: * The only funtions overridden with some functionality are the DrawResource functions. sl@0: * These simply receive the values and then store them in public member variables. sl@0: */ sl@0: class CTestWsGraphicsContext : public CBase, public MWsGraphicsContext, public MWsDrawableSourceProvider sl@0: { sl@0: public: sl@0: static CTestWsGraphicsContext* NewL(RDirectGdiImageTarget& aTarget); sl@0: ~CTestWsGraphicsContext(); sl@0: sl@0: public: //from MWsGraphicsContext sl@0: void BitBlt(const TPoint&, const CFbsBitmap&){} sl@0: void BitBlt(const TPoint&, const CFbsBitmap&, const TRect&){} sl@0: void BitBltMasked(const TPoint&, const CFbsBitmap&, const TRect&, const CFbsBitmap&, TBool){} sl@0: void BitBltMasked(const TPoint&, const CFbsBitmap&, const TRect&, const CFbsBitmap&, const TPoint&){} sl@0: void ResetClippingRegion(){} sl@0: void Clear(); sl@0: void Clear(const TRect&){} sl@0: void ResetBrushPattern(){} sl@0: void ResetFont(){} sl@0: void DrawArc(const TRect&, const TPoint&, const TPoint&){} sl@0: void DrawPie(const TRect&, const TPoint&, const TPoint&){} sl@0: void DrawBitmap(const TRect&, const CFbsBitmap&){} sl@0: void DrawBitmap(const TRect&, const CFbsBitmap&, const TRect&){} sl@0: void DrawBitmapMasked(const TRect&, const CFbsBitmap&,const TRect&, const CFbsBitmap&, TBool){} sl@0: void DrawRoundRect(const TRect&, const TSize&){} sl@0: void DrawPolyLine(const TArray&){} sl@0: void DrawPolyLineNoEndPoint(const TArray&){} sl@0: void DrawPolygon(const TArray& , TFillRule ){} sl@0: void DrawEllipse(const TRect&){} sl@0: void DrawLine(const TPoint&, const TPoint&){} sl@0: void DrawLineTo(const TPoint&){} sl@0: void DrawLineBy(const TPoint&){} sl@0: void DrawRect(const TRect&){} sl@0: void DrawText(const TDesC& ,const TTextParameters* ){} sl@0: void DrawText(const TDesC& ,const TTextParameters* ,const TPoint& ){} sl@0: void DrawText(const TDesC& ,const TTextParameters* ,const TRect& ){} sl@0: void DrawText(const TDesC& ,const TTextParameters* ,const TRect& ,TInt ,TTextAlign ,TInt ){} sl@0: void DrawTextVertical(const TDesC& ,const TTextParameters* ,TBool ) {} sl@0: void DrawTextVertical(const TDesC& ,const TTextParameters* ,const TPoint& ,TBool ){} sl@0: void DrawTextVertical(const TDesC& ,const TTextParameters* ,const TRect& ,TBool ){} sl@0: void DrawTextVertical(const TDesC& ,const TTextParameters* ,const TRect& ,TInt ,TBool ,TTextAlign ,TInt ){} sl@0: void DrawTextVertical(const TDesC& ,const TTextParameters* ,const TRect& ,TInt ,TInt ,TBool ,TTextAlign ,TInt ){} sl@0: void MoveTo(const TPoint&){} sl@0: void MoveBy(const TPoint&){} sl@0: TPoint Origin() const {return TPoint(0,0);} sl@0: void Plot(const TPoint&){} sl@0: void Reset(){} sl@0: void SetBrushColor(const TRgb&){} sl@0: void SetBrushOrigin(const TPoint&){} sl@0: void SetBrushStyle(TBrushStyle ){} sl@0: void SetClippingRegion(const TRegion&){} sl@0: void SetDrawMode(TDrawMode){} sl@0: void SetOrigin(const TPoint&){} sl@0: void SetPenColor(const TRgb&){} sl@0: void SetPenStyle(TPenStyle){} sl@0: void SetPenSize(const TSize& ){} sl@0: void SetTextShadowColor(const TRgb&){} sl@0: void SetCharJustification(TInt, TInt){} sl@0: void SetWordJustification(TInt, TInt){} sl@0: void SetUnderlineStyle(TFontUnderline){} sl@0: void SetStrikethroughStyle(TFontStrikethrough){} sl@0: void SetBrushPattern(const CFbsBitmap&){} sl@0: void SetBrushPattern(TInt){} sl@0: void SetFont(const CFont*){} sl@0: void CopyRect(const TPoint&, const TRect&){} sl@0: void RectDrawnTo(TRect&){} sl@0: void UpdateJustification(const TDesC& ,const TTextParameters* ){} sl@0: void UpdateJustificationVertical(const TDesC& ,const TTextParameters* ,TBool ){} sl@0: void SetFontNoDuplicate(const CFont* ){} sl@0: TBool HasBrushPattern() const{return EFalse;} sl@0: TBool HasFont() const{return EFalse;} sl@0: void InternalizeL(RReadStream&){} sl@0: void ExternalizeL(RWriteStream&){} sl@0: TRgb BrushColor() const {return iContext->BrushColor();} sl@0: TRgb PenColor() const {return iContext->PenColor();} sl@0: TRgb TextShadowColor() const {return iContext->TextShadowColor ();} sl@0: sl@0: const TRegion& ClippingRegion(){return iRegion;} sl@0: TInt GetError(){return KErrNone;} sl@0: TInt Push(){return KErrNone;} sl@0: void Pop(){} sl@0: //from MWsObjectProvider sl@0: TAny* ResolveObjectInterface(TUint aTypeId); sl@0: sl@0: //from MWsDrawableSourceProvider sl@0: TInt CreateDrawableSource(const TSgDrawableId& aDrawableId, TAny*& aSource); sl@0: void CloseDrawableSource(TAny* aSource); sl@0: void DrawResource(const TAny* aSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation = CWindowGc::EGraphicsRotationNone); sl@0: void DrawResource(const TAny* aSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation = CWindowGc::EGraphicsRotationNone); sl@0: void DrawResource(const TAny* aSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation = CWindowGc::EGraphicsRotationNone); sl@0: void DrawResource(const TAny* aSource, const TRect& aRect, const TDesC8& aParam); sl@0: sl@0: private: sl@0: void ConstructL(RDirectGdiImageTarget& aTarget); sl@0: void DoCreateDrawableSourceL(const TSgDrawableId& aDrawableId, TAny*& aSource); sl@0: public: sl@0: TPoint iPos; sl@0: TRect iDestRect; sl@0: TRect iSrcRect; sl@0: DirectGdi::TGraphicsRotation iRotation; sl@0: RRegion iRegion; sl@0: private: sl@0: CDirectGdiContext* iContext; sl@0: }; sl@0: sl@0: /** sl@0: * Class derived from MWsGraphicResolver. This a dummy implmentation which has no functionality. sl@0: * An instance of it is passed to CCommandBuffer::Play to make it a valid call. sl@0: */ sl@0: class CWSGraphicsRes: public CBase, public MWsGraphicResolver sl@0: { sl@0: public: sl@0: void DrawWsGraphic(TInt, TBool, const TRect&, const TDesC8&) const{} sl@0: }; sl@0: sl@0: class CTDrawResource : public CTWsGraphicsBase sl@0: { sl@0: public: sl@0: CTDrawResource(CTestStep* aStep); sl@0: ~CTDrawResource(); sl@0: void ConstructL(); sl@0: protected: sl@0: //from CTGraphicsStep sl@0: void RunTestCaseL(TInt aCurTestCase); sl@0: private: sl@0: void TestDrawResourcePos(); sl@0: void TestDrawResourceRect(); sl@0: void TestDrawResourceScale(); sl@0: void TestRWsDrawableSourceReferenceCountingL(); sl@0: void TestRemoteGcDrawResourcePosL(); sl@0: void TestRemoteGcDrawResourceRectL(); sl@0: void TestRemoteGcDrawResourceScaleL(); sl@0: void TestDrawResourceScreensL(); sl@0: void TestCopyScreenToBitmapWithDifferentDisplayModesL(); sl@0: //Helper functions sl@0: TBool CompareBitmapsByPixel(CFbsBitmap* aCandidateBitmap, CFbsBitmap* aReferenceBitmap); sl@0: void CreateReferenceAndCopyBitmapsL(); sl@0: void CreateSgImageFromBitmapL(RSgImage& aImage); sl@0: void BitmapLC(CFbsBitmap*& aBmp); //helper function to extract bitmap from the image sl@0: void CreateReferenceBitmapLC(CFbsBitmap*& aBmpTarget, CFbsBitmap* aBmpSrc, TDisplayMode aDestMode); sl@0: void CreateBitmapLC(CFbsBitmap*& aBmpTarget, const TSize& aSize, TDisplayMode aDispMode) const; sl@0: private: sl@0: RWindow iWindow; sl@0: CFbsBitmap* iRefBitmap; sl@0: CFbsBitmap* iRotatedRefBitmap; sl@0: CFbsBitmap* iScaledBitmap; sl@0: CFbsBitmap *iScaledCroppedBitmap; sl@0: CFbsBitmap* iCopyBitmap; sl@0: CFbsBitmap* iBitmapWrongScreenNumber; sl@0: CDirectGdiDriver* iDGdiDriver; sl@0: sl@0: //Required for RemoteGc testing sl@0: RSgImageCollection iImageCollection; sl@0: RSgImage iImage; sl@0: RDirectGdiImageTarget iImageTarget; sl@0: RWsDrawableSource iWsDrawableSource; sl@0: CTestWsGraphicsContext* iGraphicsCon; sl@0: CWSGraphicsRes* iWsGrapicResolver; sl@0: }; sl@0: sl@0: class CTDrawResourceStep : public CTGraphicsStep sl@0: { sl@0: public: sl@0: CTDrawResourceStep(); sl@0: protected: sl@0: //from CTGraphicsStep sl@0: CTGraphicsBase* CreateTestL(); sl@0: }; sl@0: sl@0: sl@0: #endif /*TDRAWRESOURCE_H_*/