securitysettings/cpeapuiplugins/cpeaptlsmethodsui/inc/cpeaptlsmethodsinnereapui.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     1 /*
       
     2  * Copyright (c) 2010 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  *   Control Panel Inner EAP Entry item for TLS-based EAP methods
       
    16  *
       
    17  */
       
    18 
       
    19 /*
       
    20  * %version: 3 %
       
    21  */
       
    22 
       
    23 #ifndef CPEAPTLSMETHODSINNEREAPUI_H
       
    24 #define CPEAPTLSMETHODSINNEREAPUI_H
       
    25 
       
    26 // System includes
       
    27 #include <cpsettingformentryitemdata.h>
       
    28 
       
    29 // User includes
       
    30 
       
    31 // Forward declarations
       
    32 class CpEapTlsMethodsUi;
       
    33 
       
    34 // External data types
       
    35 
       
    36 // Constants
       
    37 
       
    38 /*!
       
    39  * @addtogroup group_eap_ui_plugin_eap_tlsmethods
       
    40  * @{
       
    41  */
       
    42 
       
    43 class EapInnerMethodEntryItemData : public CpSettingFormEntryItemData
       
    44 {
       
    45 public:
       
    46     EapInnerMethodEntryItemData(
       
    47         CpEapTlsMethodsUi* tlsUi, 
       
    48         CpItemDataHelper &itemDataHelper,
       
    49         const QString &text);
       
    50     
       
    51     virtual ~EapInnerMethodEntryItemData();
       
    52 
       
    53     virtual CpBaseSettingView *createSettingView() const;
       
    54 
       
    55 private:
       
    56     CpEapTlsMethodsUi* mTlsUi;
       
    57     CpItemDataHelper& mItemDataHelper;
       
    58 };
       
    59 
       
    60 /*! @} */
       
    61 
       
    62 #endif