uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifctkitblockshuidecklayout.cpp
branchRCL_3
changeset 19 e5af45d51884
parent 18 1801340c26a2
child 20 31fccae4f8a7
--- 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 <e32svr.h>
-#include <stifparser.h>
-#include <stiftestinterface.h>
-#include <uiacceltk/huienv.h>
-#include <uiacceltk/huicontrol.h>
-#include <uiacceltk/huiControlGroup.h>
-#include <uiacceltk/huivisual.h>
-#include <uiacceltk/huianchorlayout.h>
-#include <uiacceltk/huievent.h>
-#include <uiacceltk/huicurvepath.h>
-#include <uiacceltk/huicurvepathlayout.h>
-#include <uiacceltk/huidecklayout.h>
-#include <eikenv.h>
-#include <e32err.h>
-
-#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]