wlanutilities/wlanentryplugin/inc/cpwlanentryitemdata.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     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 * WLAN Entry plugin item data implementation.
       
    16 */
       
    17 
       
    18 #ifndef CPWLANENTRYITEMDATA_H
       
    19 #define CPWLANENTRYITEMDATA_H
       
    20 
       
    21 // System includes
       
    22 
       
    23 #include "cpsettingformentryitemdata.h"
       
    24 
       
    25 // User includes
       
    26 
       
    27 // Forward declarations
       
    28 
       
    29 class WlanStatusInfo;
       
    30 
       
    31 // External data types
       
    32 
       
    33 // Constants
       
    34 
       
    35 // Class declaration
       
    36 
       
    37 class CpWlanEntryItemData : public CpSettingFormEntryItemData
       
    38 {
       
    39     Q_OBJECT
       
    40 
       
    41 public:
       
    42 
       
    43     // Data types
       
    44 
       
    45     explicit CpWlanEntryItemData(CpItemDataHelper &itemDataHelper);
       
    46     
       
    47     virtual ~CpWlanEntryItemData();
       
    48 
       
    49 signals:
       
    50 
       
    51 public slots:
       
    52 
       
    53 protected:
       
    54 
       
    55 protected slots:
       
    56 
       
    57 private:
       
    58 
       
    59     Q_DISABLE_COPY(CpWlanEntryItemData)
       
    60 
       
    61     virtual CpBaseSettingView *createSettingView() const;
       
    62 
       
    63 private slots:
       
    64 
       
    65     void statusUpdate();
       
    66 
       
    67 private: // data
       
    68 
       
    69     WlanStatusInfo *mWlanStatusInfo;        //!< WLAN status info handler
       
    70 
       
    71     // Friend classes
       
    72 
       
    73 };
       
    74 
       
    75 #endif // CPWLANENTRYITEMDATA_H