homescreen_plat/hs_renderingplugin_api/inc/xnexteventhandler.h
branchRCL_3
changeset 9 f966699dea19
equal deleted inserted replaced
5:c743ef5928ba 9:f966699dea19
       
     1 /*
       
     2  * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:  
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef XNEXTEVENTHANDLER_H
       
    19 #define XNEXTEVENTHANDLER_H
       
    20 
       
    21 // System includes
       
    22 #include <e32base.h>
       
    23 
       
    24 /**
       
    25  *  External event hadler interface for routing events from external
       
    26  *  rendering plug-ins to content plug-ins
       
    27  *
       
    28  *  @since S60 v5.2
       
    29  */
       
    30 class MXnExtEventHandler
       
    31     {
       
    32 public:
       
    33     /**
       
    34      * Routes the events from the external rendering plug-ins to content plug-ins
       
    35      * @since Series 60 5.2
       
    36      * @param aEvent Event string
       
    37      * @param aDestination Destination content plug-in.
       
    38      */
       
    39     virtual void HandleEventL( const TDesC& aEvent, const TDesC8& aDestination  ) = 0;
       
    40     };
       
    41 
       
    42 #endif //XNEXTEVENTHANDLER_H