wvuing/wvuiave/AppSrc/MCARecipientObserver.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2003 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:  Declares interface for recipient procedures in chat view
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCARECIPIENTOBSERVER_H
       
    21 #define MCARECIPIENTOBSERVER_H
       
    22 
       
    23 // CLASS DECLARATION
       
    24 
       
    25 /**
       
    26 *  Declares interface for recipient procedures in chat view
       
    27 *  Interface between chat container and chat view
       
    28 *
       
    29 *  @lib chat.app
       
    30 *  @since 1.2
       
    31 */
       
    32 class MCARecipientObserver
       
    33     {
       
    34     public:
       
    35 
       
    36         /**
       
    37          * Shows recipient list
       
    38          * @param aResourceId Resource id for pop up list
       
    39          * @param aSorted ETrue if list is shown as sorted
       
    40          * @return Positive value if Oked
       
    41          */
       
    42         virtual TInt ShowRecipientsListL( TInt aResourceId ) = 0;
       
    43 
       
    44         /**
       
    45          * Shows popup menu instead of application menu
       
    46          */
       
    47         virtual void ShowPopUpMenuL() = 0;
       
    48 
       
    49     protected:
       
    50 
       
    51         virtual ~MCARecipientObserver() {};
       
    52 
       
    53     };
       
    54 
       
    55 #endif      // MCARECIPIENTOBSERVER_H
       
    56 
       
    57 // End of File