localisation/uiftestfw/src/appfwk_test_AppUi.cpp
branchSymbian3
changeset 57 b8d18c84f71c
parent 6 c108117318cb
equal deleted inserted replaced
56:aa99f2208aad 57:b8d18c84f71c
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    10 //
    10 //
    11 // Contributors:
    11 // Contributors:
    12 //
    12 //
    13 // Description:
    13 // Description:
    14 //
    14 //
    15 
       
    16 
       
    17 
    15 
    18 /**
    16 /**
    19  @file
    17  @file
    20  @test
    18  @test
    21  @internalComponent - Internal Symbian test code 
    19  @internalComponent - Internal Symbian test code 
    22 */
    20 */
    23 
    21 
    24 
    22 
    25 #include <eikmenub.h>
    23 #include <mw/eikmenub.h>
    26 #include <eikbtgpc.h>
    24 #include <mw/eikbtgpc.h>
    27 #include <eikenv.h>
    25 #include <eikenv.h>
    28 #include <hal.h>
    26 #include <hal.h>
    29 
    27 
    30 #include "appfwk_test_AppUi.h"
    28 #include "appfwk_test_AppUi.h"
    31 
    29 
   138 	{
   136 	{
   139 	iNumStep = aNumber;
   137 	iNumStep = aNumber;
   140 	}
   138 	}
   141 
   139 
   142 
   140 
   143 EXPORT_C CTestCoeAppUi::CTestCoeAppUi(CTestStep* aStep) :
   141 EXPORT_C CTestCoeAppUi::CTestCoeAppUi(CTmsTestStep* aStep) :
   144 		iStep(aStep) 
   142 		iStep(aStep) 
   145 	{
   143 	{
   146 	}
   144 	}
   147 
   145 
   148 
   146 
   166 	
   164 	
   167 	CCoeAppUi::ConstructL();
   165 	CCoeAppUi::ConstructL();
   168 	}
   166 	}
   169 
   167 
   170 
   168 
   171 EXPORT_C CTestAppUi::CTestAppUi(CTestStep* aStep, const	TDesC& aRes, TInt aResourceHotKeysId,  TInt aResourceMenuBarId, TInt aResourceToolBarId) :
   169 EXPORT_C CTestAppUi::CTestAppUi(CTmsTestStep* aStep, const	TDesC& aRes, TInt aResourceHotKeysId,  TInt aResourceMenuBarId, TInt aResourceToolBarId) :
   172 		CEikAppUi(),
   170 		CEikAppUi(),
   173 		iResourceHotKeysId(aResourceHotKeysId), 
   171 		iResourceHotKeysId(aResourceHotKeysId), 
   174 		iResourceMenuBarId(aResourceMenuBarId),
   172 		iResourceMenuBarId(aResourceMenuBarId),
   175 		iResourceToolBarId(aResourceToolBarId),
   173 		iResourceToolBarId(aResourceToolBarId),
   176 		iStep(aStep)
   174 		iStep(aStep)
   284 
   282 
   285 TInt  E32Dll()
   283 TInt  E32Dll()
   286 	{
   284 	{
   287 	return 0;
   285 	return 0;
   288 	}
   286 	}
       
   287 
       
   288