wlanutilities/wlansniffer/mainapplication/inc/wsfdetailscontainerif.h
branchRCL_3
changeset 24 63be7eb3fc78
parent 23 b852595f5cbe
child 25 f28ada11abbf
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
     1 /*
       
     2 * Copyright (c) 2007-2008 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:  Class header for MWsfDetailsContainerIf
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef M_WSFDETAILSCONTAINERIF_H
       
    19 #define M_WSFDETAILSCONTAINERIF_H
       
    20 
       
    21 //  EXTERNAL INCLUDES
       
    22 #include <e32def.h>
       
    23 
       
    24 //  FORWARD DECLARATIONS
       
    25 class MDesCArray;
       
    26 
       
    27 //  CLASS DEFINITION
       
    28 /**
       
    29  *  An interface to the Details view’s container for updating
       
    30  *  its listbox or navigation pane.
       
    31  *  @since S60 v5.0
       
    32  */
       
    33 class MWsfDetailsContainerIf
       
    34     {
       
    35     public:     // Abstract methods
       
    36         
       
    37         /*
       
    38         * Refresh the content list box.
       
    39         * @param aItemTextArray - items to be show on listbox
       
    40         */
       
    41         virtual void UpdateListBoxL( MDesCArray* aItemTextArray ) = 0;
       
    42         
       
    43         /**
       
    44         * Refresh the content of Navi pane.
       
    45         * @param aPaneText - text to be show on pane
       
    46         */
       
    47         virtual void UpdateNaviPaneL( const TDesC& aPaneText ) = 0;
       
    48 
       
    49     };
       
    50 
       
    51 #endif      //  M_WSFDETAILSCONTAINERIF_H
       
    52 
       
    53 // End of file