diff -r 1801340c26a2 -r e5af45d51884 uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifctkitblockshuidecklayout.cpp --- a/uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifctkitblockshuidecklayout.cpp Thu Aug 19 10:48:02 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +0,0 @@ -/* -* Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: For test alf core toolkit api modules -* -*/ - - - -// [INCLUDE FILES] -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "testuiaifcoretoolkit.h" -// ----------------------------------------------------------------------------- -// CTestUiAifCoreToolkit::TestCHuiDeckLayoutAddNewL -// ----------------------------------------------------------------------------- -// -TInt CTestUiAifCoreToolkit::TestCHuiDeckLayoutAddNewL( CStifItemParser& /*aItem*/ ) - { - - // Print to UI - _LIT( Ktestuiaifcoretoolkit, "testuiaifcoretoolkit" ); - _LIT( KTestCHuiDeckLayoutAddNewL, "In TestCHuiDeckLayoutAddNewL" ); - TestModuleIf().Printf( 0, Ktestuiaifcoretoolkit, KTestCHuiDeckLayoutAddNewL ); - // Print to log file - iLog->Log( KTestCHuiDeckLayoutAddNewL ); - - STIF_ASSERT_NOT_NULL( iHuiEnv ); - STIF_ASSERT_NOT_NULL( iHuiControl ); - CHuiControl* otherControl = new( ELeave ) CHuiControl( *iHuiEnv ); - STIF_ASSERT_NOT_NULL( otherControl ); - CleanupStack::PushL( otherControl ); - iHuiControl->SetId( 0 ); - STIF_ASSERT_NOT_NULL( iHuiControlGroup ); - CHuiCurvePath* curvePath = CHuiCurvePath::NewL(); - STIF_ASSERT_NOT_NULL( curvePath ); - CleanupStack::PushL( curvePath ); - curvePath->SetOrigin( 0 ); - TReal32 length = curvePath->Length(); - TReal32 aPos = 2; - THuiRealPoint aPoint( 3, 3 ); - curvePath->Evaluate( aPos, aPoint ); - CleanupStack::PopAndDestroy( curvePath ); - CHuiDeckLayout* deckLayout = CHuiDeckLayout::AddNewL( *iHuiControl ); - STIF_ASSERT_NOT_NULL( deckLayout ); - CleanupStack::PushL( deckLayout ); - CleanupStack::Pop( 2 ); - - return KErrNone; - - } -// ----------------------------------------------------------------------------- -// CTestUiAifCoreToolkit::TestCHuiDeckLayoutDestructL -// ----------------------------------------------------------------------------- -// -TInt CTestUiAifCoreToolkit::TestCHuiDeckLayoutDestructL( CStifItemParser& /*aItem*/ ) - { - - // Print to UI - _LIT( Ktestuiaifcoretoolkit, "testuiaifcoretoolkit" ); - _LIT( KTestCHuiDeckLayoutDestructL, "In TestCHuiDeckLayoutDestructL" ); - TestModuleIf().Printf( 0, Ktestuiaifcoretoolkit, KTestCHuiDeckLayoutDestructL ); - // Print to log file - iLog->Log( KTestCHuiDeckLayoutDestructL ); - - STIF_ASSERT_NOT_NULL( iHuiEnv ); - STIF_ASSERT_NOT_NULL( iHuiControl ); - CHuiControl* otherControl = new( ELeave ) CHuiControl( *iHuiEnv ); - STIF_ASSERT_NOT_NULL( otherControl ); - CleanupStack::PushL( otherControl ); - iHuiControl->SetId( 0 ); - STIF_ASSERT_NOT_NULL( iHuiControlGroup ); - CHuiCurvePath* curvePath = CHuiCurvePath::NewL(); - STIF_ASSERT_NOT_NULL( curvePath ); - CleanupStack::PushL( curvePath ); - curvePath->SetOrigin( 0 ); - TReal32 length = curvePath->Length(); - TReal32 aPos = 2; - THuiRealPoint aPoint( 3, 3 ); - curvePath->Evaluate( aPos, aPoint ); - CleanupStack::PopAndDestroy( curvePath ); - CHuiDeckLayout* deckLayout = CHuiDeckLayout::AddNewL( *iHuiControl ); - STIF_ASSERT_NOT_NULL( deckLayout ); - CleanupStack::PushL( deckLayout ); - CleanupStack::Pop( 2 ); - - return KErrNone; - } - -// [End of File]