mpxplugins/viewplugins/views/collectionviewhg/inc/mpxpopuplist.h
branchRCL_3
changeset 14 943ff5625028
equal deleted inserted replaced
11:13afc0e517bd 14:943ff5625028
       
     1 /*
       
     2 * Copyright (c) 2006 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:  MPX popuplist
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CMPXPOPUPLIST_H
       
    21 #define CMPXPOPUPLIST_H
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 
       
    26 #include <aknlists.h>
       
    27 #include <aknPopup.h>
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32  *  Wrapper class for avkon popuplist.
       
    33  *
       
    34  *  @lib mpxcollectionviewhg.lib
       
    35  *  @since S60 v5.0
       
    36  */
       
    37 NONSHARABLE_CLASS( CMpxPopupList ) : public CAknPopupList
       
    38     {
       
    39 public:
       
    40     
       
    41     static CMpxPopupList* NewL( 
       
    42             CEikListBox* aListBox, 
       
    43             TInt aCbaResource,
       
    44             AknPopupLayouts::TAknPopupLayouts aType = AknPopupLayouts::EMenuWindow );            
       
    45     
       
    46     TRect LayoutRect(); 
       
    47 
       
    48     virtual ~CMpxPopupList();
       
    49     
       
    50 protected:
       
    51     CMpxPopupList();
       
    52         
       
    53     };
       
    54 #endif  // CMPXPOPUPLIST_H
       
    55 
       
    56 // End of File