wlanutilities/wlanentryplugin/inc/cpwlanentryplugin.h
changeset 19 10810c91db26
child 25 001d4d78e350
equal deleted inserted replaced
3:ff3b37722600 19:10810c91db26
       
     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  *   
       
    16  */
       
    17  
       
    18 #ifndef	CPWLANENTRYPLUGIN_H
       
    19 #define	CPWLANENTRYPLUGIN_H
       
    20 
       
    21 
       
    22 // System includes
       
    23 
       
    24 #include <QObject>
       
    25 #include <cppluginplatinterface.h>
       
    26 
       
    27 // User includes
       
    28 
       
    29 // Forward declarations
       
    30 
       
    31 class QTranslator;
       
    32 
       
    33 // External data types
       
    34 
       
    35 // Constants
       
    36 
       
    37 // Class declaration
       
    38 
       
    39 class CpWlanEntryPlugin : public QObject, public CpPluginPlatInterface
       
    40 {
       
    41     Q_OBJECT
       
    42     Q_INTERFACES(CpPluginPlatInterface)
       
    43     
       
    44 public:
       
    45 
       
    46     // Data types
       
    47 
       
    48     CpWlanEntryPlugin();
       
    49     
       
    50     virtual ~CpWlanEntryPlugin();
       
    51     
       
    52     virtual CpSettingFormItemData *createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    53 
       
    54 signals:
       
    55 
       
    56 public slots:
       
    57 
       
    58 protected:
       
    59 
       
    60 protected slots:
       
    61 
       
    62 private:
       
    63 
       
    64     Q_DISABLE_COPY(CpWlanEntryPlugin)
       
    65 
       
    66 private slots:
       
    67 
       
    68 private: // data
       
    69 
       
    70     bool mWlanSupported;            // WLAN dynamic ON/OFF configuration
       
    71     QTranslator *mTranslator;       // Translator for text ID's used in this plugin
       
    72 
       
    73     // Friend classes
       
    74 
       
    75 };
       
    76 
       
    77 #endif	// CPWLANENTRYPLUGIN_H