diff -r 000000000000 -r 164170e6151a pkiutilities/SecModUI/src/SecModUIContainerMain.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pkiutilities/SecModUI/src/SecModUIContainerMain.cpp Tue Jan 26 15:20:08 2010 +0200 @@ -0,0 +1,65 @@ +/* +* Copyright (c) 2005 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: Implementation of the CSecModUIContainerMain class +* +*/ + + +// INCLUDE FILES +#include "SecModUIContainerMain.h" +#include "SecModUIModel.h" +#include "SecModUILogger.h" +#include "wim.hlp.hrh" +#include +#include +#include +#include + + +// ================= MEMBER FUNCTIONS ======================= +CSecModUIContainerMain::CSecModUIContainerMain(CSecModUIModel& aModel) + :CSecModUIContainerBase(aModel, KSECMOD_HLP_MAIN_VIEW) + { + } + +// Destructor +CSecModUIContainerMain::~CSecModUIContainerMain() + { + LOG_ENTERFN("CSecModUIContainerMain::~CSecModUIContainerMain()"); + LOG_LEAVEFN("CSecModUIContainerMain::~CSecModUIContainerMain()"); + } + +// --------------------------------------------------------- +// CSecModUIContainerSignature::ConstructListL() +// Constructs listbox +// --------------------------------------------------------- +// +void CSecModUIContainerMain::ConstructListL() + { + iListBox = new (ELeave) CAknDoubleStyleListBox(); + } + +// --------------------------------------------------------- +// CSecModUIContainerMain::SetupListItemsL() +// Setups list items to listbox. +// --------------------------------------------------------- +// +void CSecModUIContainerMain::SetupListItemsL() + { + LOG_ENTERFN("CSecModUIContainerMain::SetupListItemsL()"); + iModel.LoadTokenLabelsL(*iListBox); + LOG_LEAVEFN("CSecModUIContainerMain::SetupListItemsL()"); + } + +// End of File