diff -r 000000000000 -r 79c6a41cd166 idlefw/plugins/mcsplugin/handler/inc/mcspluginhandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlefw/plugins/mcsplugin/handler/inc/mcspluginhandler.h Thu Dec 17 08:54:17 2009 +0200 @@ -0,0 +1,112 @@ +/* +* Copyright (c) 2009 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: +* +*/ + +#ifndef __MCSPLUGINHANDLER_H__ +#define __MCSPLUGINHANDLER_H__ + +#include + +#include +#include // For CVwsSessionWrapper +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS +#include +#endif + +#include // For TVwsViewId + + +class CEikonEnv; +class CVwsSessionWrapper; + +/** + * @ingroup group_mcsplugin + * +* Handler for menu items of type "menu:shortcut" "menu:folder" and "menu:suite". + * + * @since S60 9.1 +*/ +NONSHARABLE_CLASS( CMCSPluginHandler ): public CMenuHandlerPlugin + { + +public: // construction + + /** + * Destructor. + */ + virtual ~CMCSPluginHandler(); + + /** + * Two-phased constructor. Leaves on failure. + * @param aMenu Menu. + * @return The constructed object. + */ + static CMCSPluginHandler* NewL( RMenu &aMenu ); + +protected: // construction + + /** + * Constructor. + * @param aMenu Menu. + */ + CMCSPluginHandler( RMenu &aMenu ); + + /** + * Second-phase constructor. + */ + void ConstructL(); + +public: // from CMenuHandler + + /** + * Query support for item type. + * @param aType Type. + * @return ETrue if handler supports this type, EFalse otherwise. + */ + TBool SupportsType( const TDesC& aType ); + + /** + * Handle command. + * @param aItem Item of supported type. + * @param aCommand Command. + * @param aParams. Command parameters. + * @param aStatus Observer request status. When the operation completes, + * this status will be completed with the resulting error code. + * @return Asynchronous operation. Owned by the caller. + */ + CMenuOperation* HandleCommandL( + CMenuItem& aItem, + const TDesC8& aCommand, + const TDesC8& aParams, + TRequestStatus& aStatus ); + +private: // internal + + void LaunchShortcutL( CMenuItem& aItem ); + +private: // data + + CEikonEnv* iEikEnv; + + /** + * View server session wrapper. + * Own + */ + CVwsSessionWrapper* iVwsSession; + + }; + +#endif // __MCSPLUGINHANDLER_H__