sipplugins/sippsipsettingsui/inc/sipsettlistsipprofsetprovlistitem.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Setting provider list item, modifies title pane
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef SIP_SETT_LIST_SIP_PROF_SET_PROV_LIST_ITEM_H
       
    21 #define SIP_SETT_LIST_SIP_PROF_SET_PROV_LIST_ITEM_H
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 #include <aknsettingitemlist.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 
       
    29 class CAknTitlePane;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  CSIPSettListSIPProfSetProvListItem listitem class
       
    35 *  @since 3.0
       
    36 *  listitem class for SIP Profile settings view
       
    37 */
       
    38 class CSIPSettListSIPProfSetProvListItem : public CAknTextSettingItem
       
    39     {
       
    40     public:  // Constructors and destructor
       
    41         
       
    42         /**
       
    43         * C++ default constructor. No two-phased construction due
       
    44         * the nature of this object
       
    45         * @param aIdentifier ID of this instance
       
    46         * @param aText Default text
       
    47         * @param aPane Pointer to modified title pane
       
    48         */
       
    49         CSIPSettListSIPProfSetProvListItem( 
       
    50             TInt aIdentifier, TDes& aText, CAknTitlePane* aPane );
       
    51 
       
    52         /**
       
    53         * Destructor.
       
    54         */
       
    55         virtual ~CSIPSettListSIPProfSetProvListItem();    
       
    56 
       
    57     public: // Functions from base classes
       
    58 
       
    59         /**
       
    60         * From CAknSettingItem
       
    61         * @param aSettingPage Setting page that caused the item
       
    62         * @return aEventType the type of the event
       
    63         */
       
    64         void HandleSettingPageEventL( CAknSettingPage* aSettingPage,
       
    65                                       TAknSettingPageEvent aEventType );
       
    66           
       
    67     protected:  // Data
       
    68         
       
    69         CAknTitlePane* iPane;  
       
    70     };
       
    71 
       
    72 #endif      // SIP_SETT_LIST_SIP_PROF_SET_PROV_LIST_ITEM_H
       
    73             
       
    74 // End of File