diff -r d1838696558c -r 9dcba1ee99f7 appinstaller/AppMngr2/Widget/inc/appmngr2widgetruntime.h --- a/appinstaller/AppMngr2/Widget/inc/appmngr2widgetruntime.h Thu Oct 14 14:11:30 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,62 +0,0 @@ -/* -* Copyright (c) 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: Widget runtime type for AppMngr2 -* -*/ - - -#ifndef C_APPMNGR2WIDGETRUNTIME_H -#define C_APPMNGR2WIDGETRUNTIME_H - -#include // CAppMngr2Runtime -#include // RWidgetRegistryClientSession - -class CAppMngr2PackageInfo; -class CAknIconArray; - -const TInt KAppMngr2WidgetUidValue = 0x20016BFA; -const TUid KAppMngr2WidgetUid = { KAppMngr2WidgetUidValue }; - -_LIT8( KDataTypeWidget, "application/x-nokia-widget" ); - - -class CAppMngr2WidgetRuntime : public CAppMngr2Runtime - { -public: // constructor and destructor - static CAppMngr2WidgetRuntime* NewL( MAppMngr2RuntimeObserver& aObserver ); - ~CAppMngr2WidgetRuntime(); - -public: // new CAppMngr2Runtime - void LoadIconsL( CAknIconArray& aIconArray ); - void GetSupportedDataTypesL( CDataTypeArray& aDataTypeArray ); - void GetInstallationFilesL( RPointerArray& aPackageInfos, - const RPointerArray& aFileList, - RFs& aFsSession, TRequestStatus& aStatus ); - void CancelGetInstallationFiles(); - void GetInstalledAppsL( RPointerArray& aApps, - RFs& aFsSession, TRequestStatus& aStatus ); - void CancelGetInstalledApps(); - -private: // new functions - CAppMngr2WidgetRuntime( MAppMngr2RuntimeObserver& aObserver ); - void ConstructL(); - -private: // data - TInt iIconCount; - TInt iIconOffset; - RWidgetRegistryClientSession iWidgetRegistry; - }; - -#endif // C_APPMNGR2WIDGETRUNTIME_H -