diff -r 000000000000 -r 2f259fa3e83a uifw/AvKon/tsrc/bc/bctesttemplate/src/bctesttemplateappui.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uifw/AvKon/tsrc/bc/bctesttemplate/src/bctesttemplateappui.cpp Tue Feb 02 01:00:49 2010 +0200 @@ -0,0 +1,93 @@ +/* +* Copyright (c) 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: appui +* +*/ + + +#include +#include + +#include "bctesttemplateappui.h" +#include "bctesttemplate.hrh" +#include "bctesttemplateview.h" +#include "bctestutil.h" +#include "bctesttemplatecase.h" + + +// ======== MEMBER FUNCTIONS ======== + +// --------------------------------------------------------------------------- +// constructor do nothing +// --------------------------------------------------------------------------- +// +CBCTestTemplateAppUi::CBCTestTemplateAppUi() + { + } + +// --------------------------------------------------------------------------- +// symbian 2nd phase constructor +// --------------------------------------------------------------------------- +// +void CBCTestTemplateAppUi::ConstructL() + { + BaseConstructL(); + AknsUtils::SetAvkonSkinEnabledL( ETrue ); + + // init test util + iTestUtil = CBCTestUtil::NewL(); + + // init view + CBCTestTemplateView* view = CBCTestTemplateView::NewL( iTestUtil ); + CleanupStack::PushL( view ); + AddViewL( view ); + CleanupStack::Pop( view ); + + ActivateLocalViewL( view->Id() ); + + // Add test case here. + iTestUtil->AddTestCaseL( CBCTestTemplateCase::NewL( view->Container() ), + _L( "Template test case" ) ); + } + +// --------------------------------------------------------------------------- +// CBCTestTemplateAppUi::~CBCTestTemplateAppUi() +// Destructor. +// --------------------------------------------------------------------------- +// +CBCTestTemplateAppUi::~CBCTestTemplateAppUi() + { + delete iTestUtil; + } + +// --------------------------------------------------------------------------- +// handle menu command events +// --------------------------------------------------------------------------- +// +void CBCTestTemplateAppUi::HandleCommandL( TInt aCommand ) + { + switch ( aCommand ) + { + case EAknSoftkeyBack: + case EEikCmdExit: + { + Exit(); + return; + } + default: + break; + } + } + +// End of File