diff -r 0efa10d348c0 -r a5a39a295112 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 Wed Sep 01 12:22:09 2010 +0100 @@ -0,0 +1,140 @@ +/* +* 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 +#include // For MMsvSessionObserver +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS +#include +#endif + +#include // For TVwsViewId + + +class CEikonEnv; +class CVwsSessionWrapper; +class CMsvSession; + +/** + * @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 MMsvSessionObserver + { + +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 ); + +public: // from MMsvSessionObserver + + /** + * Handles an event from the message server. + * Not used, but must be defined to be able to use the messaging server. + * + * @since S60 v3.2 + * @param aEvent Indicates the event type. + * @param aArg1 Event type-specific argument value + * @param aArg2 Event type-specific argument value + * @param aArg3 Event type-specific argument value + */ + void HandleSessionEventL( TMsvSessionEvent aEvent, TAny* aArg1, TAny* aArg2, + TAny* aArg3 ); + + + +private: // internal + + void LaunchShortcutL( CMenuItem& aItem ); + + TInt GetEmailAccountCountL(); + +private: // data + + CEikonEnv* iEikEnv; + + /** + * View server session wrapper. + * Own + */ + CVwsSessionWrapper* iVwsSession; + + /** + * Message server session + * Own. + */ + CMsvSession* iMsvSession; + + }; + +#endif // __MCSPLUGINHANDLER_H__