phonebookui/Phonebook2/ccapplication/ccacommlauncherplugin/inc/ccappcommlaunchercustomlistbox.h
branchRCL_3
changeset 63 f4a778e096c2
child 64 c1e8ba0c2b16
equal deleted inserted replaced
62:5b6f26637ad3 63:f4a778e096c2
       
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 /*
       
    18  * ccappcommlaunchercustomlistbox.h
       
    19  *
       
    20  *  Created on: 2009-10-30
       
    21  *      Author: dev
       
    22  */
       
    23 
       
    24 #ifndef CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_
       
    25 #define CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_
       
    26 
       
    27 //  INCLUDES
       
    28 #include <aknlists.h>
       
    29 
       
    30 // FORWARD DECLARATIONS
       
    31 class CCCAppCommLauncherCustomListBoxData;
       
    32 
       
    33 
       
    34 NONSHARABLE_CLASS(CCCAppCommLauncherCustomListBox) :
       
    35             public CAknDoubleLargeStyleListBox
       
    36     {                   
       
    37     public: // Constructors and destructor
       
    38 
       
    39         /**
       
    40          * Creates a new instance of this class.
       
    41          */
       
    42         static CCCAppCommLauncherCustomListBox* NewL();
       
    43 
       
    44         /**
       
    45          * Destructor.
       
    46          */
       
    47         ~CCCAppCommLauncherCustomListBox();
       
    48         
       
    49     public:
       
    50     	
       
    51         /** CreateItemDrawerL()
       
    52         *
       
    53         * Chooses which itemdrawer to use.
       
    54         */
       
    55         void CreateItemDrawerL(); 
       
    56         
       
    57         void SizeChanged();
       
    58         
       
    59     private: // Implementation
       
    60     	
       
    61     	CCCAppCommLauncherCustomListBox();
       
    62     	void SizeChangedL();
       
    63 
       
    64     private: // Data
       
    65         /// Doesnt Own - Ownership Transferred to CPbk2ContactViewCustomListBoxItemDrawer
       
    66     	CCCAppCommLauncherCustomListBoxData* iColumnData;
       
    67     };
       
    68 
       
    69 
       
    70 #endif /* CCAPPCOMMLAUNCHERCUSTOMLISTBOX_H_ */