sl@0: // Copyright (c) 2007-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 sl@0: */ sl@0: sl@0: #ifndef __T_WSERVINTEGSTEPBASIC_H__ sl@0: #define __T_WSERVINTEGSTEPBASIC_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: const TInt KTempWindowHeight = 200; sl@0: const TInt KTempWindowWidth = 200; sl@0: _LIT(KT_WServIntegStepBasic,"T_WServIntegStepBasic"); sl@0: sl@0: sl@0: class CT_WServIntegStepBasic : public CTestStep sl@0: { sl@0: public: sl@0: CT_WServIntegStepBasic(); sl@0: ~CT_WServIntegStepBasic(); sl@0: // from CTestStep sl@0: virtual enum TVerdict doTestStepPreambleL(); sl@0: virtual enum TVerdict doTestStepL(); sl@0: virtual enum TVerdict doTestStepPostambleL(); sl@0: sl@0: private: sl@0: void CreateSurfaceManager(); sl@0: void CreateSurfaceL(TSurfaceId& aSurfaceId, TUint aColorPattern=0xFF0000FF); sl@0: void CreateSurfaceUpdateSessionL(); sl@0: void DestroySurface(); sl@0: void CreateRWindowL(RWindow& aWin, const TPoint& aPos=TPoint(0,0), const TRgb& aBkgdColor=TRgb(0x800000FF), const TSize& aWinSize=TSize(KTempWindowWidth,KTempWindowHeight) ); sl@0: void CreateRBlankWindowL(RBlankWindow& aBlankWin); sl@0: void ForceWindowToRedraw(RWindowBase& aWin); sl@0: TVerdict SetSurfaceL(RWindow& aWin, TSurfaceId& aSurfaceId); sl@0: void DrawShape(RWindow& aWin, const TRgb& aColor); sl@0: sl@0: // Test cases sl@0: void Graphics_Wserv_Gce_1L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_2L(RBlankWindow& aBlankWin); sl@0: void Graphics_Wserv_Gce_3L(); sl@0: void Graphics_Wserv_Gce_4L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_5L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_6L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_11L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_13L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_15L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_17L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_19L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_21L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_22L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_31L(RBlankWindow& aBlankWin); sl@0: void Graphics_Wserv_Gce_32L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_33L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_34L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_35L(RWindow& aWin); sl@0: void Graphics_Wserv_Gce_36L(RWindow& aWin); sl@0: sl@0: private: // Data members sl@0: TInt iTestId; sl@0: // TDisplayMode iDisplayMode; sl@0: CWindowGc* iGc; sl@0: CWsScreenDevice* iScreen; sl@0: RWsSession iWsSession; sl@0: RSurfaceManager iSurfaceManager; sl@0: TSurfaceId iSurfaceId; sl@0: RChunk iChunk; sl@0: RSurfaceUpdateSession iSurfaceUpdateSession; sl@0: RWindowGroup iWinGroup; sl@0: }; sl@0: sl@0: #endif // __T_WSERVINTEGSTEPBASIC_H__