phonebookui/Phonebook2/UIControls/inc/CPbk2MemorySelectionSettingPage.h
branchRCL_3
changeset 20 f4a778e096c2
parent 0 e686773b3f54
equal deleted inserted replaced
19:5b6f26637ad3 20:f4a778e096c2
       
     1 /*
       
     2 * Copyright (c) 2002-2007 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 *     Memory selection settings page for Phonebook 2.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CPBK2MEMORYSELECTIONSETTINGPAGE_H
       
    21 #define CPBK2MEMORYSELECTIONSETTINGPAGE_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <akncheckboxsettingpage.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29  * Memory selection setting page
       
    30  */
       
    31 NONSHARABLE_CLASS(CPbk2MemorySelectionSettingPage) : 
       
    32 		public CAknCheckBoxSettingPage
       
    33     {
       
    34     public:  // interface
       
    35 		/**
       
    36          * Constructor.
       
    37 		 * @see CAknCheckBoxSettingPage
       
    38          */
       
    39         CPbk2MemorySelectionSettingPage(TInt aResourceID, 
       
    40                                          CSelectionItemList* aItemArray);
       
    41 
       
    42         ~CPbk2MemorySelectionSettingPage();
       
    43                
       
    44     private: // From CAknCheckBoxSettingPage
       
    45         void UpdateSettingL();
       
    46         void UpdateCbaL();                        
       
    47 
       
    48         void HandleControlEventL( CCoeControl* aControl,  
       
    49             TCoeEvent aEventType );
       
    50             
       
    51         void ProcessCommandL(TInt aCommandId);
       
    52     private: // Data
       
    53         //Ref: Pages item array
       
    54         CSelectionItemList* iItemsArray; 
       
    55 
       
    56     };
       
    57 
       
    58 #endif // CPBK2MEMORYSELECTIONSETTINGPAGE_H
       
    59 
       
    60 // End of File