wlanutilities/wlansniffer/wlansnifferapplication/inc/wlansnifferlistitem.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2 * Copyright (c) 2009-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 * WLAN Sniffer list view list widget item.
       
    16 */
       
    17 
       
    18 #ifndef WLANSNIFFERLISTITEM_H
       
    19 #define WLANSNIFFERLISTITEM_H
       
    20 
       
    21 // System includes
       
    22 
       
    23 #include <HbListWidgetItem>
       
    24 #include <QString>
       
    25 
       
    26 // User includes
       
    27 
       
    28 // Forward declarations
       
    29 
       
    30 // External data types
       
    31 
       
    32 // Constants
       
    33 
       
    34 // Class declaration
       
    35 
       
    36 class WlanSnifferListItem : public HbListWidgetItem
       
    37 {
       
    38     
       
    39 public:
       
    40 
       
    41     // Data types
       
    42 
       
    43     WlanSnifferListItem();
       
    44     
       
    45     ~WlanSnifferListItem();
       
    46 
       
    47     void setNetworkName(const QString &text);
       
    48 
       
    49     void setLeftIcon(const QString &icon);
       
    50 
       
    51     void setSignalIcon(const QString &icon);
       
    52 
       
    53     void setSecureIcon(const QString &icon);
       
    54 
       
    55 signals:
       
    56 
       
    57 public slots:
       
    58 
       
    59 protected:
       
    60 
       
    61 protected slots:
       
    62 
       
    63 private:
       
    64 
       
    65     Q_DISABLE_COPY(WlanSnifferListItem)
       
    66     
       
    67 private slots:
       
    68 
       
    69 private: // data
       
    70 
       
    71     // Friend classes
       
    72 };
       
    73 
       
    74 #endif // WLANSNIFFERLISTITEM_H