csxhelp/AiwHelpProvider/inc/AiwHelpProvider.h
changeset 0 1f04cf54edd8
equal deleted inserted replaced
-1:000000000000 0:1f04cf54edd8
       
     1 /*
       
     2 * Copyright (c) 2002 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:  header file.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef _AIW_HELP_PROVIDER_H
       
    21 #define _AIW_HELP_PROVIDER_H
       
    22 
       
    23 #include <AiwServiceIfMenu.h>
       
    24 
       
    25 class CAiwHelpProvider : public CAiwServiceIfMenu 
       
    26     {
       
    27     public: 
       
    28         static CAiwHelpProvider* NewL();
       
    29         ~CAiwHelpProvider();
       
    30 
       
    31     public: 
       
    32         virtual void InitialiseL(
       
    33             MAiwNotifyCallback& aFrameworkCallback,
       
    34             const RCriteriaArray& aInterest);
       
    35 
       
    36         virtual void HandleServiceCmdL(
       
    37             const TInt& aCmdId,
       
    38             const CAiwGenericParamList& aInParamList,
       
    39             CAiwGenericParamList& aOutParamList,
       
    40             TUint aCmdOptions = 0,
       
    41             const MAiwNotifyCallback* aCallback = NULL);
       
    42 
       
    43         virtual void InitializeMenuPaneL(
       
    44             CAiwMenuPane& aMenuPane,
       
    45             TInt aIndex,
       
    46             TInt aCascadeId,
       
    47             const CAiwGenericParamList& aInParamList);
       
    48 
       
    49         virtual void HandleMenuCmdL(
       
    50             TInt aMenuCmdId,
       
    51             const CAiwGenericParamList& aInParamList,
       
    52             CAiwGenericParamList& aOutParamList,
       
    53             TUint aCmdOptions = 0,
       
    54             const MAiwNotifyCallback* aCallback = NULL);
       
    55 
       
    56     private:
       
    57         CAiwHelpProvider();
       
    58     };
       
    59 #endif