cmmanager/cpwlanapplugin/inc/cpwlanapadvancedview.h
changeset 20 9c97ad6591ae
child 27 489cf6208544
equal deleted inserted replaced
18:fcbbe021d614 20:9c97ad6591ae
       
     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 WLAN AP advanced settings view header file.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef CPWLANAPADVANCEDVIEW_H
       
    20 #define CPWLANAPADVANCEDVIEW_H
       
    21 
       
    22 // System includes
       
    23 #include <cpbasesettingview.h>
       
    24 
       
    25 // User includes
       
    26 
       
    27 // Forward declarations
       
    28 class HbDataForm;
       
    29 class HbDataFormModel;
       
    30 class CmConnectionMethodShim;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 // Class declaration
       
    37 class CpWlanApAdvancedView : public CpBaseSettingView
       
    38 {
       
    39     Q_OBJECT
       
    40     
       
    41 public:
       
    42     CpWlanApAdvancedView(
       
    43         CmConnectionMethodShim *cmConnectionMethod,
       
    44         QGraphicsItem *parent = 0);
       
    45     ~CpWlanApAdvancedView();
       
    46     
       
    47 signals:
       
    48 
       
    49 public slots:
       
    50 
       
    51 protected:
       
    52 
       
    53 protected slots:
       
    54  
       
    55 private:
       
    56     void createAdvancedSettings();
       
    57     
       
    58 private slots:
       
    59     
       
    60 private: // data
       
    61     //! Dataform
       
    62     HbDataForm *mForm;
       
    63     //! Dataform model
       
    64     HbDataFormModel *mModel;
       
    65     //! Connection Settings Shim connection method pointer
       
    66     CmConnectionMethodShim *mCmConnectionMethod;
       
    67 };
       
    68 
       
    69 #endif // CPWLANAPADVANCEDVIEW_H