messagingappbase/mce/inc/MceMessageListbox.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     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:  
       
    15 *     Message list view's listbox to create object of
       
    16 *     CMceMessageListBoxItemDrawer.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #ifndef MCEMESSAGELISTBOX_H
       
    23 #define MCEMESSAGELISTBOX_H
       
    24 
       
    25 //  INCLUDES
       
    26 #include <aknlists.h>
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CMceMessageListContainer;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  This class is needed to create correct item drawer.
       
    35 */
       
    36 class CMceMessageListBox : public CAknDoubleGraphicStyleListBox
       
    37     {
       
    38     public:
       
    39         /**
       
    40         * C++ constructor.
       
    41         */
       
    42         CMceMessageListBox(CMceMessageListContainer& aMessageListContainer);
       
    43 
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         ~CMceMessageListBox();
       
    48 
       
    49     protected:
       
    50         /**
       
    51         * From CAknDoubleGraphicStyleListBox
       
    52         */
       
    53         virtual void CreateItemDrawerL();
       
    54 
       
    55     private: // Data
       
    56         CMceMessageListContainer& iMessageListContainer;
       
    57 
       
    58     };
       
    59 
       
    60 
       
    61 #endif      // MCEMESSAGELISTBOX_H
       
    62 
       
    63 // End of File