diff -r 000000000000 -r ba25891c3a9e appinstaller/AppMngr2/inc/appmngr2log.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/appinstaller/AppMngr2/inc/appmngr2log.h Thu Dec 17 08:51:10 2009 +0200 @@ -0,0 +1,49 @@ +/* +* Copyright (c) 2002-2008 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: Shows installation log in a popup list dialog +* +*/ + + +#ifndef C_APPMNGR2LOG_H +#define C_APPMNGR2LOG_H + +#include // CBase +#include // CDesCArray +#include // SwiUI::TLogTaskAction + +class CEikonEnv; + + +class CAppMngr2Log : public CBase + { +public: // constructor and destructor + static CAppMngr2Log* NewLC(); + ~CAppMngr2Log(); + +public: // new functions + void ShowInstallationLogL(); + +private: // new functions + CAppMngr2Log( CEikonEnv& aEikEnv ); + void ConstructLogArrayL( CDesCArray* aItemArray ); + void SetLogActionTextColumnL( TDes& aListboxLine, const SwiUI::TLogTaskAction& aAction ); + void SetLogDateTimeColumnL( TDes& aListboxLine, const TTime& aDateTime ); + +private: // data + CEikonEnv& iEikEnv; + }; + +#endif // C_APPMNGR2LOG_H +